/* =========================
   EquityReach — Landing Page Styles
   ========================= */

:root {
    --navy: #0a1628;
    --navy-2: #0f1f3a;
    --navy-3: #15294a;
    --gold: #d4af37;
    --gold-light: #f4d77f;
    --gold-dark: #b08d2a;
    --gold-grad: linear-gradient(135deg, #f4d77f 0%, #d4af37 50%, #b08d2a 100%);
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray: #6b7a90;
    --gray-light: #e4e8ef;
    --text: #1a2942;
    --text-light: #5a6a82;
    --up: #16a34a;
    --down: #dc2626;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow: 0 8px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }
.gold-gradient {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   Buttons
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--trans);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold-grad);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}
.btn-block { width: 100%; }

/* =========================
   Top Bar
   ========================= */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar i { color: var(--gold); margin-right: 6px; }

/* =========================
   Ticker — TradingView
   ========================= */
.ticker-wrap {
    background: linear-gradient(90deg, var(--navy-2), var(--navy-3));
    border-bottom: 2px solid var(--gold);
    padding: 0;
    min-height: 46px;
}
.ticker-wrap .tradingview-widget-container {
    background: transparent;
}
/* TradingView injects its own copyright link; hide it for a cleaner look */
.ticker-wrap .tradingview-widget-copyright {
    display: none !important;
}

/* =========================
   Navbar
   ========================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: var(--trans);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold-grad);
    transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold-dark); }

.nav-cta {
    background: var(--gold-grad);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================
   Hero
   ========================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation: floatY 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: #4f7fff;
    bottom: -50px;
    left: -50px;
    animation: floatY 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gold-light);
    top: 40%;
    left: 30%;
    opacity: 0.15;
    animation: floatY 12s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}
.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.7;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.stat {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-num::after {
    content: '+';
    margin-left: 2px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.hero-trust i { color: var(--gold); margin-right: 4px; }
.hero-trust .dot { margin: 0 10px; color: var(--gold); }

/* Hero Form Card */
.hero-form-wrap { position: relative; }
.hero-form-card {
    background: var(--white);
    color: var(--text);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-grad);
}
.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-grad);
    color: var(--navy);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero-form-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-sub {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 22px;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.form-group {
    position: relative;
}
.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    transition: var(--trans);
}
.form-group textarea {
    padding-top: 14px;
    resize: vertical;
    font-family: var(--font-body);
}
.form-group textarea ~ i { top: 18px; transform: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}
.form-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}
.form-disclaimer i { color: var(--up); margin-right: 4px; }

.form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}
.form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}
.form-success i {
    font-size: 60px;
    color: var(--up);
    margin-bottom: 14px;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 8px;
}

/* =========================
   Trust Strip
   ========================= */
.trust-strip {
    background: var(--off-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-light);
}
.trust-label {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
    opacity: 0.7;
    transition: var(--trans);
}
.trust-item:hover { opacity: 1; transform: translateY(-2px); }
.trust-item i { color: var(--gold); font-size: 22px; }

/* =========================
   Sections
   ========================= */
.section { padding: 100px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-sub {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
   Services
   ========================= */
.services { background: var(--off-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    position: relative;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}
.service-card.featured {
    background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
    border: 1.5px solid var(--gold);
    transform: scale(1.02);
}
.service-card.featured:hover { transform: scale(1.02) translateY(-8px); }
.popular-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-grad);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-grad);
    color: var(--navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card > p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
}
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}
.service-list i {
    color: var(--up);
    font-size: 13px;
}

/* =========================
   About
   ========================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 4s ease-in-out infinite;
}
.floating-card i {
    width: 48px;
    height: 48px;
    background: var(--gold-grad);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.floating-card strong {
    display: block;
    font-size: 22px;
    color: var(--navy);
    font-family: var(--font-display);
    line-height: 1;
}
.floating-card span {
    font-size: 13px;
    color: var(--text-light);
}
.card-1 { top: 30px; left: -30px; }
.card-2 { bottom: 30px; right: -20px; animation-delay: 2s; }

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--navy);
    line-height: 1.2;
    margin: 14px 0 20px;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0 32px;
}
.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}
.feat i { color: var(--gold); font-size: 18px; }

/* =========================
   Why
   ========================= */
.why { background: var(--off-white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--trans);
    border: 1px solid transparent;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.3);
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    color: var(--gold-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    transition: var(--trans);
}
.why-card:hover .why-icon {
    background: var(--gold-grad);
    color: var(--navy);
    transform: rotateY(180deg);
}
.why-card h4 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   Process
   ========================= */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 240px;
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--gold);
    transition: var(--trans);
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.step-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-grad);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-gold);
}
.step-icon {
    font-size: 36px;
    color: var(--gold);
    margin: 18px 0 14px;
}
.step h4 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 10px;
}
.step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}
.step-arrow {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-size: 24px;
}

/* =========================
   Testimonials
   ========================= */
.testimonials { background: var(--off-white); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testi-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    border: 1px solid transparent;
    position: relative;
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.3);
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.stars i { margin-right: 2px; }
.testi-card > p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 15px;
    font-style: italic;
}
.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-light);
}
.avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-grad);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
}
.testi-person strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}
.testi-person span {
    font-size: 13px;
    color: var(--text-light);
}

/* =========================
   FAQ
   ========================= */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--trans);
}
.faq-item.open {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: var(--trans);
}
.faq-q i {
    color: var(--gold);
    transition: transform 0.3s;
    font-size: 14px;
}
.faq-item.open .faq-q i {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
}
.faq-a p {
    padding: 0 24px 22px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   CTA / Contact Section
   ========================= */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(40px);
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.cta-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 14px 0 18px;
    line-height: 1.2;
}
.cta-info > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.cta-contacts { display: flex; flex-direction: column; gap: 20px; }
.cta-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.cta-contact span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}
.cta-contact strong {
    color: var(--white);
    font-size: 17px;
}
.cta-form-card h3 i { color: var(--gold); margin-left: 6px; }

/* =========================
   Footer
   ========================= */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}
.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-grad);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--trans);
}
.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.socials { display: flex; gap: 12px; }
.socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--trans);
}
.socials a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.disclaimer {
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    margin-bottom: 30px;
}
.disclaimer h5 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}
.disclaimer p {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.7); }
.footer-links a:hover { color: var(--gold); }

/* =========================
   Floating Buttons
   ========================= */
.float-whatsapp,
.float-call {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--trans);
}
.float-whatsapp {
    bottom: 24px;
    right: 24px;
    background: #25d366;
    animation: pulse 2s infinite;
}
.float-call {
    bottom: 24px;
    left: 24px;
    background: var(--gold-grad);
    color: var(--navy);
}
.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    z-index: 998;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    background: var(--gold);
    color: var(--navy);
}

/* =========================
   Animations
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.animate-fade-left { animation: fadeLeft 1s ease 0.3s forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .cta-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .top-bar { font-size: 12px; }
    .top-bar-right { display: none; }
    .top-bar-left { justify-content: center; width: 100%; gap: 14px; font-size: 11px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s;
        z-index: 999;
    }
    .nav-links.show { right: 0; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .nav-cta { width: 100%; justify-content: center; }

    .hero { padding: 60px 0 80px; }
    .hero-stats { gap: 28px; }
    .stat-num { font-size: 28px; }
    .hero-form-card { padding: 28px 22px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-trust .dot { display: block; height: 0; visibility: hidden; }

    .floating-card { padding: 12px 16px; }
    .card-1 { left: 10px; top: 10px; }
    .card-2 { right: 10px; bottom: 10px; }

    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .float-whatsapp, .float-call { width: 50px; height: 50px; font-size: 20px; }

    .service-card.featured { transform: none; }
    .service-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 15px; }
    .section-head h2 { font-size: 1.7rem; }
    .trust-logos { gap: 18px; }
    .trust-item { font-size: 14px; }
    .ticker-item { font-size: 12px; }
    .stat { padding-left: 12px; }
    .stat-num { font-size: 24px; }
}
