/* =============================================
   BRANDZOO MEDIA — HOME PAGE STYLES
   Ultra-Premium Design v2.0
   ============================================= */

/* ── TOP BAR ── */
.top-bar {
    background: #0A1D37;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar-left a, .top-bar-right a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.top-bar-left a:hover, .top-bar-right a:hover { color: #20B2AA; }
.whatsapp-link { color: #25D366 !important; font-weight: 600; }
.whatsapp-link:hover { color: #1ebe5d !important; }

/* ── ANNOUNCEMENT TICKER ── */
.announcement-bar {
    background: linear-gradient(90deg, #20B2AA, #6C4AB6, #20B2AA);
    background-size: 200%;
    animation: gradientShift 6s ease infinite;
    overflow: hidden;
    padding: 9px 0;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.ticker-wrap { overflow: hidden; }
.ticker {
    display: flex;
    white-space: nowrap;
    animation: tickerAnim 30s linear infinite;
}
.ticker span { font-size: 13px; color: #fff; font-weight: 600; letter-spacing: 0.3px; }
@keyframes tickerAnim {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── HEADER ── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.main-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
}
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0A1D37;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon { font-size: 26px; }
.logo-accent { color: #20B2AA; }
.main-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav a:hover, .main-nav a.active { color: #20B2AA; background: rgba(32,178,170,0.08); }
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-menu { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}
.dropdown-menu a {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    align-items: center;
}
.dropdown-menu a i { color: #20B2AA; width: 18px; text-align: center; }
.dropdown-menu a:hover { background: #f0fdfc; color: #20B2AA; }
.btn-primary-nav {
    background: linear-gradient(135deg, #20B2AA, #1a9990);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32,178,170,0.35);
}
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(32,178,170,0.4); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s; }

/* ── HERO SECTION ── */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0A1D37;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1D37 0%, #0d2952 40%, #1a1040 80%, #0f1a2e 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(32,178,170,0.15);
    border: 1px solid rgba(32,178,170,0.4);
    color: #20B2AA;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #20B2AA;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-gradient-text {
    background: linear-gradient(90deg, #20B2AA, #7c3aed, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-subtitle strong { color: #20B2AA; }
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-hero-primary {
    background: linear-gradient(135deg, #20B2AA, #1a9990);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(32,178,170,0.45);
    transition: all 0.3s ease;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(32,178,170,0.55); }
.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong { font-size: 28px; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ── FINGER ANIMATION ── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.finger-scene {
    position: relative;
    width: 340px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.finger-bg-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32,178,170,0.25) 0%, rgba(124,58,237,0.1) 50%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}
.finger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}
.finger { position: relative; }
.finger-svg { width: 80px; }
.finger-ai { animation: fingerAiAnim 3s ease-in-out infinite; }
.finger-human { animation: fingerHumanAnim 3s ease-in-out infinite; }
@keyframes fingerAiAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@keyframes fingerHumanAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.finger-label {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(32,178,170,0.15);
    border: 1px solid rgba(32,178,170,0.3);
    color: #20B2AA;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
}
.human-label {
    margin-top: 8px;
    margin-bottom: 0;
    background: rgba(249,115,22,0.15);
    border-color: rgba(249,115,22,0.3);
    color: #f97316;
}
.finger-spark {
    position: relative;
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spark {
    position: absolute;
    border-radius: 50%;
    background: #20B2AA;
    animation: sparkAnim 1.5s ease-in-out infinite;
}
.s1 { width: 8px; height: 8px; left: 50%; top: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.s2 { width: 5px; height: 5px; left: 20%; top: 20%; animation-delay: 0.3s; background: #7c3aed; }
.s3 { width: 5px; height: 5px; right: 20%; top: 20%; animation-delay: 0.6s; background: #f97316; }
.s4 { width: 4px; height: 4px; left: 50%; bottom: 5%; animation-delay: 0.9s; background: #fff; }
@keyframes sparkAnim {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%,-50%) scale(1.8); opacity: 0.4; }
}
.s2, .s3, .s4 { transform: none; }
@keyframes sparkAnim2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
}
.s2 { animation: sparkAnim2 1.5s ease-in-out infinite 0.3s; }
.s3 { animation: sparkAnim2 1.5s ease-in-out infinite 0.6s; }
.s4 { animation: sparkAnim2 1.5s ease-in-out infinite 0.9s; }
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(32,178,170,0.4);
    animation: ringExpand 2s ease-out infinite;
}
.r1 { width: 30px; height: 30px; animation-delay: 0s; }
.r2 { width: 30px; height: 30px; animation-delay: 1s; border-color: rgba(124,58,237,0.4); }
@keyframes ringExpand {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    animation: floatCard 6s ease-in-out infinite;
}
.floating-card i { font-size: 20px; color: #20B2AA; }
.floating-card strong { display: block; font-weight: 700; font-size: 14px; }
.floating-card span { color: rgba(255,255,255,0.6); font-size: 11px; }
.fc-1 { top: 20px; left: -40px; animation-delay: 0s; }
.fc-2 { bottom: 80px; left: -50px; animation-delay: 2s; }
.fc-3 { top: 40px; right: -30px; animation-delay: 4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ── MARQUEE ── */
.marquee-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 800;
    color: #aaa;
    margin-bottom: 20px;
}
.marquee-outer { overflow: hidden; }
.marquee-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.marquee-inner img { height: 32px; opacity: 0.4; filter: grayscale(1); transition: all 0.3s; }
.marquee-inner img:hover { opacity: 0.8; filter: grayscale(0); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── SHARED ── */
.section-pad { padding: 90px 0; }
.bg-dark-section {
    background: linear-gradient(135deg, #0A1D37 0%, #0d2952 100%);
}
.section-badge {
    display: inline-block;
    background: rgba(32,178,170,0.12);
    border: 1px solid rgba(32,178,170,0.3);
    color: #20B2AA;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge.light {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #0A1D37;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub { font-size: 17px; color: #666; max-width: 600px; }
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-header-center .section-sub { margin: 0 auto; }
.light-text { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 16px; }

/* ── ABOUT SECTION ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-text p { color: #555; line-height: 1.8; font-size: 16px; margin-bottom: 36px; }
.about-counters {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.counter-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.count-num {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #20B2AA;
    line-height: 1;
}
.count-suffix { font-size: 28px; font-weight: 800; color: #20B2AA; }
.count-label { font-size: 13px; color: #888; font-weight: 600; margin-top: 4px; }
.btn-outline-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #20B2AA;
    color: #20B2AA;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline-accent:hover { background: #20B2AA; color: #fff; }
.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.about-img-card img {
    border-radius: 24px;
    width: 100%;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.img-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-size: 13px;
}
.img-badge i { font-size: 28px; color: #FFB800; }
.img-badge strong { display: block; font-weight: 800; color: #0A1D37; font-size: 15px; }
.img-badge span { color: #888; }

/* ── SERVICES ── */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card-new {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #20B2AA, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card-new:hover { background: rgba(255,255,255,0.08); border-color: rgba(32,178,170,0.4); transform: translateY(-5px); }
.service-card-new:hover::before { opacity: 1; }
.service-card-new.featured {
    background: rgba(32,178,170,0.1);
    border-color: rgba(32,178,170,0.4);
}
.service-card-new.featured::before { opacity: 1; }
.featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: #20B2AA;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}
.sc-icon {
    width: 52px; height: 52px;
    background: rgba(32,178,170,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #20B2AA;
    margin-bottom: 20px;
}
.service-card-new h3 { font-size: 19px; color: #fff; margin-bottom: 12px; }
.service-card-new p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sc-tags span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.sc-arrow {
    color: #20B2AA;
    font-size: 16px;
    transition: transform 0.3s;
}
.service-card-new:hover .sc-arrow { transform: translateX(5px); }
.services-cta { text-align: center; margin-top: 48px; }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── METRICS ── */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.metric-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}
.metric-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.metric-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}
.metric-icon.teal { background: rgba(32,178,170,0.12); color: #20B2AA; }
.metric-icon.orange { background: rgba(249,115,22,0.12); color: #f97316; }
.metric-icon.purple { background: rgba(124,58,237,0.12); color: #7c3aed; }
.metric-icon.gold { background: rgba(255,184,0,0.12); color: #FFB800; }
.metric-number {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #0A1D37;
    margin-bottom: 10px;
    line-height: 1;
}
.metric-number span { font-size: 28px; }
.metric-card p { font-size: 14px; color: #777; font-weight: 500; }

/* ── AI SECTION ── */
.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
}
.check-list li i { color: #20B2AA; font-size: 18px; }
.ai-visual img {
    border-radius: 24px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.faq-item.open { border-color: rgba(32,178,170,0.3); }
.faq-q {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}
.faq-q h3 { font-size: 16px; color: #0A1D37; margin: 0; flex: 1; font-weight: 600; }
.faq-icon { font-size: 16px; color: #20B2AA; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }
.faq-a p { color: #666; line-height: 1.8; font-size: 15px; }

/* ── CONTACT ── */
.contact-section {
    background: linear-gradient(135deg, #0A1D37 0%, #1a0a2e 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}
.contact-details { margin: 28px 0; }
.cd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 14px;
}
.cd-item i { color: #20B2AA; width: 20px; text-align: center; font-size: 16px; }
.cd-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.cd-item a:hover { color: #20B2AA; }
.contact-perks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
}
.perk i { color: #20B2AA; }
.lead-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.lead-form h3 {
    font-size: 22px;
    color: #0A1D37;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 6px; }
.field input, .field select, .field textarea {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    color: #333;
    background: #fafafa;
    outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: #20B2AA;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(32,178,170,0.1);
}
.field textarea { height: 110px; resize: vertical; }
.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #20B2AA, #1a9990);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(32,178,170,0.35);
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(32,178,170,0.45); }

/* ── FOOTER ── */
.main-footer {
    background: #060f1e;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}
.social-icons a:hover { background: #20B2AA; color: #fff; }
.footer-links h4, .footer-contact h4 { font-size: 15px; color: #fff; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: #20B2AA; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 12px; }
.footer-contact i { color: #20B2AA; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: #20B2AA; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; margin-bottom: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .about-grid, .ai-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid-new { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar-left { gap: 10px; }
    .main-nav { display: none; }
    .main-nav.open { display: block; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1); padding: 20px; }
    .main-nav.open ul { flex-direction: column; gap: 4px; }
    .mobile-menu-toggle { display: flex; }
    .btn-primary-nav { padding: 9px 16px; font-size: 13px; }
    .hero-container { padding: 60px 20px; }
    .services-grid-new { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .fc-1, .fc-2, .fc-3 { display: none; }
}
