/* ═══════════════════════════════════════════════════════════════════
   Aidhunik Australia — aidhunik.com.au
   Premium cyberpunk-tech landing page with Aidhunik brand colors
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
    /* Brand colors — matching Aidhunik logo palette */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --emerald: #10b981;
    --amber: #f59e0b;

    /* Backgrounds */
    --bg-darker: #050510;
    --bg-dark: #0a0a1a;
    --bg-card: #111127;
    --bg-card-hover: #1a1a3e;
    --bg-elevated: #16163a;

    /* Text */
    --text: #f0f0f8;
    --text-muted: #8888aa;
    --text-dim: #555577;

    /* Borders */
    --border: #1e1e3e;
    --border-hover: #333366;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    --gradient-glow: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #06b6d4 100%);
    --gradient-card: linear-gradient(160deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.04) 100%);

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 8rem);
    --container-px: clamp(1rem, 4vw, 2rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ── Utility ────────────────────────────────────────────────────── */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ── Offer Banner ───────────────────────────────────────────────── */
.offer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: bannerShift 4s ease infinite;
    padding: 0.5rem 1rem;
}

@keyframes bannerShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.offer-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    flex-wrap: wrap;
}

.offer-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.offer-text { white-space: nowrap; }

.offer-slots {
    opacity: 0.9;
    font-weight: 400;
}

.offer-cta {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    font-weight: 700;
    transition: background 0.2s;
}

.offer-cta:hover { background: rgba(255,255,255,0.35); }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 2.25rem; /* below offer banner */
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(5, 5, 16, 0.95);
    border-bottom-color: var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-logo-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover { color: var(--text); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
    background: var(--gradient-brand) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover { opacity: 0.9; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.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); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: var(--gradient-brand);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-glow:hover::before { opacity: 0.5; }

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-glow-green::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(99,102,241,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 60%, rgba(236,72,153,0.06) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 50s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-line1 {
    display: block;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-line2 {
    display: block;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-check {
    color: var(--emerald);
    font-weight: 700;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

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

/* ── Highlight Strip / Marquee ──────────────────────────────────── */
.highlight-strip {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    background: linear-gradient(90deg, var(--bg-dark), rgba(99,102,241,0.05), var(--bg-dark));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0 2rem;
    white-space: nowrap;
}

.marquee-item.accent { color: var(--primary-light); }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Services ───────────────────────────────────────────────────── */
.services {
    padding: var(--section-py) 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s var(--ease-out);
    animation: fadeUp 0.6s var(--ease-out) calc(var(--delay)) both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.service-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* ── Plans ──────────────────────────────────────────────────────── */
.plans {
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
}

.offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.2);
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 2.5rem;
}

.offer-pill-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--accent);
    color: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.2);
}

.plan-recommended {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(99,102,241,0.12), rgba(139,92,246,0.06));
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.15);
}

.plan-recommended:hover {
    transform: scale(1.04) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    background: var(--gradient-brand);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.plan-header { margin-bottom: 1.5rem; }

.plan-delivery {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.plan-clock {
    width: 14px;
    height: 14px;
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.plan-pricing {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.plan-original {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.plan-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.plan-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.plan-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

.plan-savings {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
}

.feature-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--emerald);
    margin-top: 2px;
}

.plan-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ── Process ────────────────────────────────────────────────────── */
.process {
    padding: var(--section-py) 0;
    text-align: center;
}

.process-timeline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 340px;
    position: relative;
    text-align: left;
}

.process-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-connector {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.process-step:last-child .process-connector { display: none; }

.process-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.process-duration {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    padding: 0.2rem 0.6rem;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 4px;
    display: inline-block;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq {
    padding: var(--section-py) 0;
    text-align: center;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary-light); }

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-dim);
    transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact {
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-reminder {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(236, 72, 153, 0.06);
    border: 1px solid rgba(236, 72, 153, 0.12);
    display: inline-block;
}

.contact-reminder strong { color: var(--accent-light); }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

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

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--primary-light); }

.footer-abn {
    font-size: 0.7rem !important;
    margin-top: 0.25rem;
    color: var(--emerald) !important;
    opacity: 0.8;
}

/* ── Footer Creator Greeting ─────────────────────────────────────── */
.footer-creator {
    text-align: center;
}

.footer-creator a {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-creator a:hover { color: var(--primary-light); }

.footer-creator em {
    color: var(--secondary);
    font-style: italic;
}

/* ── Footer Compliance Links ─────────────────────────────────────── */
.footer-compliance {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.footer-compliance a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.72rem;
    transition: color 0.2s;
}

.footer-compliance a:hover { color: var(--primary-light); }

.footer-compliance span {
    color: var(--border-hover);
    font-size: 0.72rem;
}

/* ── AU Country Manager Contact ─────────────────────────────────── */
.au-manager-contact {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 1rem;
    background: rgba(6, 182, 212, 0.04);
}

.au-manager-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.au-manager-label strong {
    color: var(--cyan);
}

.au-manager-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-au {
    background: linear-gradient(135deg, #00a884, #128c7e);
    color: #fff;
    border: none;
}

.btn-whatsapp-au:hover {
    background: linear-gradient(135deg, #00c89b, #00a884);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 132, 0.3);
}

.btn-outline-au {
    color: var(--cyan);
    border-color: rgba(6, 182, 212, 0.4);
    background: transparent;
}

.btn-outline-au:hover {
    border-color: var(--cyan);
    background: rgba(6, 182, 212, 0.08);
    transform: translateY(-2px);
}

/* ── Scroll Reveal ──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .plan-recommended { transform: none; }
    .plan-recommended:hover { transform: translateY(-4px); }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 16, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .nav-hamburger { display: flex; }

    .nav-cta {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }

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

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        display: none;
    }

    .process-step { max-width: 100%; }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .offer-banner-inner {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .offer-slots { display: none; }

    .contact-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero { padding: 7rem 0 3rem; }
    .plan-amount { font-size: 2.5rem; }
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-content { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   Static Pages — About, Terms, Privacy, Refund, Disclaimer, Shipping
   Contact page — form and direct contact grid
   ═══════════════════════════════════════════════════════════════════ */

/* ── Static Page Wrapper ────────────────────────────────────────── */
.static-page {
    min-height: calc(100vh - 70px);
    padding: 4rem 0 6rem;
}

.static-page-inner {
    max-width: 860px;
}

.static-page-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.static-page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

.static-page-subtitle a {
    color: var(--primary-light);
    text-decoration: none;
}

.static-page-subtitle a:hover { text-decoration: underline; }

/* ── Info Sections (shared across all static pages) ─────────────── */
.info-section {
    margin-bottom: 2.5rem;
}

.info-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.info-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.info-section ul, .info-section ol {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.info-section li {
    margin-bottom: 0.35rem;
}

.info-section a {
    color: var(--primary-light);
    text-decoration: none;
}

.info-section a:hover { text-decoration: underline; }

.info-effective-date {
    font-size: 0.78rem !important;
    color: var(--text-dim) !important;
    margin-bottom: 1rem !important;
}

/* ── Info Table (Shipping & Delivery) ───────────────────────────── */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    font-size: 0.88rem;
}

.info-table th {
    background: var(--bg-elevated);
    color: var(--text);
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    text-align: left;
    border: 1px solid var(--border);
}

.info-table td {
    color: var(--text-muted);
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
}

.info-table tr:hover td {
    background: var(--bg-card);
}

/* ── Contact Page Grid ──────────────────────────────────────────── */
.contact-form-section {
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── Contact Form ───────────────────────────────────────────────── */
.contact-form-wrap h2,
.contact-info-wrap h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.contact-form-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group input::placeholder { color: var(--text-dim); }

/* Status message */
.cf-status {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cf-status--success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald);
}

.cf-status--error {
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.25);
    color: var(--accent-light);
}

/* Submit button */
.cf-submit-btn {
    margin-top: 0.25rem;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.cf-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cf-submit-btn:active { transform: translateY(0); }
.cf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Contact Info Cards ──────────────────────────────────────────── */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: border-color 0.2s;
}

.contact-info-card:hover { border-color: var(--border-hover); }

.contact-info-card--highlight {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.04);
}

.contact-info-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

a.contact-info-value:hover { color: var(--primary-light); }

.contact-info-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    margin-top: 0.2rem;
}

a.contact-info-sub:hover { color: var(--cyan); }

/* Index Contact Form overrides */
.index-contact-form-container {
    max-width: 600px;
    margin: 3.5rem auto 0;
    text-align: left;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.2);
}
.index-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.index-form-sub {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    .index-contact-form-container {
        padding: 1.5rem;
    }
}
