/* ============================================
   BROKADE — STYLES
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #fff;
}

.page-wrapper {
    position: relative;
    padding: 0 10px 6px 10px;
    min-height: 100vh;
}

.frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 10px 40px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    display: flex;
    align-items: center;
    color: #111;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.6px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
    align-self: flex-start;
    margin-top: 4px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: #000; }

.nav-cta {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-cta:hover { background: #333; }

/* ===== HERO ===== */
.hero {
    position: relative;
    margin-top: 55px;
    height: calc(100vh - 6px - 55px);
    min-height: 560px;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,30,50,0.55) 0%, rgba(15,25,40,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 28px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    color: #fff;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #111;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

.cta-icon {
    width: 26px;
    height: 26px;
    background: #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ===== LOGOS BAR ===== */
.logos-bar {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.client-logo {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.client-logo.italic { font-style: italic; font-weight: 600; letter-spacing: 0; }
.client-logo.serif { font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: 2px; }

/* ===== SECTION: SOLUTIONS ===== */
.solutions {
    background: #fafaf7;
    color: #111;
    padding: 100px 60px 120px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.solutions-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: start;
}

.solutions-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 28px;
    color: #111;
}

.solutions-headline .accent { color: #b8b3a8; display: block; }

.solutions-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 480px;
    margin-bottom: 36px;
}

.solutions-cta {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.features-list { list-style: none; }
.features-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 22px 0;
    border-top: 1px solid #d8d4c8;
    font-size: 15px;
    color: #1a1a1a;
}
.features-list li:last-child { border-bottom: 1px solid #d8d4c8; }

.feature-num {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.use-cases-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.use-case {
    background: #ede8db;
    border-radius: 6px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.use-case-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #111;
}

.use-case-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
}

.use-case-stats {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 24px;
}

/* ===== SECTION: GOVERNANCE ===== */
.governance {
    background: #fafaf7;
    color: #111;
    padding: 100px 60px 0;
}

.governance-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.governance-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #111;
}

.governance-headline .accent { color: #b8b3a8; display: block; }

.governance-description {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 480px;
}

.governance-cta {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-container {
    position: relative;
    margin: 0 -60px;
    padding: 80px 60px 0;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7a 50%, #4a7a8c 100%);
    overflow: hidden;
    min-height: 720px;
}

.dashboard-mockup {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    overflow: hidden;
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid #f0efe9;
    font-size: 14px;
    color: #4a4a4a;
    background: #faf9f4;
}

.dashboard-topbar-icon {
    width: 24px;
    height: 24px;
    background: #ede8db;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b6b;
}

.dashboard-topbar-sep { color: #c8c5b9; font-size: 12px; }
.dashboard-topbar-current { color: #1a1a1a; font-weight: 500; }

.dashboard-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e3da;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: #9a9a9a;
    min-width: 180px;
}

.dashboard-body { padding: 28px 32px 36px; }

.dashboard-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-title { font-size: 20px; font-weight: 600; color: #111; }
.dashboard-subtitle { font-size: 13px; color: #6b6b6b; margin-top: 2px; }

.dashboard-stats { display: flex; gap: 28px; }

.stat-block { text-align: right; }
.stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #111;
    line-height: 1;
}
.stat-up {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-left: 4px;
}
.stat-label {
    font-size: 11px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.policies-table { border-top: 1px solid #f0efe9; }

.policy-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.6fr;
    gap: 16px;
    padding: 14px 4px;
    align-items: center;
    border-bottom: 1px solid #f5f3ec;
    font-size: 13.5px;
}

.policy-row.header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9a9a9a;
    font-weight: 500;
}

.policy-client {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-weight: 500;
}

.client-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.client-avatar.c1 { background: #d4c8a8; color: #6b5a2e; }
.client-avatar.c2 { background: #b8d4c8; color: #2e6b5a; }
.client-avatar.c3 { background: #d4b8c8; color: #6b2e5a; }
.client-avatar.c4 { background: #c8c8d4; color: #2e2e6b; }

.policy-type { color: #4a4a4a; }
.policy-amount { color: #111; font-weight: 500; }

.policy-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    background: #ecfdf5;
    color: #15803d;
    font-weight: 500;
    width: fit-content;
}
.policy-status.pending { background: #fef3c7; color: #b45309; }
.policy-status.review { background: #dbeafe; color: #1d4ed8; }

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.policy-savings {
    color: #16a34a;
    font-weight: 600;
    font-size: 13px;
}

/* ===== SECTION: CASES ===== */
.cases {
    background: #fafaf7;
    color: #111;
    padding: 120px 60px 100px;
}

.cases-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: start;
}

.cases-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #111;
}

.cases-description {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 460px;
    padding-top: 14px;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.case-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.case-card > * { position: relative; z-index: 2; }

.case-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.3px;
    color: #fff;
}
.case-brand.serif { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 28px; letter-spacing: 1px; }
.case-brand.italic { font-style: italic; font-weight: 600; }

.case-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: #fff;
}

.case-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    width: fit-content;
}
.case-cta svg { width: 12px; height: 12px; }

.case-1 { background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80'); }
.case-2 { background-image: url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?auto=format&fit=crop&w=1400&q=80'); }
.case-3 { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80'); }
.case-4 { background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=1400&q=80'); }

/* ===== SECTION: BLOG ===== */
.blog {
    background: #fafaf7;
    color: #111;
    padding: 120px 60px 100px;
}
.blog-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: start;
}
.blog-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #111;
}
.blog-headline .accent { color: #b8b3a8; display: block; }
.blog-description {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 460px;
    padding-top: 14px;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.blog-card {
    background: #fff;
    border: 1px solid #e8e6df;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    border-color: #d8d4c8;
}
.blog-card--featured {
    grid-row: span 2;
    grid-column: 1 / 2;
}
.blog-card-link {
    display: flex; flex-direction: column;
    height: 100%; text-decoration: none; color: inherit;
}
.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}
.blog-card--featured .blog-card-img { aspect-ratio: 4 / 3.4; }
.blog-card-body {
    padding: 24px 26px 26px;
    display: flex; flex-direction: column;
    flex: 1;
}
.blog-card--featured .blog-card-body { padding: 30px 32px 32px; }
.blog-meta {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
}
.blog-tag {
    background: #111;
    color: #fff;
    padding: 3px 11px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.blog-meta-sep { color: #cfcdc6; }
.blog-time { color: #6b6b6b; }
.blog-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.3px;
    color: #111;
    margin: 0 0 12px;
}
.blog-card--featured .blog-card-title { font-size: 34px; line-height: 1.1; margin-bottom: 18px; }
.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 20px;
    flex: 1;
}
.blog-card--featured .blog-card-excerpt { font-size: 15px; }
.blog-card-cta {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: gap .2s ease;
}
.blog-card-cta svg { width: 12px; height: 12px; }
.blog-card:hover .blog-card-cta { gap: 11px; }

.blog-img-1 { background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1400&q=80'); }
.blog-img-2 { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=80'); }
.blog-img-3 { background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1400&q=80'); }
.blog-img-4 { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1400&q=80'); }
.blog-img-5 { background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1400&q=80'); }

/* ===== SECTION: FOCUS ===== */
.focus {
    background: #ede8db;
    color: #111;
    padding: 120px 60px 110px;
}
.focus-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.focus-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #111;
    max-width: 560px;
}
.focus-headline .accent { color: #9a8e6e; display: block; }
.focus-description {
    font-size: 15.5px;
    line-height: 1.75;
    color: #4a4a4a;
    max-width: 480px;
    padding-top: 14px;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    border-top: 1px solid #c9c2a8;
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 36px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}
.focus-list li {
    padding: 4px 0;
    letter-spacing: 0.01em;
}
.focus-list li:not(:last-child)::after {
    content: '·';
    margin-left: 36px;
    color: #9a8e6e;
}

@media (max-width: 900px) {
    .focus { padding: 70px 24px; }
    .focus-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
    .focus-list { gap: 0 20px; }
    .focus-list li:not(:last-child)::after { margin-left: 20px; }
}

@media (max-width: 980px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card--featured { grid-row: auto; grid-column: span 2; }
    .blog-card--featured .blog-card-title { font-size: 28px; }
}
@media (max-width: 640px) {
    .blog { padding: 70px 24px; }
    .blog-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card--featured { grid-column: auto; }
}

/* ===== SECTION: INTELLIGENCE ===== */
.intelligence {
    background: #fafaf7;
    color: #111;
    padding: 100px 60px 0;
}

.intelligence-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: start;
}

.intelligence-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #111;
}
.intelligence-headline .accent { color: #b8b3a8; display: block; }

.intelligence-right { padding-top: 14px; }

.intelligence-description {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 28px;
    max-width: 460px;
}

.intelligence-cta {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.intel-visual {
    position: relative;
    margin: 0 -60px;
    padding: 80px 60px;
    background: linear-gradient(110deg, #1a4a6b 0%, #2d6b8a 35%, #4a6b73 60%, #c8956b 100%);
    overflow: hidden;
    min-height: 540px;
}

.intel-cards {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.intel-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    padding: 28px 30px;
}

.intel-card-left { min-height: 320px; }

.profile-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8956b 0%, #6b5a2e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.profile-name { font-size: 19px; font-weight: 600; color: #111; }
.profile-role { font-size: 13px; color: #6b6b6b; margin-top: 2px; }

.profile-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.profile-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.profile-field { display: flex; align-items: flex-start; gap: 8px; }
.profile-field-icon { width: 16px; height: 16px; color: #9a9a9a; flex-shrink: 0; margin-top: 2px; }
.profile-field-label { color: #6b6b6b; margin-bottom: 2px; font-size: 11px; }
.profile-field-value { color: #111; font-weight: 500; font-size: 13px; line-height: 1.3; }

.intel-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.connector-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    position: relative;
}

.connector-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b6b;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.intel-card-right { min-height: 200px; }

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0efe9;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.chat-agent-icon {
    width: 28px;
    height: 28px;
    background: #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.chat-tag { font-size: 12px; color: #6b6b6b; font-weight: 500; }

.chat-message {
    background: #faf9f4;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #1a1a1a;
}

/* ===== SECTION: MODEL ===== */
.model {
    background: #ede8db;
    color: #111;
    padding: 100px 0;
    margin-top: 160px;
}

.model-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    padding: 0 60px;
    align-items: start;
}

.model-left { max-width: 500px; }

.model-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 4.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #111;
}
.model-headline .accent { color: #9a8e6e; display: block; }

.model-description {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 420px;
}

.model-cta {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 60px;
}

.model-features { list-style: none; }
.model-features li {
    padding: 24px 0;
    border-top: 1px solid #d8d2c0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}
.model-features li:last-child { border-bottom: 1px solid #d8d2c0; }

.model-feature-title { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 6px; }
.model-feature-text { font-size: 14px; line-height: 1.55; color: #5a5a5a; }
.model-feature-num { color: #9a8e6e; font-size: 13px; font-weight: 500; }

.model-diagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.followup-card {
    background: #fff;
    border: 1px solid #d8d2c0;
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #111;
}
.followup-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 26px 18px;
    border-bottom: 1px solid #ececec;
    gap: 16px;
}
.followup-eyebrow {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: #9a8e6e; font-weight: 600;
}
.followup-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500; font-size: 24px;
    color: #111; margin-top: 4px;
    letter-spacing: -0.3px;
}
.followup-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f0f6f1;
    color: #2d6a4f;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px; font-weight: 500;
    flex-shrink: 0;
}
.followup-tag-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2d6a4f;
}
.followup-list {
    list-style: none; margin: 0; padding: 0;
}
.followup-item {
    display: flex; align-items: flex-start;
    padding: 18px 26px;
    border-bottom: 1px solid #f3f1ea;
    gap: 18px;
}
.followup-item:last-child { border-bottom: 0; }
.followup-date {
    display: flex; flex-direction: column; align-items: center;
    background: #faf8f1;
    border-radius: 8px;
    padding: 8px 0;
    width: 50px; flex-shrink: 0;
}
.followup-month {
    font-size: 10px; letter-spacing: 0.1em; font-weight: 600;
    color: #9a8e6e; text-transform: uppercase;
}
.followup-day {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500; font-size: 22px;
    color: #111; line-height: 1;
}
.followup-body { flex: 1; min-width: 0; }
.followup-row-title {
    font-size: 14px; font-weight: 600; color: #111;
    margin-bottom: 4px;
}
.followup-row-sub {
    font-size: 12.5px; color: #6b6b6b; line-height: 1.5;
}
.followup-status {
    font-size: 11px;
    color: #6b6b6b;
    background: #f5f3ed;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
    flex-shrink: 0;
    align-self: center;
}
.followup-foot {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 26px;
    background: #faf8f1;
    border-top: 1px solid #ececec;
}
.followup-foot-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #6b5a3e; color: #fff;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    flex-shrink: 0;
}
.followup-foot-name { font-size: 13.5px; font-weight: 600; color: #111; }
.followup-foot-role { font-size: 11.5px; color: #6b6b6b; }

@media (max-width: 720px) {
    .followup-head { padding: 18px 18px 14px; }
    .followup-item { padding: 14px 18px; gap: 12px; }
    .followup-status { display: none; }
    .followup-foot { padding: 14px 18px; }
}

/* ===== SECTION: INFRA ===== */
.infra {
    background: #fafaf7;
    color: #111;
    padding: 100px 60px;
}

.infra-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.infra-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111;
}

.infra-description {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    padding-top: 22px;
    max-width: 460px;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

.infra-card { border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }

.infra-card-visual {
    position: relative;
    min-height: 360px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infra-card-1 .infra-card-visual { background: linear-gradient(135deg, #2d5a7a 0%, #4a7a8c 60%, #c8956b 100%); }
.infra-card-2 .infra-card-visual { background: linear-gradient(160deg, #1a3a52 0%, #2d6b8a 50%, #5a8a9c 100%); }
.infra-card-3 .infra-card-visual { background: #ede8db; }

.infra-card-text { padding: 28px 4px 0; }

.infra-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
    color: #111;
}

.infra-card-desc { font-size: 14.5px; line-height: 1.55; color: #5a5a5a; }

.mini-dashboard {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.mini-dash-breadcrumb {
    font-size: 11px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.mini-dash-icon { width: 16px; height: 16px; background: #ede8db; border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #6b6b6b; }

.mini-dash-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.mini-dash-tab { font-size: 10.5px; padding: 4px 10px; border-radius: 4px; background: #f5f3ec; color: #6b6b6b; }
.mini-dash-tab.active { background: #111; color: #fff; }

.mini-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0efe9;
    margin-bottom: 14px;
}

.mini-stat-value { font-size: 16px; font-weight: 600; color: #111; line-height: 1; }
.mini-stat-up { font-size: 9px; color: #16a34a; font-weight: 500; margin-left: 3px; }
.mini-stat-label { font-size: 9.5px; color: #9a9a9a; margin-top: 4px; line-height: 1.2; }

.mini-chart-title { font-size: 11px; font-weight: 600; color: #111; margin-bottom: 4px; }
.mini-chart-legend { display: flex; gap: 12px; justify-content: flex-end; font-size: 9px; color: #6b6b6b; margin-bottom: 8px; }
.mini-legend-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }

.workflow-blocks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.workflow-block {
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    font-size: 11.5px;
    color: #1a1a1a;
}

.workflow-block-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #111;
}

.workflow-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
}

.workflow-block-content {
    margin-top: 6px;
    color: #5a5a5a;
    font-size: 10.5px;
    line-height: 1.5;
}
.json-key { color: #b45309; }
.json-value { color: #16a34a; }

.notif-stack { position: relative; width: 100%; max-width: 280px; }

.notif {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-text { font-size: 12px; font-weight: 500; color: #111; }
.notif-meta { font-size: 10.5px; color: #6b6b6b; margin-top: 2px; }

.notif-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
}

/* ===== SECTION: QUOTE / CALL ===== */
.quote {
    background: #fafaf7;
    color: #111;
    padding: 100px 60px;
}

.quote-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: start;
}

.quote-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111;
}
.quote-headline .accent { color: #b8b3a8; display: block; }

.quote-description {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    padding-top: 22px;
    max-width: 460px;
}

.quote-flow {
    position: relative;
    background: linear-gradient(135deg, #1a3a52 0%, #2d6b8a 50%, #4a7a8c 100%);
    border-radius: 14px;
    padding: 70px 50px;
    overflow: hidden;
    margin-bottom: 50px;
}

.quote-flow-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1.3fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.caller-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.caller-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0efe9;
}

.caller-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.caller-phone-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    border: 2px solid #16a34a;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.caller-phone-info { flex: 1; }
.caller-phone-label { font-size: 11px; color: #6b6b6b; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.caller-phone-number { font-size: 19px; font-weight: 600; color: #111; letter-spacing: -0.3px; }

.caller-status {
    font-size: 12px;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.caller-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.caller-transcript {
    background: #faf9f4;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #1a1a1a;
}

.caller-transcript-label {
    font-size: 10.5px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 500;
}

.router-node { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.router-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}

.router-label {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.router-sublabel {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-align: center;
    max-width: 140px;
    line-height: 1.4;
}

.specialists { display: flex; flex-direction: column; gap: 12px; }

.specialist {
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    position: relative;
}

.specialist.active {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.specialist.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #c8956b;
    pointer-events: none;
}

.specialist-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}
.specialist-avatar.s1 { background: linear-gradient(135deg, #c8956b 0%, #6b5a2e 100%); }
.specialist-avatar.s2 { background: linear-gradient(135deg, #2d6b8a 0%, #1a3a52 100%); }
.specialist-avatar.s3 { background: linear-gradient(135deg, #6b8a5a 0%, #3a5a2e 100%); }
.specialist-avatar.s4 { background: linear-gradient(135deg, #8a5a8a 0%, #5a2e5a 100%); }

.specialist-info { flex: 1; min-width: 0; }
.specialist-name { font-size: 14px; font-weight: 600; color: #111; }
.specialist-role { font-size: 11.5px; color: #6b6b6b; margin-top: 2px; }

.specialist-tag {
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    background: #faf2e8;
    color: #b45309;
    white-space: nowrap;
}
.specialist.active .specialist-tag { background: #16a34a; color: #fff; }

.quote-strip {
    background: #111;
    border-radius: 14px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 30px;
}

.quote-strip-left { display: flex; align-items: center; gap: 22px; }

.quote-strip-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.quote-strip-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.quote-strip-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.quote-strip-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #111;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* ===== SECTION: PILLARS ===== */
.pillars {
    background: #fafaf7;
    color: #111;
    padding: 80px 60px 100px;
}

.pillars-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

.pillars-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111;
}

.pillars-description {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    padding-top: 22px;
    max-width: 460px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.pillar-icon {
    width: 38px;
    height: 38px;
    background: #f5f3ec;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.pillar-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 14px;
    color: #111;
}

.pillar-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 360px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: #d8e0d4;
    color: #111;
    padding: 140px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
}

.final-cta-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111;
    margin-bottom: 50px;
    max-width: 1100px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #fafaf7;
    color: #4a4a4a;
    padding: 60px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    font-weight: 500;
    font-size: 24px;
    color: #111;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.55;
    color: #6b6b6b;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 14px;
}
.footer-col a:hover { color: #111; }

.footer-bottom {
    border-top: 1px solid #e5e3da;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #9a9a9a;
}

/* ===== FLOATING TALK BUTTON ===== */
.floating-talk {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #111;
    padding: 14px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.floating-talk.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-talk:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

/* Estado en llamada activa */
.floating-talk.on-call {
    background: #dc2626;
    color: #fff;
}

.floating-talk.on-call .floating-talk-icon {
    background: #fff;
    color: #dc2626;
    animation: pulse-call 1.5s infinite;
}

/* Estado conectando */
.floating-talk.connecting,
.hero-cta.connecting,
.final-cta-button.connecting,
.quote-strip-phone.connecting {
    background: #f5f3ec;
    color: #6b6b6b;
    pointer-events: none;
}

.floating-talk.connecting .floating-talk-icon,
.hero-cta.connecting .cta-icon,
.final-cta-button.connecting .cta-icon {
    background: #6b6b6b;
    color: #fff;
    animation: spin-connecting 1s linear infinite;
}

@keyframes spin-connecting {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-call {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-cta.on-call,
.final-cta-button.on-call,
.quote-strip-phone.on-call {
    background: #dc2626;
    color: #fff;
}

.hero-cta.on-call .cta-icon,
.final-cta-button.on-call .cta-icon {
    background: #fff;
    color: #dc2626;
}

.floating-talk-icon {
    width: 26px;
    height: 26px;
    background: #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@media (max-width: 768px) {
    .floating-talk {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .solutions-hero,
    .governance-header,
    .cases-header,
    .intelligence-header,
    .infra-header,
    .quote-header,
    .pillars-header { grid-template-columns: 1fr; gap: 30px; }

    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .intel-cards { grid-template-columns: 1fr; gap: 24px; }
    .intel-connector { transform: rotate(90deg); padding: 0; }
    .model-inner { grid-template-columns: 1fr; gap: 40px; }
    .infra-grid { grid-template-columns: 1fr; }
    .quote-flow-inner { grid-template-columns: 1fr; gap: 30px; }
    .pillars-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 20px; }
    .nav-links { display: none; }
    .hero { min-height: 500px; }
    .logos-bar { gap: 40px; bottom: 25px; }
    .solutions, .cases, .infra, .quote, .pillars { padding: 70px 24px; }
    .governance, .intelligence { padding: 60px 24px 0; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .use-case { min-height: auto; }
    .dashboard-container { margin: 0 -24px; padding: 50px 20px 0; min-height: auto; }
    .dashboard-body { padding: 20px; }
    .case-card { min-height: 360px; padding: 28px; }
    .case-content h3 { font-size: 28px; }
    .intel-visual { margin: 0 -24px; padding: 50px 20px; min-height: auto; }
    .intel-card { padding: 22px; }
    .profile-fields { grid-template-columns: 1fr; }
    .model { padding: 70px 0; }
    .model-inner { padding: 0 24px; }
    .model-diagram { min-height: 400px; }
    .quote-flow { padding: 40px 24px; }
    .quote-strip { flex-direction: column; text-align: center; padding: 28px; }
    .quote-strip-left { flex-direction: column; text-align: center; }
    .final-cta { padding: 90px 24px; }
    .footer { padding: 50px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Acciones del navbar: Iniciar sesión + Contacto, agrupados a la derecha */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-login {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
    transition: color 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.nav-login:hover { color: #111; }
