/* ============================================
   ENTERPRISE CSS — Mahipal Katha Financial Advisory
   Colour palette: Deep Navy (trust) + Gold (premium)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand colours */
    --navy-900:  #0a1628;
    --navy-800:  #0d1f3c;
    --navy-700:  #0f2654;
    --navy-600:  #1e3a8a;
    --navy-500:  #2563eb;
    --navy-400:  #3b82f6;

    --gold-600:  #92400e;
    --gold-500:  #b45309;
    --gold-400:  #d97706;
    --gold-300:  #f59e0b;
    --gold-200:  #fbbf24;
    --gold-100:  #fef3c7;

    --green-600: #059669;
    --green-500: #10b981;
    --green-100: #d1fae5;

    /* Neutrals */
    --gray-900:  #111827;
    --gray-800:  #1f2937;
    --gray-700:  #374151;
    --gray-600:  #4b5563;
    --gray-500:  #6b7280;
    --gray-400:  #9ca3af;
    --gray-300:  #d1d5db;
    --gray-200:  #e5e7eb;
    --gray-100:  #f3f4f6;
    --gray-50:   #f9fafb;
    --white:     #ffffff;

    /* Semantic aliases */
    --primary:        var(--navy-600);
    --primary-dark:   var(--navy-800);
    --primary-light:  var(--navy-500);
    --accent:         var(--gold-400);
    --accent-dark:    var(--gold-500);
    --accent-light:   var(--gold-200);
    --success:        var(--green-500);
    --text-primary:   var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted:     var(--gray-400);
    --bg-body:        var(--white);
    --bg-light:       var(--gray-50);
    --bg-muted:       var(--gray-100);
    --border:         var(--gray-200);

    /* Spacing */
    --section-pad: 5rem;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
    --shadow-xl:  0 20px 50px rgba(0,0,0,.15);
    --shadow-gold: 0 4px 20px rgba(217,119,6,.25);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Utility */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-pad { padding: var(--section-pad) 0; }
.bg-light { background-color: var(--bg-light); }
.text-gold { color: var(--gold-400); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.section-label.light { color: var(--gold-200); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section-sub {
    font-size: 1.05rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217,119,6,.4);
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */

header { position: sticky; top: 0; z-index: 1000; }

.navbar {
    background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
    flex-shrink: 0;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.logo-name::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold-300);
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: super;
}
.logo-tagline {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-shrink: 1;
    min-width: 0;
}
.nav-links li a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.nav-links li a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}
.nav-links li a.nav-active {
    color: white;
    background: rgba(255,255,255,0.10);
    font-weight: 600;
}
.nav-cta {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500)) !important;
    color: var(--navy-900) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-gold);
    white-space: nowrap !important;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400)) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217,119,6,.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    background: var(--navy-900);
    border-top: 1px solid rgba(255,255,255,0.07);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 420px; }
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
}
.mobile-menu a {
    display: block;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    font-weight: 500;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); color: white; }
.mobile-cta {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500)) !important;
    color: var(--navy-900) !important;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    color: white;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(217,119,6,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37,99,235,.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217,119,6,.15);
    border: 1px solid rgba(217,119,6,.35);
    color: var(--gold-200);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}
.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-300);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.hero-highlight { color: var(--gold-300); }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.hero-trust span {
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Hero portrait */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
}
.hero-portrait-wrap {
    position: relative;
    width: 320px;
    height: 380px;
    margin: 0 auto;
}
.hero-portrait-ring {
    position: absolute;
    top: -6px; left: -6px; right: -6px;
    width: 332px; height: 332px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold-400) 0%, #8b5cf6 35%, #14b8a6 65%, var(--gold-400) 100%);
    animation: rotateSlow 8s linear infinite;
    z-index: 0;
}
.hero-portrait-img {
    position: relative;
    z-index: 1;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 5px solid var(--navy-900);
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
/* Floating chip cards */
.hero-chip {
    position: absolute;
    background: rgba(10, 22, 40, 0.85);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 40px;
    padding: 0.5rem 0.9rem 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.chip-logo {
    height: 28px;
    width: auto;
    max-width: 44px;
    object-fit: contain;
    border-radius: 5px;
    background: white;
    padding: 2px 4px;
    flex-shrink: 0;
}
.chip-text strong { display: block; color: #fff; font-size: 0.78rem; font-weight: 700; line-height: 1.3; font-family: 'Inter', sans-serif; }
.chip-text span   { display: block; color: rgba(255,255,255,.6); font-size: 0.68rem; line-height: 1.2; }
.hero-chip--1 { top: -18px; left: 50%; transform: translateX(-50%); }
.hero-chip--2 { bottom: 48px; right: -24px; }
.hero-chip--3 { bottom: 48px; left: -24px; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* Floating animation */
.floating { animation: floatUp 4s ease-in-out infinite; }
.delay-1 { animation-delay: 1.3s; }
.delay-2 { animation-delay: 2.6s; }

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 100%);
    padding: 2.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}
.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-900);
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(10,22,40,.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
    background: var(--gray-900);
    padding: 0.9rem 0;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: 0.03em;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.trust-logo {
    height: 20px;
    width: auto;
    max-width: 52px;
    object-fit: contain;
    border-radius: 3px;
    background: white;
    padding: 1px 3px;
    flex-shrink: 0;
    vertical-align: middle;
}
.trust-divider { color: rgba(255,255,255,.2); }

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 90px;
}

/* ---- Portrait photo ---- */
.about-portrait-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    line-height: 0;
}
.about-portrait {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
    border-radius: var(--radius-xl);
}
.about-portrait-wrap:hover .about-portrait { transform: scale(1.03); }

/* Small circular headshot badge */
.portrait-headshot-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    overflow: hidden;
    background: var(--navy-800);
    z-index: 2;
    flex-shrink: 0;
}
.portrait-headshot-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Event name pill badge */
.portrait-event-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(10,22,40,.82);
    backdrop-filter: blur(8px);
    color: var(--gold-200);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(217,119,6,.35);
    letter-spacing: 0.03em;
    font-family: 'Inter', sans-serif;
    z-index: 2;
    white-space: nowrap;
}
.about-credential-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
.cred-card {
    background: white;
    border-left: 3px solid var(--gold-400);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-left-width: 3px;
    border-left-color: var(--gold-400);
}
.cred-card strong { font-size: 0.875rem; color: var(--navy-700); font-weight: 700; font-family: 'Inter', sans-serif; }
.cred-card span { font-size: 0.75rem; color: var(--text-secondary); font-family: 'Inter', sans-serif; }

/* Logo images inside credential cards */
.cred-logo {
    height: 32px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 3px;
    background: white;
    padding: 3px 6px;
}

/* Primary credential card — highlighted */
.cred-card--primary {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-left-color: var(--gold-300);
    border-color: var(--navy-600);
}
.cred-card--primary strong { color: white; }
.cred-card--primary span { color: var(--gold-200); }

.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1.25rem; }

/* Inline link inside about text */
.about-inline-link {
    color: var(--navy-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.about-inline-link:hover { color: var(--gold-500); }

/* CTA row — primary btn + Finsetter btn */
.about-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}
.btn-finsetter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
    background: white;
    color: var(--navy-700);
    border: 2px solid var(--border);
    white-space: nowrap;
}
.btn-finsetter:hover {
    border-color: var(--navy-600);
    color: var(--navy-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1.75rem 0 0;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
.highlight-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Hero link */
.hero-link {
    color: var(--gold-200);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.hero-link:hover { color: white; }

/* Expertise — current role styling */
.expertise-list--current {
    background: linear-gradient(135deg, rgba(10,22,40,.04) 0%, rgba(217,119,6,.04) 100%);
    border-left: 3px solid var(--gold-400) !important;
    padding-left: 0.75rem !important;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    border-bottom: 1px solid var(--border) !important;
}
.exp-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold-100);
    color: var(--gold-600);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(217,119,6,.25);
    vertical-align: middle;
    margin-left: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.exp-note {
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.55;
    margin-top: 2px;
}
.exp-link {
    color: var(--navy-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.exp-link:hover { color: var(--gold-500); }

/* Footer multiple badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-finsetter-link {
    color: var(--gold-200);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.footer-finsetter-link:hover { color: var(--gold-300); }

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-600), var(--gold-400));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-100); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.service-icon-wrap { font-size: 2.2rem; }
.service-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold-100);
    color: var(--gold-600);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(217,119,6,.2);
}
.service-card h3 { color: var(--navy-700); margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; flex: 1; }
.service-features {
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 700;
}
.service-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-600);
    text-decoration: none;
    border-top: 1px solid var(--border);
    transition: color var(--transition);
    font-family: 'Inter', sans-serif;
}
.service-link:hover { color: var(--gold-500); }

/* ============================================
   WHO I SERVE / CLIENTELES
   ============================================ */

.clienteles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.clientele-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.clientele-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.clientele-flag { font-size: 2.5rem; margin-bottom: 1.1rem; }
.clientele-box h3 { color: var(--navy-700); margin-bottom: 0.6rem; font-size: 1.2rem; }
.clientele-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.clientele-box ul { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.5rem; }
.clientele-box li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 1.4rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
.clientele-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 700;
    font-size: 0.8rem;
    top: 1px;
}
.clientele-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-600);
    text-decoration: none;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
    transition: color var(--transition);
    font-family: 'Inter', sans-serif;
}
.clientele-link:hover { color: var(--gold-500); }

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.expertise-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.expertise-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.expertise-icon { font-size: 2rem; margin-bottom: 1rem; }
.expertise-card h3 { color: var(--navy-700); margin-bottom: 1.25rem; }
.expertise-list { display: flex; flex-direction: column; }
.expertise-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-list strong { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; font-family: 'Inter', sans-serif; }
.expertise-list span { font-size: 0.8rem; color: var(--text-secondary); font-family: 'Inter', sans-serif; }

.global-locations { display: flex; flex-direction: column; gap: 1rem; }
.location-item { display: flex; align-items: center; gap: 1rem; }
.location-flag { font-size: 1.8rem; flex-shrink: 0; }
.location-item div { display: flex; flex-direction: column; gap: 2px; }
.location-item strong { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; font-family: 'Inter', sans-serif; }
.location-item span { font-size: 0.8rem; color: var(--text-secondary); font-family: 'Inter', sans-serif; }

.competencies-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.competency-tag {
    background: var(--gray-100);
    color: var(--navy-700);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
}
.competency-tag:hover { background: var(--gold-100); border-color: var(--gold-300); color: var(--gold-600); }

/* ============================================
   WHY CHOOSE
   ============================================ */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}
.reason-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-600), var(--gold-400));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.reason-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.reason-card:hover::after { transform: scaleX(1); }
.reason-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.reason-icon { font-size: 1.8rem; margin-bottom: 0.85rem; }
.reason-card h3 { color: var(--navy-700); margin-bottom: 0.75rem; font-size: 1.05rem; }
.reason-card p { font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition);
    background: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.faq-question:hover { color: var(--navy-600); }
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-400);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 1rem 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}
.faq-answer[hidden] { display: none; }

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(217,119,6,.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(37,99,235,.12) 0%, transparent 50%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info h2 { color: white; margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}
a.contact-detail-item:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail-item strong { display: block; color: white; font-size: 0.875rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.contact-detail-item span { color: rgba(255,255,255,.65); font-size: 0.825rem; font-family: 'Inter', sans-serif; }
.contact-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,.6);
    font-family: 'Inter', sans-serif;
}
.guarantee-icon { font-size: 1rem; flex-shrink: 0; }

/* Contact form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.75rem;
    box-shadow: var(--shadow-xl);
}
.contact-form-wrap h3 {
    color: var(--navy-700);
    margin-bottom: 1.75rem;
    font-size: 1.35rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}
.required { color: var(--gold-500); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all var(--transition);
    background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
    margin-top: 0.85rem;
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,.65);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--gold-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin-bottom: 1rem;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217,119,6,.15);
    border: 1px solid rgba(217,119,6,.3);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-200);
    font-family: 'Inter', sans-serif;
}
.footer-badge-logo {
    height: 20px;
    width: auto;
    max-width: 64px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}
.footer-links-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col li a,
.footer-links-col li span {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition);
    font-family: 'Inter', sans-serif;
}
.footer-links-col li a:hover { color: var(--gold-300); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.5); font-family: 'Inter', sans-serif; }
.footer-disclaimer {
    font-size: 0.72rem !important;
    color: rgba(255,255,255,.35) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color var(--transition);
    font-family: 'Inter', sans-serif;
}
.footer-legal-links a:hover { color: var(--gold-300); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 900;
    background: #25d366;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    transition: all var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,.55);
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-900);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    font-family: 'Inter', sans-serif;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--gray-900);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.75rem;
    z-index: 900;
    background: var(--navy-700);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy-600); transform: translateY(-3px); }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ============================================
   SLIDESHOW — STORYBOARD STYLE
   ============================================ */

.slideshow-section {
    padding-bottom: var(--section-pad);
    background: var(--navy-900);
    overflow: hidden;
}
.slideshow-section .section-header { margin-bottom: 2.5rem; }
.slideshow-section .section-header h2 { color: white; }
.slideshow-section .section-label { color: var(--gold-300); }
.slideshow-section .section-sub { color: rgba(255,255,255,.65); }
.slideshow-section .container { padding-top: var(--section-pad); }

/* Slideshow wrapper */
.slideshow {
    position: relative;
    overflow: hidden;
    outline: none;
    background: var(--navy-900);
    height: 580px;
    cursor: grab;
    user-select: none;
}
.slideshow:active { cursor: grabbing; }

/* Track — all slides side by side */
.slideshow-track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(.77,0,.175,1);
    will-change: transform;
}

/* ---- Individual slide ---- */
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 42% 58%;
    position: relative;
    overflow: hidden;
}

/* Photo panel */
.slide-image {
    position: relative;
    overflow: hidden;
    order: 2;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s ease;
}
.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy-900) 0%, transparent 25%);
    pointer-events: none;
}

/* Story panel */
.slide-story {
    background: var(--navy-900);
    padding: 3.5rem 3rem 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    order: 1;
    position: relative;
    z-index: 1;
}
.slide-story::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0; bottom: 0;
    width: 80px;
    background: linear-gradient(to right, var(--navy-900), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Slide elements */
.slide-counter {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,.08);
    line-height: 1;
    letter-spacing: -0.02em;
}
.slide-total {
    font-size: 1.5rem;
    color: rgba(255,255,255,.06);
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-family: 'Inter', sans-serif;
    background: rgba(217,119,6,.12);
    border: 1px solid rgba(217,119,6,.28);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    width: fit-content;
}
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}
.slide-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}
.slide-location {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
    margin-top: 0.25rem;
}

/* Zoom image on active slide */
.slideshow-track .slide .slide-image img { transform: scale(1.04); }

/* ---- Arrow buttons ---- */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
    backdrop-filter: blur(6px);
}
.slide-arrow:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--navy-900);
    transform: translateY(-50%) scale(1.08);
}
.slide-arrow--prev { left: 1.5rem; }
.slide-arrow--next { right: 1.5rem; }
.slide-arrow svg { flex-shrink: 0; }

/* ---- Dot navigation ---- */
.slideshow-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.dot.active,
.dot[aria-selected="true"] {
    background: var(--gold-400);
    width: 28px;
    border-radius: 4px;
}
.dot:hover:not(.active) { background: rgba(255,255,255,.5); }

/* ---- Progress bar ---- */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.08);
    z-index: 10;
}
.slide-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    border-radius: 0 2px 2px 0;
    transition: width 5s linear;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    :root { --section-pad: 4rem; }

    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { padding-left: 0; justify-content: center; }
    .hero-portrait-wrap { width: 280px; height: 340px; }
    .hero-portrait-ring { width: 292px; height: 292px; }
    .hero-portrait-img { width: 280px; height: 280px; }
    .hero-chip--2 { right: -10px; }
    .hero-chip--3 { left: -10px; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { position: static; }
    .about-portrait { height: 420px; }

    /* Slideshow tablet */
    .slideshow { height: 480px; }
    .slide { grid-template-columns: 45% 55%; }
    .slide-story { padding: 2.5rem 2rem 2.5rem 2.5rem; }
    .slide-counter { font-size: 2.2rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clienteles-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    :root { --section-pad: 3rem; }

    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container { height: 64px; }

    /* Hero */
    .hero { padding: 3.5rem 0 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .hero-visual { display: flex; padding: 1rem 0 0; }
    .hero-portrait-wrap { width: 200px; height: 240px; }
    .hero-portrait-ring { width: 212px; height: 212px; }
    .hero-portrait-img { width: 200px; height: 200px; }
    .hero-chip { display: none; }

    /* Trust strip */
    .trust-strip-inner { gap: 0.75rem; }
    .trust-divider { display: none; }

    /* About */
    .about-visual { position: static; }
    .about-portrait { height: 380px; }
    .about-credential-cards { flex-direction: column; width: 100%; }

    /* Slideshow mobile — stack vertically */
    .slideshow { height: auto; cursor: default; }
    .slide { grid-template-columns: 1fr; grid-template-rows: 280px auto; }
    .slide-image { order: 1; }
    .slide-image::after { background: linear-gradient(to bottom, transparent 50%, var(--navy-900) 100%); }
    .slide-story { order: 2; padding: 1.75rem 1.5rem 2.5rem; }
    .slide-story::after { display: none; }
    .slide-counter { font-size: 1.8rem; }
    .slide-title { font-size: 1.35rem; }
    .slide-desc { font-size: 0.875rem; }
    .slide-arrow { width: 40px; height: 40px; top: 140px; transform: none; }
    .slide-arrow:hover { transform: scale(1.08); }
    .slide-arrow--prev { left: 0.75rem; }
    .slide-arrow--next { right: 0.75rem; }
    .slideshow-dots { bottom: 1.25rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Reasons */
    .reasons-grid { grid-template-columns: 1fr; }

    /* Contact form */
    .contact-form-wrap { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-legal-links { gap: 1rem; }
}

/* =====================================================
   BLOG PAGES — blogs.html / blog-post.html
   ===================================================== */

/* Dark theme base — overrides global light-theme defaults */
body.blog-page {
    background-color: var(--navy-900);
    color: #fff;
}
body.blog-page h1,
body.blog-page h2,
body.blog-page h3,
body.blog-page h4 { color: #fff; }
body.blog-page p   { color: rgba(255,255,255,.65); }

/* ── Blog Hero ─────────────────────────────────────── */
.blog-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.blog-hero-inner { max-width: 720px; }
.blog-hero-tag {
    display: inline-block; background: rgba(232,135,26,.15); color: var(--gold-400);
    border: 1px solid rgba(232,135,26,.3); border-radius: 50px;
    padding: .3rem .9rem; font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.25rem;
}
.blog-hero h1 { font-size: clamp(1.9rem,4vw,2.75rem); line-height:1.2; margin-bottom: 1rem; }
.blog-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; max-width: 620px; margin-bottom: 1.75rem; }

/* Search */
.blog-search-wrap { position: relative; max-width: 420px; }
.blog-search {
    width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: 50px; padding: .75rem 1.25rem .75rem 2.75rem;
    color: #fff; font-size: .9rem; font-family: 'Inter',sans-serif; outline: none;
    transition: border-color .2s;
}
.blog-search:focus { border-color: var(--gold-400); }
.blog-search::placeholder { color: rgba(255,255,255,.35); }
.blog-search-icon {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,.4); pointer-events: none;
}

/* ── Category Filters ──────────────────────────────── */
.blog-filters-bar { padding: 1.25rem 0; background: rgba(255,255,255,.025); border-bottom: 1px solid rgba(255,255,255,.07); }
.blog-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.blog-filter-btn {
    background: transparent; border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
    color: rgba(255,255,255,.6); padding: .45rem 1.1rem; font-size: .8rem;
    font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Inter',sans-serif;
}
.blog-filter-btn:hover { border-color: var(--gold-400); color: var(--gold-400); }
.blog-filter-btn.active {
    background: var(--gold-400); border-color: var(--gold-400);
    color: var(--navy-900); font-weight: 700;
}

/* ── Blog Grid ─────────────────────────────────────── */
.blog-grid-section { padding: 3rem 0 4rem; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

/* Blog Card */
.blog-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.blog-card-inner { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.blog-card-img-wrap { position: relative; height: 180px; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-800) 0%, #1a3a6e 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.2);
}
.blog-card-cat {
    position: absolute; top: .75rem; left: .75rem;
    background: rgba(10,22,40,.85); backdrop-filter: blur(8px);
    color: var(--gold-400); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
    padding: .25rem .65rem; border-radius: 50px;
    border: 1px solid rgba(232,135,26,.3);
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.blog-card-title {
    font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
    font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.blog-card-meta { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.4); flex-wrap: wrap; margin-top: auto; }
.blog-card-author { font-weight: 600; color: rgba(255,255,255,.55); }
.blog-card-dot { opacity: .4; }

/* Skeleton loading */
.blog-skeleton-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap:1.75rem; }
.blog-skeleton-card { border-radius:16px; overflow:hidden; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); padding:1.25rem; }
.skel { background:linear-gradient(90deg,rgba(255,255,255,.06) 25%,rgba(255,255,255,.1) 50%,rgba(255,255,255,.06) 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:6px; margin-bottom:.75rem; }
.skel-img   { height:160px; margin-bottom:1rem; border-radius:10px; }
.skel-tag   { height:18px; width:80px; }
.skel-title { height:22px; }
.skel-text  { height:14px; }
.skel-text.short { width:60%; }
.skel.wide  { width:80%; }
@keyframes shimmer { to { background-position:-200% 0; } }

/* States */
.blog-error, .blog-empty { text-align:center; padding:3rem; color:rgba(255,255,255,.5); }
.blog-retry-btn {
    background:transparent; border:1px solid rgba(232,135,26,.4); color:var(--gold-400);
    border-radius:50px; padding:.4rem 1rem; font-size:.8rem; cursor:pointer;
    margin-left:.5rem; transition:all .2s;
}
.blog-retry-btn:hover { background:rgba(232,135,26,.1); }

/* Load More */
.blog-load-more-wrap { text-align:center; margin-top:2.5rem; }

/* ── Blog CTA ────────────────────────────────────────── */
.blog-cta-section { padding: 3rem 0 4rem; }
.blog-cta-card {
    background: linear-gradient(135deg, var(--navy-800) 0%, #1a3a6e 100%);
    border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
    padding: 2.5rem; display: flex; align-items: center;
    justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.blog-cta-text h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.blog-cta-text p  { color: rgba(255,255,255,.6); font-size: .95rem; }

/* ── Single Post Page ────────────────────────────────── */
.post-breadcrumb { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.post-breadcrumb .container { display:flex; align-items:center; gap:.5rem; font-size:.82rem; color:rgba(255,255,255,.45); }
.post-breadcrumb a { color:var(--gold-400); text-decoration:none; font-weight:600; }
.post-breadcrumb a:hover { text-decoration:underline; }

.post-header { padding: 3rem 0 2.5rem; background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%); }
.post-header-inner { max-width: 780px; }
.post-category {
    display:inline-block; background:rgba(232,135,26,.15); color:var(--gold-400);
    border:1px solid rgba(232,135,26,.3); border-radius:50px;
    padding:.3rem .9rem; font-size:.75rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.05em; margin-bottom:1rem;
}
.post-title { font-size:clamp(1.75rem,3.5vw,2.6rem); line-height:1.2; margin-bottom:1.5rem; max-width:780px; }
.post-meta { display:flex; align-items:center; gap:.85rem; }
.post-author-avatar { width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.2); }
.post-meta-text { display:flex; flex-direction:column; gap:.2rem; }
.post-author-name { font-size:.9rem; font-weight:700; color:#fff; }
.post-meta-sub { font-size:.8rem; color:rgba(255,255,255,.45); }

/* Content layout */
.post-content-wrap { padding: 3rem 0; }
.post-layout { display:grid; grid-template-columns:1fr 300px; gap:3rem; align-items:start; }
.post-body { color:rgba(255,255,255,.85); line-height:1.85; font-size:.975rem; }
.post-body h2 { font-size:1.5rem; margin:2rem 0 .75rem; color:#fff; font-family:'Playfair Display',serif; }
.post-body h3 { font-size:1.15rem; margin:1.5rem 0 .5rem; color:#fff; }
.post-body p  { margin-bottom:1rem; }
.post-body ul, .post-body ol { padding-left:1.5rem; margin-bottom:1rem; }
.post-body li { margin-bottom:.4rem; }
.post-body strong { color:#fff; font-weight:700; }
.post-body a  { color:var(--gold-400); text-decoration:underline; }
.post-body a:hover { color:var(--gold-300); }
.post-body table { width:100%; border-collapse:collapse; margin:1.25rem 0; }
.post-body table td { padding:.6rem .85rem; border:1px solid rgba(255,255,255,.1); font-size:.88rem; }
.post-body table tr:nth-child(even) td { background:rgba(255,255,255,.03); }
.post-body blockquote {
    border-left:3px solid var(--gold-400); padding:.75rem 1.25rem;
    margin:1.5rem 0; background:rgba(232,135,26,.06); border-radius:0 8px 8px 0;
    color:rgba(255,255,255,.75); font-style:italic;
}

/* Sidebar */
.post-sidebar { position:sticky; top:80px; display:flex; flex-direction:column; gap:1.25rem; }
.post-sidebar-card {
    background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09);
    border-radius:16px; padding:1.5rem; text-align:center;
}
.post-sidebar-tags { text-align:left; }
.sidebar-avatar { width:72px; height:72px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.2); margin-bottom:.75rem; }
.post-sidebar-card h3 { font-size:1rem; margin-bottom:.5rem; }
.post-sidebar-card h4 { font-size:.82rem; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.05em; margin-bottom:.75rem; }
.post-sidebar-card p  { font-size:.82rem; color:rgba(255,255,255,.55); line-height:1.6; margin-bottom:1rem; }
.sidebar-cta { display:block; font-size:.82rem; padding:.65rem 1.25rem; }

/* Tags */
.post-tags { display:flex; flex-wrap:wrap; gap:.5rem; }
.post-tag {
    background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1);
    border-radius:50px; padding:.25rem .7rem; font-size:.72rem; color:rgba(255,255,255,.6);
}

/* Share buttons */
.post-share-btns { display:flex; flex-direction:column; gap:.5rem; }
.share-btn {
    display:block; padding:.55rem 1rem; border-radius:8px; font-size:.8rem;
    font-weight:600; text-align:center; text-decoration:none; transition:opacity .2s;
}
.share-btn:hover { opacity:.8; }
.share-linkedin  { background:#0a66c2; color:#fff; }
.share-twitter   { background:#000; color:#fff; }
.share-whatsapp  { background:#25d366; color:#fff; }

/* Post CTA strip */
.post-cta-strip { padding:2.5rem 0; }

/* More articles */
.post-more-wrap { padding:3rem 0 4rem; border-top:1px solid rgba(255,255,255,.07); }
.post-more-title { font-size:1.4rem; margin-bottom:1.75rem; }

/* Loading skeletons (post page) */
.post-loading { padding:4rem 0; }
.post-skel-hero { height:320px; background:linear-gradient(90deg,rgba(255,255,255,.05) 25%,rgba(255,255,255,.08) 50%,rgba(255,255,255,.05) 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:0; margin-bottom:2rem; }
.post-skel-body { max-width:780px; }
.post-error { padding:5rem 0; text-align:center; color:rgba(255,255,255,.5); }
.post-error a { color:var(--gold-400); }

/* ── Blog responsive ───────────────────────────────── */
@media(max-width:900px) {
    .post-layout { grid-template-columns:1fr; }
    .post-sidebar { position:static; }
    .blog-cta-card { flex-direction:column; text-align:center; }
}
@media(max-width:600px) {
    .blog-hero { padding:3.5rem 0 2.5rem; }
    .blog-hero h1 { font-size:1.65rem; }
    .blog-grid { grid-template-columns:1fr; }
    .post-title { font-size:1.5rem; }
    .post-header { padding:2rem 0 1.75rem; }
    .post-content-wrap { padding:2rem 0; }
}

/* ============================================
   RESPONSIVE — SMALL (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    :root { --section-pad: 2.5rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-suffix { font-size: 1.4rem; }

    .contact-form-wrap { padding: 1.5rem 1.25rem; }
    .hero-badge { font-size: 0.7rem; }
    .trust-item { font-size: 0.72rem; }

    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
    .back-to-top { right: 1.25rem; bottom: 5rem; }

    .clienteles-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }

    /* About portrait smaller */
    .about-portrait { height: 320px; }
    .portrait-event-badge { font-size: 0.65rem; padding: 0.3rem 0.6rem; right: 0.75rem; bottom: 0.75rem; }
    .portrait-headshot-badge { width: 56px; height: 56px; left: 0.75rem; bottom: 0.75rem; }

    /* Slideshow very small */
    .slide { grid-template-rows: 240px auto; }
    .slide-story { padding: 1.5rem 1.25rem 2.25rem; gap: 0.75rem; }
    .slide-desc { display: none; }
}

/* ============================================
   PRINT
   ============================================ */

/* ============================================
   CONSULTATION FORM — FINSETTER INTEGRATION
   ============================================ */

.form-subtitle {
    font-size: .85rem;
    color: var(--navy-500);
    margin: -.25rem 0 1.5rem;
    line-height: 1.6;
}

.form-subtitle strong { color: var(--navy-700); }

/* Success state — sits inside white .contact-form-wrap */
.form-success {
    text-align: center;
    padding: 2.75rem 2rem;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.form-success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: .6rem;
    line-height: 1.25;
}

.form-success p {
    font-size: .93rem;
    color: var(--navy-600);
    line-height: 1.75;
    margin: 0;
}

.form-success p strong { color: var(--navy-800); }

.form-success .btn-outline {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-color: var(--navy-300);
    color: var(--navy-700);
    font-size: .88rem;
}

.form-success .btn-outline:hover {
    background: var(--navy-50, #f8fafc);
    border-color: var(--navy-500);
    color: var(--navy-900);
}

/* Submit button loading state */
.btn-loading {
    display: none;
    align-items: center;
    gap: .5rem;
}

.spin-icon {
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form note link */
.form-note-link {
    color: var(--navy-600);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.form-note-link:hover { color: var(--navy-800); }

@media print {
    .navbar, .whatsapp-float, .back-to-top, .hero-visual { display: none !important; }
    .hero { background: none; color: var(--text-primary); padding: 2rem 0; }
    .hero h1, .hero p, .hero-badge, .hero-sub { color: var(--text-primary) !important; }
    .section-pad { padding: 2rem 0; }
}

/* ============================================
   BATAI.COM & NEW UI ELEMENTS
   ============================================ */

/* ---- Hero triple-badge row ---- */
.hero-badges-row {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* EApps — teal */
.hero-badge--eapps {
    background: rgba(20,184,166,.18);
    border-color: rgba(20,184,166,.4);
    color: #5eead4;
}

.badge-dot--teal {
    background: #14b8a6;
    box-shadow: 0 0 6px rgba(20,184,166,.6);
}

/* BatAI — purple */
.hero-badge--ai {
    background: rgba(139,92,246,.18);
    border-color: rgba(139,92,246,.4);
    color: #c4b5fd;
}

.badge-dot--gold {
    background: var(--gold-400);
    box-shadow: 0 0 6px rgba(251,191,36,.6);
}

.hero-badge-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-badge-link--light { opacity: .9; }
.hero-badge-link:hover { color: #fff; opacity: 1; }

/* ---- Trust strip link ---- */
.trust-link {
    color: var(--gold-300);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}
.trust-link:hover { color: var(--gold-200); }

/* ---- Cred card: EApps (teal) ---- */
.cred-card--eapps {
    border-color: rgba(20,184,166,.4);
    background: rgba(20,184,166,.1);
}
.cred-card--eapps strong { color: #5eead4; }

/* ---- Cred card: BatAI (purple) ---- */
.cred-card--startup {
    border-color: rgba(139,92,246,.4);
    background: rgba(139,92,246,.1);
}
.cred-card--startup strong { color: #c4b5fd; }

/* ---- About CTA: BatAI button ---- */
.btn-batai {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s ease;
    background: rgba(139,92,246,.15);
    border: 1.5px solid rgba(139,92,246,.5);
    color: #c4b5fd;
    white-space: nowrap;
}
.btn-batai:hover {
    background: rgba(139,92,246,.28);
    border-color: rgba(139,92,246,.8);
    color: #e9d5ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,92,246,.25);
}

/* ---- Exp badge: EApps (teal) ---- */
.exp-badge--eapps {
    background: rgba(20,184,166,.2);
    color: #5eead4;
    border: 1px solid rgba(20,184,166,.35);
}

/* ---- Exp badge: BatAI (purple) ---- */
.exp-badge--ai {
    background: rgba(139,92,246,.2);
    color: #c4b5fd;
    border: 1px solid rgba(139,92,246,.35);
}

/* ============================================
   VENTURES / BATAI SECTION
   ============================================ */

.ventures-section {
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.ventures-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 95% 20%, rgba(139,92,246,.1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 5% 80%, rgba(30,58,138,.3) 0%, transparent 60%);
    pointer-events: none;
}

.batai-showcase {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: start;
    position: relative;
}

/* Left column */
.batai-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.batai-logo-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* Real company logos in ventures section */
.venture-logo-wrap {
    display: flex;
    align-items: center;
}
.venture-logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.batai-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.batai-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}

.batai-dot {
    color: #c4b5fd;
}

.eapps-brand { color: #5eead4; }
.eapps-dot { color: rgba(94,234,212,.7); }

.batai-tagline {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: .05em;
    border-left: 3px solid rgba(139,92,246,.5);
    padding-left: .8rem;
    font-style: italic;
}

.batai-desc {
    font-size: .93rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin: 0;
}

.batai-cta-row {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.btn-batai-primary {
    display: inline-flex;
    align-items: center;
    padding: .8rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .28s ease;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(109,40,217,.35);
    white-space: nowrap;
}

.btn-batai-primary:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(109,40,217,.5);
    color: #fff;
}

/* Right column */
.batai-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.batai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.batai-feature-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.4rem 1.25rem;
    transition: border-color .3s, background .3s, transform .3s;
}

.batai-feature-card:hover {
    border-color: rgba(139,92,246,.35);
    background: rgba(139,92,246,.07);
    transform: translateY(-4px);
}

.batai-feature-icon {
    font-size: 1.6rem;
    margin-bottom: .6rem;
    display: block;
}

.batai-feature-card h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}

.batai-feature-card p {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin: 0;
}

/* Stats row */
.batai-stat-row {
    display: flex;
    justify-content: space-between;
    background: rgba(139,92,246,.08);
    border: 1px solid rgba(139,92,246,.2);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.batai-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
}

.batai-stat strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #c4b5fd;
    line-height: 1;
}

.batai-stat span {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: center;
}

/* ---- Ventures responsive ---- */
@media (max-width: 1024px) {
    .batai-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .batai-left { position: static; }
}

@media (max-width: 768px) {
    .hero-badges-row { gap: .5rem; }
    .about-cta-row { flex-wrap: wrap; }
    .batai-features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .batai-stat-row { justify-content: center; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .batai-brand { font-size: 1.5rem; }
    .batai-features-grid { grid-template-columns: 1fr; }
    .btn-batai-primary, .btn-batai { width: 100%; justify-content: center; text-align: center; }
    .batai-cta-row { flex-direction: column; }
}
