/* ==========================================================
   SAYA Rajnagar Extension - Modern Redesign
   ========================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0a1628;
    --primary-light: #12233d;
    --accent: #c9a04e;
    --accent-light: #e8c976;
    --accent-dark: #a8833a;
    --bg: #ffffff;
    --bg-white: #ffffff;
    --bg-section: #f5f3ee;
    --text: #1a1a2e;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --success: #10b981;
    --error: #ef4444;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-secondary); }

/* ---------- Section ---------- */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 16px 32px;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(201, 160, 78, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 160, 78, 0.4);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    font-size: 0.9rem;
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 16px 32px;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: padding 0.3s ease;
}
.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 12px 0;
}
.nav-overlay {
    display: none;
}
.navbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 3px;
    text-decoration: none;
}
.navbar.scrolled .logo {
    color: #0a1628 !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-link {
    color: #1a1a2e !important;
    font-weight: 500;
}
.navbar.scrolled .nav-link:hover {
    color: #c9a04e !important;
    background: rgba(201,160,78,0.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-phone:hover { color: var(--accent-light); }
.navbar.scrolled .nav-phone { color: #6b7280 !important; }
.navbar.scrolled .nav-phone:hover { color: #c9a04e !important; }
.nav-phone-icon { font-size: 0.9rem; }

.nav-cta { opacity: 1; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    margin-left: 4px;
}
.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar.scrolled .nav-hamburger span { background: #0a1628 !important; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(10,22,40,0.7)),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,160,78,0.3);
    color: var(--accent-light);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}
.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.05;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}
.hero-stat {
    text-align: center;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ---------- Features / Why Section ---------- */
.why-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(201,160,78,0.1), rgba(201,160,78,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- About Section ---------- */
.about-section {
    background: #f0ede6;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
}
.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.about-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,160,78,0.12), rgba(201,160,78,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.about-highlight span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}
.about-image-wrapper {
    position: relative;
}
.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 480px;
}
.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.about-image-badge {
    display: none;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 24px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.about-image-badge-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}
.about-image-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ---------- Pricing Table ---------- */
.pricing-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.table-wrap { overflow-x: auto; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table th {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 20px 28px;
    text-align: left;
}
.pricing-table td {
    padding: 20px 28px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg-section); }
.pricing-table .highlight-cell {
    font-weight: 600;
    color: var(--primary);
}
.table-footnote {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* ---------- Payment Plan ---------- */
.payment-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.payment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,78,0.08), transparent);
}
.payment-section .section-label { color: var(--accent-light); }
.payment-section .section-label::before,
.payment-section .section-label::after { background: var(--accent-light); }
.payment-section .section-title { color: #fff; }
.payment-section .section-subtitle { color: rgba(255,255,255,0.5); }

.payment-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
    padding: 0 40px;
}
.payment-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(201,160,78,0.25);
}
.payment-step {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 160px;
}
.payment-step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.payment-step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid rgba(201,160,78,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}
.payment-step:hover .payment-step-circle {
    background: rgba(201,160,78,0.15);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(201,160,78,0.3);
}
.payment-step-pct {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
}
.payment-step-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ---------- Special / USP Section ---------- */
.special-section {
    background: #f0ede6;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.usp-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.usp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: #fff;
}
.usp-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}
.usp-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.urgency-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.urgency-bar-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.urgency-bar-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

/* ---------- Final CTA ---------- */
.final-cta-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,78,0.06), transparent 70%);
}
.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,78,0.04), transparent 70%);
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}
.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.cta-content .section-label {
    color: var(--accent-light);
}
.cta-content .section-label::before,
.cta-content .section-label::after {
    background: var(--accent-light);
}
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.cta-call-btn {
    color: #fff !important;
    border-color: rgba(255,255,255,0.25) !important;
}
.cta-call-btn:hover {
    border-color: var(--accent) !important;
    color: var(--accent-light) !important;
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.cta-trust-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16,185,129,0.15);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.cta-map {
    max-width: 520px;
    margin: 0 auto;
}
.cta-map-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all var(--transition);
    text-decoration: none;
}
.cta-map-link:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,160,78,0.3);
}
.cta-map-pin {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,160,78,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cta-map-text {
    flex: 1;
}
.cta-map-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.cta-map-address {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}
.cta-map-arrow {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform var(--transition);
}
.cta-map-link:hover .cta-map-arrow {
    transform: translateX(4px);
}

/* ---------- Google Map ---------- */
.map-section {
    background: var(--bg-white);
}
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #060d18;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 3px;
}
.footer-tagline {
    font-size: 0.7rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.footer-about {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 320px;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--accent-light);
}
.footer-contact-list {
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-icon {
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-list a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-contact-list a:hover {
    color: var(--accent-light);
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 12px;
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
    line-height: 1.6;
}
.footer-copy {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

/* ---------- Sticky Mobile Call Bar ---------- */
.sticky-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* ---------- Modal ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease-out;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--bg-section);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.modal-close:hover {
    background: var(--border);
    color: var(--text);
}
.modal-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.modal-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
#leadForm label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 16px 0 6px;
    color: var(--text);
    letter-spacing: 0.02em;
}
#leadForm input,
#leadForm select,
#leadForm textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition);
    background: var(--bg-section);
}
#leadForm input:focus,
#leadForm select:focus,
#leadForm textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,160,78,0.1);
    background: #fff;
}
.btn-submit {
    width: 100%;
    margin-top: 24px;
}
.form-status {
    margin-top: 16px;
    font-size: 0.88rem;
    text-align: center;
    min-height: 1.2em;
    font-weight: 500;
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .payment-timeline { gap: 24px; }
    .payment-timeline::before { display: none; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 769px) {
    .nav-hamburger {
        display: none !important;
    }
    .nav-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .sticky-call-bar { display: block; }

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1001;
        pointer-events: none;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        color: var(--text);
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-link:hover { background: var(--bg-section); color: var(--primary); }
    .nav-hamburger { display: flex; z-index: 1002; }
    .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-phone-text { display: none; }
    .nav-phone-icon { font-size: 1.1rem; }
    .navbar.scrolled .nav-hamburger.active span { background: var(--primary); }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
    }

    .hero-content { padding: 140px 0 100px; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }

    .features-grid { grid-template-columns: 1fr; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-badge {
        bottom: 16px;
        right: 16px;
    }

    .payment-timeline {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 24px;
        margin-top: 20px;
    }
    .payment-timeline::before {
        display: none;
    }
    .payment-step {
        max-width: 200px;
    }
    .payment-step-num {
        top: -10px;
    }

    .usp-grid { grid-template-columns: 1fr; }

    .urgency-bar {
        flex-direction: column;
        gap: 12px;
    }

    .modal-box {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-about { max-width: 100%; }
    .site-footer { padding-bottom: 120px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .about-highlights { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.4rem; }
    .pricing-table th,
    .pricing-table td { padding: 14px 16px; font-size: 0.88rem; }
}
