/* ============================================
   BENEFITS TAXSHIELD — Deep Navy + Rich Gold
   Consistent dark theme throughout
   ============================================ */

:root {
    --navy: #0b1120;
    --navy-2: #101827;
    --navy-3: #161f30;
    --navy-4: #1c2840;
    --navy-5: #23334d;
    --gold: #cfa33b;
    --gold-light: #dbb44d;
    --gold-bright: #e4c05a;
    --gold-dark: #b58a28;
    --gold-pale: #ebd698;
    --white: #f2f0ec;
    --off-white: #d8d4cc;
    --gray-400: #8a93a0;
    --gray-500: #6b7588;
    --gray-600: #4a5568;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border: rgba(196, 165, 90, 0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-primary); color: var(--off-white); background: var(--navy); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* === 3D ANIMATED LOGO (Hero only) === */
.logo-3d-wrapper {
    width: 40px;
    height: 40px;
    perspective: 200px;
    flex-shrink: 0;
}
.logo-3d-wrapper.logo-hero {
    width: 80px;
    height: 80px;
    perspective: 400px;
}
.hero-logo-shield {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.shield-logo {
    width: 160px;
    height: 192px;
    filter: drop-shadow(0 4px 20px rgba(207,163,59,0.15));
}
.logo-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 8s ease-in-out infinite;
}
@keyframes cubeRotate {
    0%, 100% { transform: rotateX(-15deg) rotateY(-20deg); }
    25% { transform: rotateX(-10deg) rotateY(20deg); }
    50% { transform: rotateX(15deg) rotateY(20deg); }
    75% { transform: rotateX(10deg) rotateY(-20deg); }
}
.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1.5px solid rgba(196, 165, 90, 0.35);
}
.cube-front {
    transform: translateZ(40px);
    background: linear-gradient(145deg, var(--gold-bright), var(--gold), var(--gold-dark));
    box-shadow: inset 0 0 30px rgba(255,255,255,0.1), 0 0 20px rgba(196,165,90,0.2);
}
.cube-front::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2.5px solid rgba(255,255,255,0.45);
    border-radius: 4px;
    clip-path: polygon(50% 5%, 90% 20%, 90% 55%, 50% 95%, 10% 55%, 10% 20%);
}
.cube-back { transform: translateZ(-40px) rotateY(180deg); background: linear-gradient(145deg, var(--gold-dark), #7a5c08); }
.cube-left { transform: translateX(-40px) rotateY(-90deg); background: linear-gradient(145deg, var(--navy-4), var(--navy)); }
.cube-right { transform: translateX(40px) rotateY(90deg); background: linear-gradient(145deg, var(--navy-5), var(--navy-3)); }
.cube-top { transform: translateY(-40px) rotateX(90deg); background: linear-gradient(145deg, var(--gold-light), var(--gold)); }
.cube-bottom { transform: translateY(40px) rotateX(-90deg); background: linear-gradient(145deg, var(--navy), var(--navy-3)); }
/* Smaller cube for non-hero usage */
.logo-3d-wrapper:not(.logo-hero) .cube-front { transform: translateZ(20px); }
.logo-3d-wrapper:not(.logo-hero) .cube-back { transform: translateZ(-20px) rotateY(180deg); }
.logo-3d-wrapper:not(.logo-hero) .cube-left { transform: translateX(-20px) rotateY(-90deg); }
.logo-3d-wrapper:not(.logo-hero) .cube-right { transform: translateX(20px) rotateY(90deg); }
.logo-3d-wrapper:not(.logo-hero) .cube-top { transform: translateY(-20px) rotateX(90deg); }
.logo-3d-wrapper:not(.logo-hero) .cube-bottom { transform: translateY(20px) rotateX(-90deg); }
.logo-3d-wrapper:not(.logo-hero) .cube-front::after { inset: 5px; border-width: 1.5px; }

/* === NAVIGATION === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(5, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.logo-text { font-family: var(--font-primary); font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--gold) !important; color: var(--navy) !important;
    padding: 10px 24px !important; border-radius: 100px !important; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; z-index: 1001; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
    border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
    border: 2px solid transparent; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,165,90,0.4); }
.btn-outline { border-color: rgba(196,165,90,0.4); color: var(--gold-light); }
.btn-outline:hover { border-color: var(--gold); background: rgba(196,165,90,0.1); transform: translateY(-2px); }
.btn-outline-dark { border-color: rgba(196,165,90,0.3); color: var(--gold); }
.btn-outline-dark:hover { border-color: var(--gold); background: rgba(196,165,90,0.08); transform: translateY(-2px); }
.btn-white { background: var(--navy); color: var(--gold); border-color: var(--gold); }
.btn-white:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,165,90,0.2); }
.btn-outline-white { border-color: rgba(207,163,59,0.4); color: var(--gold-light); }
.btn-outline-white:hover { border-color: var(--gold); background: rgba(207,163,59,0.1); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* === SECTION BASICS === */
.section-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--white);
}
.section-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 50px; }

/* All content sections are dark themed */
.content-section { padding: 90px 0; background: var(--navy-2); border-top: 1px solid var(--border); }
.content-section.bg-dark { background: var(--navy); }
.content-section.bg-navy { background: var(--navy-3); }

/* === HERO (Homepage) === */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: var(--navy); overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-effects { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient-orb { position: absolute; border-radius: 50%; filter: blur(120px); }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(196,165,90,0.08); top: -150px; right: -100px; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(196,165,90,0.05); bottom: -100px; left: -100px; }
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(207,163,59,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207,163,59,0.1) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,165,90,0.08); border: 1px solid rgba(196,165,90,0.2);
    color: var(--gold-light); padding: 8px 20px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 600; margin-bottom: 28px; letter-spacing: 0.04em;
}
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(196,165,90,0.4); } 50% { box-shadow: 0 0 0 8px rgba(196,165,90,0); } }
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 650px; margin: 0 auto 36px; line-height: 1.8; }
.hero-subtitle strong { color: var(--gold-light); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero animations */
.hero .hero-logo-shield, .hero .hero-badge, .hero .hero-title, .hero .hero-subtitle, .hero .hero-actions {
    animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero .hero-badge { animation-delay: 0.1s; }
.hero .hero-title { animation-delay: 0.2s; }
.hero .hero-subtitle { animation-delay: 0.3s; }
.hero .hero-actions { animation-delay: 0.4s; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* === PAGE HERO (Sub-pages) === */
.page-hero { background: var(--navy); padding: 140px 0 70px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.page-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* === PARTNERS MARQUEE === */
.partners-marquee {
    padding: 30px 0;
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 20px;
}
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    flex-shrink: 0;
    padding: 12px 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    letter-spacing: 0.03em;
    position: relative;
}
.marquee-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
}
.marquee-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(207,163,59,0.3);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === STATS BAR === */
.stats-bar {
    padding: 50px 0; background: var(--navy-2);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; }

/* === OVERVIEW (Homepage) === */
.overview { padding: 90px 0; background: var(--navy-2); border-bottom: 1px solid var(--border); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.overview-content p { color: rgba(255,255,255,0.55); margin-bottom: 18px; line-height: 1.8; }
.overview-content .btn { margin-top: 12px; }
.overview-cards { display: flex; flex-direction: column; gap: 16px; }
.ov-card {
    display: flex; align-items: center; gap: 18px; padding: 22px 24px;
    background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: var(--transition);
}
.ov-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(196,165,90,0.1); transform: translateX(4px); }
.ov-icon {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    background: rgba(196,165,90,0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ov-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; color: var(--white); }
.ov-card p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }

/* === HOW QUICK (Homepage) === */
.how-quick { padding: 90px 0; background: var(--navy-3); border-bottom: 1px solid var(--border); }
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 16px; margin-bottom: 40px; }
.step-item {
    flex: 1; max-width: 300px; text-align: center; padding: 36px 24px;
    background: var(--navy-2); border-radius: var(--radius-lg); border: 1px solid var(--border);
    transition: var(--transition);
}
.step-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(196,165,90,0.1); }
.step-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 12px; }
.step-item h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.step-item p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.step-divider { display: flex; align-items: center; margin-top: 60px; color: var(--gold); opacity: 0.3; flex-shrink: 0; }

/* === CALC PREVIEW (Homepage) === */
.calc-preview { padding: 90px 0; background: var(--navy); border-bottom: 1px solid var(--border); }
.calc-preview-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.calc-preview-info .section-title { color: var(--white); }
.calc-preview-info p { color: rgba(255,255,255,0.5); line-height: 1.8; }
.calc-mini {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg);
}
.calc-mini-input { margin-bottom: 24px; }
.calc-mini-input label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: rgba(255,255,255,0.5); }
.calc-mini-input input {
    width: 100%; text-align: center; font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 800; color: var(--white);
    border: 2px solid rgba(196,165,90,0.2); border-radius: var(--radius-md);
    padding: 14px; outline: none; transition: var(--transition);
    background: var(--navy-2); -moz-appearance: textfield;
}
.calc-mini-input input::-webkit-outer-spin-button,
.calc-mini-input input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-mini-input input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,165,90,0.1); }
.calc-mini-result { text-align: center; margin-bottom: 24px; padding: 20px; background: rgba(196,165,90,0.06); border: 1px solid var(--border); border-radius: var(--radius-md); }
.calc-mini-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.calc-mini-value { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--gold); }

/* === CALCULATOR PAGE === */
.calc-page-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.calc-card-full {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-lg);
}
.calc-input-section { margin-bottom: 32px; }
.calc-label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: var(--white); }
.calc-input-large {
    width: 100%; text-align: center; font-family: var(--font-heading);
    font-size: 3rem; font-weight: 800; color: var(--white);
    border: 2px solid rgba(196,165,90,0.2); border-radius: var(--radius-md);
    padding: 18px; outline: none; transition: var(--transition);
    background: var(--navy-2); -moz-appearance: textfield;
}
.calc-input-large::-webkit-outer-spin-button,
.calc-input-large::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-input-large:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(196,165,90,0.1); }
.calc-results-section { margin-bottom: 28px; }
.calc-result-main { text-align: center; padding: 24px; background: rgba(196,165,90,0.06); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; }
.calc-result-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.calc-result-value-large { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--gold); transition: transform 0.2s; }
.calc-result-divider { height: 1px; background: var(--border); margin: 8px 0; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.calc-result-row span:first-child { color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.calc-result-secondary { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); }
.calc-highlights-section { padding: 32px; background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.calc-highlights-section h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; color: var(--white); }
.calc-highlight-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.55); }
.calc-highlight-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* === BENEFITS GRID === */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 26px; transition: var(--transition);
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(196,165,90,0.1); }
.benefit-card.dark { background: var(--navy-4); border-color: rgba(196,165,90,0.1); }
.benefit-card.dark:hover { border-color: var(--gold); }
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.benefit-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.benefit-icon {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    background: rgba(196,165,90,0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}

/* === TWO COL / THREE COL === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.two-col p { color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.8; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
    padding: 32px 24px; background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(196,165,90,0.08); }
.info-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.info-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* === FEATURE LIST === */
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.feature-item div { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.feature-item strong { color: var(--white); }

/* === PROCESS GRID === */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
    padding: 30px 22px; background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.process-card:hover { border-color: var(--gold); box-shadow: 0 8px 25px rgba(196,165,90,0.08); }
.process-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: rgba(196,165,90,0.15); line-height: 1; margin-bottom: 10px; }
.process-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-card p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card-full {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.testimonial-card-full:hover { border-color: var(--gold); box-shadow: 0 8px 25px rgba(196,165,90,0.08); }
.testimonial-industry-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--gold);
    background: rgba(196,165,90,0.08); padding: 4px 14px; border-radius: 100px;
    margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em;
}
.testimonial-card-full blockquote {
    font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.8;
    margin-bottom: 18px; font-style: italic; border: none; padding: 0;
}
.testimonial-author-full { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.testimonial-author-full strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author-full span { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
/* Case study stats */
.case-study-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.cs-stat { text-align: center; flex: 1; padding: 14px; background: rgba(196,165,90,0.06); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.cs-stat-num { display: block; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.cs-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.case-study-text { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* === MERGER PAGE === */
.merger-timeline { max-width: 800px; margin: 0 auto; }
.merger-block { margin-bottom: 50px; }
.merger-block p { color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 14px; }
.merger-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.4); background: var(--navy-4);
    padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
}
.merger-badge.gold-badge { color: var(--gold); background: rgba(196,165,90,0.08); }
.merger-visual { margin: 50px 0; }
.merger-flow { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.merger-entity {
    text-align: center; padding: 32px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); background: var(--navy-3); min-width: 220px;
    transition: var(--transition);
}
.merger-entity:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(196,165,90,0.08); }
.merger-entity-new { border-color: var(--gold); background: rgba(196,165,90,0.04); }
.merger-entity-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: var(--navy-4); color: rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.gold-icon { background: rgba(196,165,90,0.1) !important; color: var(--gold) !important; }
.merger-entity h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.merger-entity p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0 0 10px; }
.merger-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); background: var(--navy-4); padding: 3px 10px; border-radius: 100px; }
.gold-tag { color: var(--gold) !important; background: rgba(196,165,90,0.08) !important; }
.merger-arrow { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.merger-arrow span { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; }
.merger-benefits { display: flex; flex-direction: column; gap: 20px; }
.merger-benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.merger-benefit-item svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.merger-benefit-item strong { display: block; color: var(--white); margin-bottom: 4px; }
.merger-benefit-item p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-col h2 { margin-bottom: 14px; }
.contact-info-col > p { color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-method {
    display: flex; align-items: center; gap: 16px; padding: 18px;
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-md); transition: var(--transition);
}
.contact-method:hover { border-color: var(--gold); box-shadow: 0 4px 15px rgba(196,165,90,0.08); }
.contact-method-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm);
    background: rgba(196,165,90,0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method strong { display: block; font-size: 0.9rem; color: var(--white); }
.contact-method span { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.contact-quick-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cqs-item { text-align: center; padding: 18px 10px; background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-md); }
.cqs-number { display: block; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.cqs-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.contact-form {
    background: var(--navy-3); padding: 40px; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 24px; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid rgba(196,165,90,0.15);
    border-radius: var(--radius-sm); font-size: 0.95rem; outline: none;
    transition: var(--transition); background: var(--navy-2); color: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,165,90,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-disclaimer { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* === CTA SECTION === */
.cta-section { padding: 70px 0; background: var(--navy); }
.cta-wrapper {
    background: linear-gradient(135deg, rgba(207,163,59,0.12), rgba(207,163,59,0.06), rgba(207,163,59,0.12));
    border: 1.5px solid rgba(207,163,59,0.35);
    border-radius: var(--radius-xl); padding: 70px 50px; text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 0 80px rgba(207,163,59,0.12), inset 0 0 40px rgba(207,163,59,0.04);
}
.cta-wrapper h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.cta-wrapper p { color: rgba(255,255,255,0.5); font-size: 1.05rem; max-width: 550px; margin: 0 auto 28px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BLOG === */
.blog-featured-card {
    display: block; padding: 40px; background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.blog-featured-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(196,165,90,0.1); }
.blog-featured-content h2 {
    font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.blog-featured-content p { color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 16px; }
.blog-meta, .blog-meta-hero { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.blog-category {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gold); background: rgba(196,165,90,0.08); padding: 4px 12px; border-radius: 100px;
}
.blog-date { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.blog-read { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.blog-read-more { font-size: 0.88rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    display: flex; flex-direction: column; padding: 28px; background: var(--navy-3);
    border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition);
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(196,165,90,0.08); }
.blog-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
/* Newsletter */
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-input {
    flex: 1; padding: 14px 20px; border: 2px solid var(--navy-3); border-radius: 100px;
    background: var(--navy); color: var(--white); font-size: 0.95rem; outline: none;
}
.newsletter-input:focus { border-color: var(--navy-5); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }

/* === BLOG ARTICLE === */
.page-hero-compact { padding: 120px 0 50px; }
.blog-back-link {
    display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.88rem;
    font-weight: 500; margin-bottom: 20px;
}
.blog-back-link:hover { color: var(--gold-light); }
.blog-article { padding: 60px 0 90px; background: var(--navy-2); }
.article-wrapper { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.article-content { max-width: 100%; }
.article-lead { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 32px; }
.article-content h2 {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--gold-light); margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--border);
}
.article-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.article-content p { color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 18px; }
.article-content ul, .article-content ol {
    margin: 18px 0; padding-left: 24px; color: rgba(255,255,255,0.55); line-height: 1.9;
}
.article-content li { margin-bottom: 8px; }
.article-content li strong { color: var(--white); }
.article-cta {
    margin-top: 40px; padding: 32px; background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-align: center;
}
.article-cta h3 { font-family: var(--font-heading); color: var(--white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.article-cta-actions { display: flex; gap: 12px; justify-content: center; }
/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
    padding: 24px; background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--radius-md); margin-bottom: 20px;
}
.sidebar-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 14px; }
.sidebar-card label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.sidebar-card p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.sidebar-calc-input {
    width: 100%; padding: 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    background: var(--navy-2); color: var(--white); font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700; text-align: center; outline: none; margin-bottom: 12px;
    -moz-appearance: textfield;
}
.sidebar-calc-input::-webkit-outer-spin-button,
.sidebar-calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.sidebar-calc-input:focus { border-color: var(--gold); }
.sidebar-calc-result { text-align: center; padding: 14px; background: rgba(196,165,90,0.06); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; }
.sidebar-calc-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.sidebar-calc-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.sidebar-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,0.4); padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-links-group h4 { color: var(--gold); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links-group a { display: block; font-size: 0.88rem; margin-bottom: 10px; }
.footer-links-group a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { margin-top: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.2); max-width: 600px; margin-left: auto; margin-right: auto; }

/* === ANIMATIONS === */
[data-animate] { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .overview-grid, .two-col, .contact-grid, .calc-page-wrapper, .calc-preview-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .benefits-grid, .three-col { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-divider { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .article-wrapper { grid-template-columns: 1fr; }
    .article-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; inset: 0; background: rgba(5, 13, 26, 0.98);
        backdrop-filter: blur(20px); flex-direction: column; justify-content: center;
        gap: 24px; transform: translateX(100%); transition: var(--transition);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.3rem; color: var(--white); }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .benefits-grid, .three-col, .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-wrapper { padding: 50px 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-sidebar { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .article-cta-actions { flex-direction: column; align-items: center; }
    .merger-flow { flex-direction: column; }
    .merger-arrow { transform: rotate(90deg); }
    .contact-quick-stats { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .calc-input-large { font-size: 2.2rem; }
    .calc-result-value-large { font-size: 2.2rem; }
    .calc-card-full { padding: 28px; }
}
