/* --- CSS Reset & Variables --- */
:root {
    --color-bg-deep: #0a0a0a;
    --color-bg-top: #0f0f0f;
    --color-bg-mid: #141414;
    --color-bg-bottom: #1c1c1c;

    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-gold-dark: #b8962e;

    --color-text: #f9f9f9;
    --color-text-muted: #c0c0c0;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

p {
    max-width: 85ch;
}

/* --- Scroll Progress --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold-light));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
}

/* --- Background Layers --- */
.bg-gradient-base {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(to bottom, var(--color-bg-top), var(--color-bg-mid), var(--color-bg-bottom));
    z-index: -3;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
}

.bg-abstract {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50l10-10l10 10l-10 10z' fill='none' stroke='%23d4af37' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E") repeat;
    z-index: -1;
    pointer-events: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
}

.gold-text {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15), transparent 70%);
    z-index: -1;
    filter: blur(10px);
}

.gradient-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    background-size: 200% 100%;
    margin-bottom: 2.5rem;
    border-radius: 2px;
    animation: gradientShift 3s ease infinite alternate;
}

.gradient-separator.center {
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    background-size: 200% 100%;
}

@keyframes gradientShift {
    0% {
        background-position: left bottom;
    }

    100% {
        background-position: right bottom;
    }
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

/* --- Layout --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
    position: relative;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

/* --- Glassmorphism --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    transform: translateZ(0);
    /* Hardware acceleration */
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.gradient-border {
    position: relative;
    background: linear-gradient(var(--color-bg-mid), var(--color-bg-mid)) padding-box,
        linear-gradient(135deg, var(--color-gold), transparent) border-box;
    border: 1px solid transparent;
}

/* --- Header & Mobile Menu --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding var(--transition-base), background var(--transition-base), backdrop-filter var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Hamburger */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-base);
    transform-origin: left center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Off Canvas Menu */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-mid);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    transform: translateX(-300px);
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-phone {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
}

.mobile-menu-link:hover {
    color: var(--color-gold);
}


/* --- Buttons & Interactions --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    pointer-events: none;
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    background-size: 200% auto;
    color: #111;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-block {
    width: 100%;
}

/* --- Animations --- */
.pulse-glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.highlight-underline {
    position: relative;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-gold);
    opacity: 0.3;
    z-index: -1;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 8rem;
}

.hero-glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.main-heading {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-price-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    margin-bottom: 1.5rem;
    border-color: rgba(212, 175, 55, 0.3);
}

.price-value {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #dcdcdc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.hero-trust-badges i {
    color: var(--color-gold);
    margin-right: 4px;
}

.urgency-bar {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    color: #ff6b6b;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.urgency-bar i {
    margin-right: 5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- SVG Dividers --- */
.divider-wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.divider-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.divider-wave .shape-fill {
    fill: rgba(255, 255, 255, 0.02);
}

.divider-wave.flip {
    transform: rotate(180deg);
}

/* --- Scarcity Block --- */
.scarcity-block {
    padding: 1rem 0 2rem;
}

.scarcity-card {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.scarcity-quote {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.scarcity-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.scarcity-card p {
    font-size: 1.1rem;
    margin: 0 auto;
    color: var(--color-text-muted);
}


/* --- Highlights Section --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.highlight-card {
    padding: 3rem 2rem;
    text-align: center;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-gold);
    transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.highlight-card:hover .icon-wrap {
    background: var(--color-gold);
    color: #111;
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
}

/* --- Value Section --- */
.value-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.value-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.val-card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.val-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
}

/* --- Revenue Timeline Section --- */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 22%;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    background: var(--color-bg-mid);
    border: 2px solid var(--color-gold);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- Use Cases Section --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.use-case-item {
    padding: 2.5rem 2rem;
    text-align: center;
}

.uc-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base), text-shadow var(--transition-base);
}

.use-case-item:hover .uc-icon {
    transform: translateY(-5px);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* --- SEO Advantage Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    padding: 3.5rem 2rem;
}

.stat-number {
    display: inline-block;
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-left: 5px;
}

/* --- Pricing Section --- */
.pricing {
    padding: 1rem 0;
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.price-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.negotiable-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    width: 40px;
    text-align: center;
}

.form {
    padding: 3.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-trust-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.form-trust-labels i {
    color: #28a745;
    margin-right: 4px;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    color: #4CAF50;
}

.form-message.error {
    color: #ff6b6b;
}

.btn-loader {
    margin-left: 10px;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-deep);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 998;
    /* Below mobile menu */
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-mid);
    z-index: 997;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    font-size: 0.85rem;
    color: white !important;
    text-transform: uppercase;
    font-weight: 600;
}

.sticky-action i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bg-dark {
    background: #1a1a1a;
}

.bg-whatsapp {
    background: #25d366;
}

.bg-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #111 !important;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    section {
        padding: 5rem 0;
    }

    .main-heading {
        font-size: 3.5rem;
    }

    .value-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline::before {
        top: 0;
        left: 40px;
        width: 2px;
        height: 100%;
    }

    .timeline-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: left;
    }

    .timeline-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .form {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Performance tweaks for mobile */
    .glass-card,
    .mobile-menu-backdrop,
    .header.scrolled {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
        /* Above sticky CTA */
    }
}

@media (max-width: 480px) {
    .mobile-only-btn {
        display: none;
        /* Hide top enquire button on very small screens to save space */
    }
}