/* Components CSS */

/* ============================================================
   GLOBAL SECTION BACKGROUNDS
   ============================================================ */
.section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 37, 64, 0.92) 0%,
        rgba(10, 37, 64, 0.80) 50%,
        rgba(10, 37, 64, 0.45) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.section--surface .section-bg-overlay {
    background: linear-gradient(
        105deg,
        rgba(242, 245, 249, 0.96) 0%,
        rgba(242, 245, 249, 0.90) 50%,
        rgba(242, 245, 249, 0.60) 100%
    );
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--color-accent);
    color: var(--color-accent-fg);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}
/* Outline button on dark backgrounds */
.hero .btn-outline,
.section--dark .btn-outline,
.urgency-section .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.35);
}
.hero .btn-outline:hover,
.section--dark .btn-outline:hover,
.urgency-section .btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1ebe59;
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   NAVBAR — PILL/CAPSULE STYLE (Figma node 2062-3345)
   Floating pill centered at top: border-radius 9990px
   Container: 1167×56px, padding 16px 32px, gap 182px
   ============================================================ */

/* Outer wrapper: full-width transparent header area */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px var(--container-pad);
    transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 10px var(--container-pad); }

/* Pill/capsule nav container */
.nav-pill-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;

    background: rgba(10, 37, 64, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    padding: 6px 16px 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}
.site-header.scrolled .nav-pill {
    background: rgba(10, 37, 64, 0.98);
    box-shadow: 0 8px 32px rgba(10,37,64,0.30);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo img { height: 48px; width: auto; }

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    white-space: nowrap;
}
.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.3px;
}

/* Primary nav — centered pill links */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.primary-nav a,
.primary-nav li a {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(248, 250, 247, 0.7);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    line-height: 1;
}
.primary-nav a:not(.dropdown-item):hover,
.primary-nav li a:not(.dropdown-item):hover {
    color: #FFFFFF;
    background: #29d168;
}

/* Active state */
.primary-nav a.active,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
    background: #29d168;
    color: #FFFFFF !important;
    font-weight: 600;
}

/* CTA nav button — pill with icon prefix (Figma style) */
.nav-cta { flex-shrink: 0; }

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border-radius: 9999px;
    background: var(--color-accent);
    color: var(--color-accent-fg);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn-nav-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Icon circle inside CTA button (Figma: circular play button) */
.btn-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent-fg);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hamburger for mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-header);
    padding: 88px 24px 32px;
    overflow-y: auto;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 8px;
}
.mobile-menu a:hover { color: var(--color-accent); border-bottom-color: rgba(201,168,76,0.2); }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 900;
    transition: all 0.3s;
    animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* Hero padding compensates for floating header */
.hero {
    padding-top: calc(80px + clamp(20px, 3vw, 40px));
}

/* Responsive */
@media (max-width: 1200px) {
    .primary-nav a, .primary-nav li a { font-size: 18px; padding: 7px 10px; }
}
@media (max-width: 960px) {
    .primary-nav { display: none; }
    .btn-nav-cta { display: none; }
    .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
    .site-header { padding: 12px 16px; }
    .nav-pill { padding: 8px 12px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: var(--color-bg-dark, #0A2540);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: calc(72px + clamp(20px,3vw,40px));
    padding-bottom: clamp(64px,8vw,100px);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex; align-items: center;
}
.hero::before {
    content:'';
    position: absolute;
    top: -200px; right: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Full-section background image overlay */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 37, 64, 0.90) 0%,
        rgba(10, 37, 64, 0.75) 50%,
        rgba(10, 37, 64, 0.45) 100%
    );
    pointer-events: none;
    z-index: 0;
}
/* When has background image, suppress the radial glow pseudo */
.hero.has-bg-image::before { display: none; }

/* Hero is always dark — all text must be light regardless of global vars */
.hero h1, .hero h2, .hero h3 { color: #FFFFFF; }
.hero p { color: rgba(255,255,255,0.80); }
.hero strong { color: #FFFFFF; }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-inner--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.hero-inner--center .hero-actions { justify-content: center; }
.hero-inner--center .hero-badges  { align-items: center; }
.hero-inner--center .hero-sub     { max-width: 680px; text-align: center; margin-left: auto; margin-right: auto; }
.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 9999px;
    font-size: 17px;
    color: var(--color-accent);
    background: rgba(201,168,76,0.06);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.hero-headline {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2.49px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 680px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-microcopy { font-size: 13px; color: rgba(255,255,255,0.52); margin-bottom: 36px; }
.hero-badges { display: flex; flex-direction: column; gap: 10px; }
.hero-badge {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.80);
}
.hero-badge::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-accent);
    font-size: 12px;
    flex-shrink: 0;
    line-height: 22px;
    text-align: center;
}
.hero-image-wrap {
    position: relative;
    display: flex; align-items: flex-end; justify-content: center;
}
.hero-image-wrap img {
    width: 100%; max-width: 540px;
    border-radius: 24px;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%; aspect-ratio: 4/5;
    max-width: 500px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0d2d4a, #0a2540);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}

/* ============================================================
   SERVICE CARDS (Grid Horizontal Style)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card-horizontal {
    display: flex;
    align-items: center;
    background: var(--color-card-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    gap: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
}
.service-card-horizontal:hover {
    border-color: rgba(201, 168, 76, 0.40);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.25);
    background: rgba(255,255,255,0.10);
}
.service-card-image {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    justify-content: center;
    padding-top: 0;
}
.service-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}
.service-card-horizontal:hover .service-card-image img {
    transform: scale(1.1) rotate(-3deg);
}
.service-card-content {
    flex: 1;
}
.service-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.service-card-content p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--color-muted);
    margin: 0;
    opacity: 0.8;
}
.service-image-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card-horizontal {
        padding: 20px;
    }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.hiw-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
}
.hiw-step:last-child { padding-bottom: 0; }
.hiw-step-num-wrap {
    display: flex; flex-direction: column; align-items: center;
}
.hiw-step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1.5px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
}
.hiw-step-line {
    width: 1.5px; flex: 1;
    background: var(--color-border);
    margin-top: 8px;
}
.hiw-step:last-child .hiw-step-line { display: none; }
.hiw-step-body { padding-top: 10px; }
.hiw-step-body h3 { font-size: 20px; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.hiw-step-body p { font-size: 15px; color: var(--color-muted); margin: 0; }

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.diff-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.diff-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.5);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.diff-item:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.6);
}
.diff-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(41, 209, 104, 0.20);
    color: var(--color-accent);
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.diff-item span { font-size: 15px; color: #FFFFFF; font-weight: 500; line-height: 1.4; }

.diff-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 60px;
    color: #FFFFFF;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
    animation: diff-bounce 1.8s ease-in-out infinite;
}
.diff-scroll-hint svg {
    width: 56px;
    height: 56px;
    stroke-width: 2.5;
}
.diff-scroll-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}
@keyframes diff-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50%       { transform: translateY(10px); opacity: 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(10,37,64,0.06);
}
.testimonial-quote { font-size: 15px; line-height: 1.65; color: var(--color-muted); margin-bottom: 20px; font-style: italic; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--color-accent);
    flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--color-text); }
.testimonial-info { font-size: 13px; color: var(--color-muted); }
.testimonial-situation {
    display: inline-block; margin-bottom: 14px;
    padding: 4px 10px; border-radius: 9999px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    font-size: 12px; font-weight: 600; color: var(--color-accent);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(10,37,64,0.05);
}
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; gap: 16px;
    background: transparent; border: none; cursor: pointer;
    text-align: left; color: var(--color-text);
    font-size: 16px; font-weight: 500; font-family: var(--font-base);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px; font-weight: 300;
    color: var(--color-muted); transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--color-accent); color: #0A2540; border-color: var(--color-accent); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--color-muted); line-height: 1.7; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--color-surface); }
.contact-section h2, .contact-section h3 { color: var(--color-text); }
.contact-section p { color: var(--color-muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--color-muted); }
.form-group input,
.form-group textarea,
.form-group select {
    background: #FFFFFF;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--color-text);
    font-size: 14px;
    font-family: var(--font-base);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    background: #FFFFFF;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--color-surface); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-title { font-size: 22px; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 4px rgba(10,37,64,0.06);
}
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-value { font-size: 15px; color: var(--color-text); font-weight: 500; margin-top: 2px; }

/* ============================================================
   PAIN / URGENCY / AUTHORITY SECTIONS
   ============================================================ */
.pain-section {
    background: var(--color-surface);
    text-align: center;
}
.pain-section h2 { color: var(--color-text); }
.pain-section p  { color: var(--color-muted); }
.pain-text { max-width: 700px; margin: 0 auto 32px; font-size: 17px; line-height: 1.7; }
.urgency-section {
    background: linear-gradient(135deg, #0A2540 0%, #0d3260 100%);
    border-top: 1px solid rgba(201,168,76,0.18);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    text-align: center;
}
.urgency-section h2, .urgency-section h3 { color: #FFFFFF; }
.urgency-section p { color: rgba(255,255,255,0.78); }
.authority-section { background: var(--color-bg); }
.authority-section h2, .authority-section h3, .authority-section h4 { color: var(--color-text); }
.authority-section p { color: var(--color-muted); }
.authority-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.authority-quote {
    font-size: 22px; font-weight: 500; color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
    padding-left: 20px; margin: 28px 0;
    font-style: italic; line-height: 1.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #0d2d4a, #0a2540);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.about-highlight {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: #FFFFFF;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
}
.about-highlight::before { content:'✓'; color: var(--color-accent); font-weight: 700; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
    background: var(--color-card-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--color-surface); }
.blog-thumb--placeholder {
    background: linear-gradient(135deg, #0d2d4a 0%, #0a2540 60%, #0d3260 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-cat {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--color-accent); margin-bottom: 8px;
}
.blog-body h3 { font-size: 17px; font-weight: 600; color: var(--color-text); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--color-muted); }
.blog-date { font-size: 12px; color: rgba(232,237,228,0.4); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-footer);
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; }
.footer-logo-img { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); } /* Force white logo in footer if needed, or just let it be */
.footer-logo span { color: var(--color-accent); }
.footer-desc { font-size: 14px; color: var(--color-muted); line-height: 1.65; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--color-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--color-border); }
.footer-copy { font-size: 13px; color: rgba(232,237,228,0.4); }
.footer-oab { font-size: 12px; color: rgba(232,237,228,0.3); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-muted); transition: all 0.2s;
    font-size: 14px;
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
    background: var(--color-surface);
    padding: calc(72px + 60px) 0 60px;
    border-bottom: 1px solid var(--color-border);
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(28px,4vw,48px); }
.page-hero p { font-size: 17px; margin-top: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   BLOG - SINGLE & ARCHIVE (Figma Ref 2011:3151)
   ============================================================ */
.blog-hero {
    background: #0A2540;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Background pattern placeholder or gradient */
.blog-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 334px;
    background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(10,37,64,0) 100%);
    pointer-events: none;
}
.blog-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    color: #e9e9e9;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.blog-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #e9e9e9;
    font-size: 18px;
    position: relative;
    z-index: 2;
}
.blog-breadcrumbs a { color: inherit; text-decoration: none; opacity: 0.8; }
.blog-breadcrumbs span.sep { 
    display: block; width: 24px; height: 16px; 
    background: url("data:image/svg+xml,%3Csvg width='25' height='18' viewBox='0 0 25 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 9H23.5M23.5 9L15.5 1M23.5 9L15.5 17' stroke='%23E9E9E9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.blog-layout {
    background: #F8FAF7;
    padding: 100px 0;
}
.blog-layout .container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.blog-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(16,24,40,0.06);
    position: sticky;
    top: 100px;
}
.sidebar-title {
    font-size: 24px;
    font-weight: 500;
    color: #030403;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.sidebar-title-line {
    width: 75px;
    height: 2px;
    background: #0A2540;
    margin-bottom: 32px;
    border-radius: 4px;
}
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.recent-post-item {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}
.recent-post-item:hover { transform: translateX(4px); }
.recent-post-thumb {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-info { flex: 1; }
.recent-post-meta {
    font-size: 11px;
    color: #777;
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.recent-post-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: #0A2540;
    line-height: 1.35;
    margin: 0;
}

/* Main Content */
.blog-main {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(16,24,40,0.06);
}
.blog-featured-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}
.blog-featured-image img { width: 100%; height: auto; display: block; }
.blog-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #000;
    margin-bottom: 16px;
    font-weight: 400;
}
.blog-single-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #0A2540;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    line-height: 1.2;
}
.blog-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.blog-content h2, .blog-content h3 {
    color: #0A2540;
    margin: 40px 0 20px;
    font-weight: 500;
    letter-spacing: -0.8px;
}
.blog-content h2 { font-size: 24px; }
.blog-content h3 { font-size: 20px; }
.blog-content p { margin-bottom: 24px; }

@media (max-width: 1024px) {
    .blog-layout .container {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        order: 2;
    }
}
@media (max-width: 768px) {
    .blog-hero { padding: 120px 0 80px; }
    .blog-hero h1 { font-size: 40px; }
    .blog-main { padding: 24px; }
    .blog-single-title { font-size: 28px; }
}
