/* Base scaffolding, might look a lil messy but works great */
:root {
    --ink: #0f1724;
    --night: #0a0f18;
    --dawn: #f7f4ef;
    --ember: #ff805d;
    --amber: #ffb347;
    --mist: #c8d5e0;
    --charcoal: #1e2a3a;
    --accent: #28c7b7;
    --card: rgba(15, 23, 36, 0.8);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    margin: 0;
    color: var(--dawn);
    background: radial-gradient(circle at top, #111a2b 0%, #05070d 70%);
    line-height: 1.6;
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 7, 13, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.1rem;
    letter-spacing: 0.18rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dawn);
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--mist);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--amber);
}

.burger {
    display: none;
    background: none;
    border: 0;
    color: var(--dawn);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--mist);
    font-size: 1.05rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--amber), var(--ember));
    color: #1e1306;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dawn);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-visual {
    background: var(--card);
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.hero-visual img {
    border-radius: 1rem;
    margin-bottom: 1rem;
    object-fit: cover;
    min-height: 220px;
    background: #0d1523;
}

.stat-strip {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    flex: 1 1 140px;
}

.stat strong {
    font-size: 2rem;
    display: block;
    color: var(--amber);
}

section {
    padding: 4rem 1.5rem;
}

.section-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.section-lead {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-lead h2 {
    margin: 0 0 0.4rem;
    font-size: 2rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--card);
    border-radius: 1.2rem;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
    margin-top: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--mist);
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.showcase-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 2rem;
    background: rgba(12, 18, 30, 0.85);
}

.slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: #0d1523;
}

.slider-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--dawn);
    padding: 0.5rem 0.9rem;
    border-radius: 0.6rem;
    cursor: pointer;
}

.insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.insight {
    background: rgba(20, 32, 49, 0.9);
    padding: 1.5rem;
    border-radius: 1rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: rgba(9, 13, 24, 0.9);
    padding: 1.6rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

form {
    display: grid;
    gap: 1rem;
}

input,
textarea {
    width: 100%;
    padding: 0.85rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(3, 9, 18, 0.7);
    color: var(--dawn);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

footer {
    background: var(--night);
    padding: 3rem 1.5rem;
}

.footer-shell {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--mist);
}

.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: rgba(6, 9, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cookie-banner button {
    margin-left: auto;
}

.policy-page {
    background: rgba(5, 7, 13, 0.9);
    border-radius: 1.2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-hero {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background: #0d1523;
}

.policy-page h1 {
    margin-top: 0;
}

.policy-page h2,
.policy-page h3,
.policy-page h4 {
    color: var(--amber);
}

.thankyou {
    text-align: center;
    padding: 6rem 1.5rem;
}

.thankyou h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Tablet tweaks */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(5, 7, 13, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 3rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        width: 100vw;
        z-index: 1000;
        box-shadow: none;
        min-height: 100vh;
        justify-content: flex-start;
        gap: 1.25rem;
        text-align: center;
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .burger {
        display: block;
    }

    .showcase-slider {
        grid-template-columns: 1fr;
    }
}

/* Phone friendly adjustments */
@media (max-width: 600px) {
    .hero {
        padding-top: 4rem;
    }

    .cta-row {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    input,
    textarea {
        font-size: 1rem;
    }
}


