:root {
    --primary: #0D7377;
    --primary-dark: #085559;
    --accent: #14FFEC;
    --accent-glow: rgba(20, 255, 236, 0.4);
    --dark: #212121;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --ring: 0 0 0 4px rgba(20, 255, 236, 0.35);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: contain;
    font-synthesis-weight: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--dark);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-160%);
    z-index: 2000;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
    box-shadow: var(--shadow), var(--ring);
}

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

section,
header {
    scroll-margin-top: 90px;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 0;
    touch-action: manipulation;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(13, 115, 119, 0.1);
}

.btn:focus-visible,
.menu-button:focus-visible,
.drawer-close:focus-visible,
.slider-handle:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 100%;
    margin-top: 20px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: 10px;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding-top: env(safe-area-inset-top);
    padding-bottom: 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 16px;
}

.portal-header .site-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.portal-bottom-nav .bottom-nav-item span {
    font-size: 0.74rem;
}

/* Portal jobs list layout */
.jobs-list .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

@media (max-width: 768px) {
    .portal-hide-mobile {
        display: none !important;
    }

    .portal-header .site-header-inner {
        min-height: 62px;
        gap: 10px;
    }

    .portal-header .site-actions {
        gap: 8px;
    }

    .job-card {
        padding: 22px 18px;
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}

.site-links a:hover {
    background: rgba(13, 115, 119, 0.07);
    color: var(--primary);
}

.site-links a[aria-current="page"] {
    background: rgba(13, 115, 119, 0.09);
    color: var(--primary);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1100px) {
    .action-link {
        padding: 9px 10px;
        gap: 8px;
        font-size: 0.9rem;
    }
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.action-link i {
    color: var(--primary);
    font-size: 0.95rem;
}

.action-text {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.action-icon {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary);
    align-items: center;
    justify-content: center;
}

.action-icon i {
    font-size: 1rem;
}

.action-link:hover,
.action-icon:hover {
    background: rgba(13, 115, 119, 0.06);
    border-color: rgba(13, 115, 119, 0.28);
}

.action-link:focus-visible,
.action-icon:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    touch-action: manipulation;
}

.menu-icon {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    position: relative;
    margin: 0 auto;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    top: 6px;
}

body.menu-open .menu-icon {
    background: transparent;
}

body.menu-open .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

body.menu-open .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 950;
}

.menu-overlay.is-active {
    opacity: 1;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 360px);
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 960;
    display: flex;
    flex-direction: column;
    padding: calc(16px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
    gap: 14px;
}

.menu-drawer.is-open {
    transform: translateX(0);
}

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

.drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    touch-action: manipulation;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px;
}

.drawer-nav a {
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--dark);
}

.drawer-nav a:hover {
    background: rgba(13, 115, 119, 0.07);
    color: var(--primary);
}

.drawer-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

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

body.menu-open {
    overflow: hidden;
}

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

    .action-link {
        display: none;
    }

    .action-icon {
        display: inline-flex;
    }

    .site-actions .btn.btn-primary {
        display: none;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(20, 255, 236, 0.1), transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13, 115, 119, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stat-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.badge i {
    color: var(--accent);
    background: var(--primary);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Before/After Slider */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
}

.view-toggle-container {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6px;
    border-radius: 999px;
    z-index: 20;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.view-toggle-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
}

.view-toggle-btn.is-active {
    background: var(--primary);
    color: var(--white);
}

.view-toggle-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Important to align contents */
}

/* The 'before' image sits on top, and its width is clipped */
.image-wrapper.before {
    width: 50%;
    /* Initial state */
    z-index: 2;
    border-right: 2px solid var(--white);
}

.image-wrapper.after {
    z-index: 1;
}

.label {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.before .label {
    right: 20px;
}

.after .label {
    left: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    /* Matches initial before width */
    width: 40px;
    margin-left: -20px;
    /* Center the handle */
    z-index: 10;
    cursor: col-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    touch-action: none;
}

.handle-line {
    width: 2px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-circle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* Problem Section */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 115, 119, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box.warning {
    background: rgba(255, 99, 71, 0.1);
    color: tomato;
}

.icon-box.success {
    background: rgba(20, 255, 236, 0.1);
    color: var(--primary);
}

.icon-box svg,
.icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* Founders Card Special Styling */
.founders-card {
    border: 2px solid #D4AF37;
    /* Gold border */
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 60px !important;
    /* Ensure badge doesn't overlap title */
}

.founders-card .card-header {
    margin-top: 30px !important;
}

.founders-card .popular-badge {
    background: #D4AF37;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 999px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.founders-card .btn-primary {
    background: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.founders-card .btn-primary:hover {
    background: #C5A028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Solution card (Dark) - Use a white badge style for the icon */
.solution-card .icon-box {
    background: rgba(255, 255, 255, 1);
    /* Fully white background */
    color: var(--accent);
    padding: 10px;
    /* Padding to frame the icon */
    border-radius: 20px;
    /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.solution-card {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light);
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.step-item.reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(13, 115, 119, 0.1);
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 columns on large screens */
    gap: 20px;
    /* Slightly tighter gap to fit */
    align-items: stretch;
    /* Stretch cards to equal height */
}

.price-card {
    padding: 30px 20px;
    /* Slightly reduced padding */
    border-radius: 20px;
    border: 1px solid #eee;
    background: var(--white);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 40px rgba(13, 115, 119, 0.15);
    background: radial-gradient(circle at top, rgba(20, 255, 236, 0.05), transparent 70%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 10px;
}

.price span {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Take remaining space */
}

.card-body ul {
    text-align: left;
    margin: 20px 0;
    flex: 1;
    /* Push button to bottom */
}

.card-body li {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.card-body li i {
    color: var(--accent);
    /* actually use primary or accent? */
    color: var(--primary);
    margin-right: 10px;
}

.price-card.featured .btn-primary {
    width: 100%;
}

.btn-outline,
.btn-primary {
    width: 100%;
    margin-top: auto;
    /* Ensure button is at the bottom */
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on medium screens */
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
}

/* Details Section */
.details-section {
    padding: 100px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.service-area h3,
.faq-list h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.area-list {
    margin-bottom: 30px;
}

.area-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.area-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.map-embed {
    width: 100%;
    height: 300px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

details {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    list-style: none;
    /* remove default arrow */
    position: relative;
    padding-right: 30px;
    touch-action: manipulation;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: 700;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 15px;
    color: #666;
}

.faq-plans {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: #666;
}

.faq-plans li {
    margin-bottom: 8px;
}

/* Booking */
.booking-section {
    padding: 120px 0 70px;
    min-height: calc(100vh - 200px);
    background: radial-gradient(circle at top right, rgba(20, 255, 236, 0.12), transparent 45%);
}

.booking-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    border: 1px solid rgba(13, 115, 119, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
}

.booking-body {
    padding: 26px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.35s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.progress-step {
    font-weight: 700;
    color: #b7b7b7;
    font-size: 0.9rem;
}

.progress-step.active {
    color: var(--primary);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 10px;
    max-width: 46px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-line .fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--primary);
    transition: width 0.35s ease;
}

.progress-line.active .fill {
    width: 100%;
}

.step-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: center;
}

.visual-column {
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

.visual-bin-container {
    width: 100%;
    height: 100%;
}

.controls-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.config-group {
    margin-bottom: 18px;
}

.config-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

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

.bin-counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.counter-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn i {
    color: inherit;
}

.counter-btn:hover {
    border-color: rgba(13, 115, 119, 0.35);
    background: rgba(13, 115, 119, 0.06);
}

.counter-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

.counter-btn.counter-btn--minus {
    background: rgba(0, 0, 0, 0.04);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.14);
}

.counter-btn.counter-btn--minus:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.18);
}

.counter-btn.counter-btn--plus {
    background: var(--primary);
    color: var(--white);
    border-color: rgba(13, 115, 119, 0.45);
}

.counter-btn.counter-btn--plus:hover {
    background: var(--primary-dark);
    border-color: rgba(13, 115, 119, 0.55);
}

.counter-btn:active {
    transform: scale(0.98);
}

.bin-count-display {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    min-width: 62px;
    text-align: center;
}

.bin-range {
    margin-top: 12px;
}

.bin-range input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.bin-range-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.85rem;
    margin-top: 6px;
}

.flow-hint {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    text-align: center;
}

.plan-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.plan-tab {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 800;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.75);
}

.plan-tab small {
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    display: block;
    margin-top: 6px;
}

.plan-tab:hover,
.plan-tab.active {
    border-color: rgba(13, 115, 119, 0.55);
    background: rgba(13, 115, 119, 0.06);
    color: var(--primary);
}

.order-summary {
    background: rgba(13, 115, 119, 0.05);
    padding: 18px;
    border-radius: 16px;
    margin-top: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.summary-row.total {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 14px;
    margin-top: 14px;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 16px 18px;
    background: var(--primary);
    color: white;
    border: 0;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    padding: 10px 4px 4px;
    display: block;
    width: 100%;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: var(--dark);
}

.booking-subtitle {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.4rem;
}

.order-recap {
    background: linear-gradient(135deg, var(--primary) 0%, #0a5c5f 100%);
    color: white;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.order-recap-label {
    opacity: 0.85;
    font-size: 0.9rem;
}

.order-recap-title {
    font-weight: 900;
    font-size: 1.15rem;
}

.order-recap-total {
    font-size: 1.6rem;
    font-weight: 900;
    white-space: nowrap;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #555;
}

/* Floating Label Styles */
.form-group.floating label {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 1rem;
    color: #888;
    transition: 0.2s ease all;
    background: transparent;
    padding: 0 4px;
    font-weight: 500;
    pointer-events: none;
    margin: 0;
}

.form-group.floating input:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating textarea:focus+label,
.form-group.floating textarea:not(:placeholder-shown)+label,
.form-group.floating select:focus+label,
.form-group.floating select:valid+label {
    top: -9px;
    left: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: white;
    z-index: 2;
}

.form-group.floating input[type="date"]+label {
    top: -9px;
    left: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: white;
    z-index: 2;
}

/* Day Selector Chips */
.day-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.day-chip {
    flex: 1;
    min-width: 42px;
    cursor: pointer;
    text-align: center;
}

.day-chip input {
    display: none;
}

.day-chip span {
    display: block;
    padding: 10px 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    transition: var(--transition);
}

.day-chip:hover span {
    border-color: var(--primary);
    color: var(--primary);
}

.day-chip input:checked+span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(13, 115, 119, 0.2);
    transform: translateY(-1px);
}

.field-help {
    margin-top: 6px;
    color: #888;
    font-size: 0.85rem;
}

.booking-pickup-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.booking-start-after-help {
    margin-top: 2px;
}

.date-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.date-option {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: var(--transition);
}

.date-option input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.date-option .date-sub {
    display: block;
    color: #666;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.date-option:hover {
    border-color: rgba(13, 115, 119, 0.35);
    background: rgba(13, 115, 119, 0.06);
}

.date-option.is-selected {
    border-color: rgba(13, 115, 119, 0.55);
    background: rgba(13, 115, 119, 0.08);
}

.form-input {
    padding: 12px 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    box-shadow: var(--ring);
    border-color: rgba(13, 115, 119, 0.55);
}

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

.booking-success-btn {
    margin-top: 22px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 800;
    color: #555;
    line-height: 1.35;
}

.checkbox-row input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 12px;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 110px 0 60px;
    }

    .booking-body {
        padding: 18px;
    }

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

    .visual-column {
        height: 240px;
    }

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

    .form-group.full-width {
        grid-column: auto;
    }

    .date-options {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(20, 255, 236, 0.1), transparent 45%);
}

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

.contact-copy h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 14px;
}

.contact-actions .btn i {
    margin-right: 10px;
}

.contact-note {
    color: #666;
}

.contact-form {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(13, 115, 119, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 14px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.form-disclaimer {
    color: #666;
    font-size: 0.9rem;
    margin-top: -6px;
}

.form-status {
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
    color: #333;
}

.form-status.is-pending {
    border-color: rgba(13, 115, 119, 0.25);
    background: rgba(20, 255, 236, 0.12);
}

.form-status.is-success {
    border-color: rgba(46, 125, 50, 0.35);
    background: rgba(46, 125, 50, 0.10);
    color: #1b5e20;
}

.form-status.is-error {
    border-color: rgba(198, 40, 40, 0.35);
    background: rgba(198, 40, 40, 0.10);
    color: #7f1d1d;
}

/* Legal / simple pages */
.legal-section {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(20, 255, 236, 0.12), transparent 45%);
}

.legal-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    border: 1px solid rgba(13, 115, 119, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 28px;
    max-width: 980px;
}

.legal-card h1 {
    color: var(--primary);
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.legal-card h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 18px;
    margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
    color: #555;
}

.legal-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.legal-updated {
    color: #666;
    font-weight: 700;
    margin-bottom: 18px;
}

.legal-actions {
    margin-top: 18px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright-inner p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.made-in {
    font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        max-width: none;
    }

    .hero-visual {
        height: 350px;
    }

    .stat-badges {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 26px;
    }

    .step-item,
    .step-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

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

/* Bottom nav (mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 940;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 14px;
    font-weight: 900;
    color: var(--dark);
    touch-action: manipulation;
}

.bottom-nav-item i {
    color: var(--primary);
    font-size: 1.05rem;
}

.bottom-nav-item span {
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

.bottom-nav-item:hover {
    background: rgba(13, 115, 119, 0.07);
}

.bottom-nav-item[aria-current="page"] {
    background: rgba(13, 115, 119, 0.09);
    color: var(--primary);
}

/* --- Mobile App Feel Enhancements --- */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        gap: 8px;
    }

    body.has-bottom-nav {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    body.booking-page footer {
        display: none;
    }

    /* Sticky Action Bar for Wizard */
    .submit-btn {
        position: fixed;
        bottom: calc(20px + env(safe-area-inset-bottom));
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        margin: 0;
        z-index: 900;
        box-shadow: 0 4px 25px rgba(13, 115, 119, 0.4);
        border-radius: 16px;
        touch-action: manipulation;
    }

    body.has-bottom-nav .submit-btn {
        bottom: calc(20px + 76px + env(safe-area-inset-bottom));
    }

    /* Ensure content isn't hidden behind fixed button */
    .wizard-step {
        padding-bottom: calc(110px + env(safe-area-inset-bottom));
    }

    body.has-bottom-nav .wizard-step {
        padding-bottom: calc(110px + 76px + env(safe-area-inset-bottom));
    }

    .booking-back-btn {
        position: fixed;
        left: 20px;
        bottom: calc(20px + 76px + env(safe-area-inset-bottom) + 62px);
        width: auto;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        text-decoration: none;
        z-index: 901;
    }

    /* Inputs: Font size 16px prevents iOS zoom */
    input,
    select,
    textarea,
    .form-input {
        font-size: 16px !important;
    }

    /* Larger Touch Targets */
    .plan-tab {
        padding: 16px 10px;
        touch-action: manipulation;
    }

    .counter-btn {
        width: 48px;
        height: 48px;
        touch-action: manipulation;
    }

    /* Compact Visuals to save vertical space */
    .visual-column {
        height: 220px;
    }

    /* Adjust padding for wrapper */
    .booking-section {
        padding-bottom: 40px;
    }

    /* General mobile spacing + typography */
    .card {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .cards-grid {
        gap: 18px;
    }

    .hero-btns .btn {
        flex: 1 1 160px;
    }

    .site-header-inner {
        min-height: 62px;
        gap: 10px;
    }

    .brand-name {
        font-size: 1.45rem;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-visual {
        height: 320px;
    }

    .section-header h2 {
        font-size: 2.05rem;
    }

    .bottom-nav {
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    }

    .bottom-nav-item {
        padding: 10px 6px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .card {
        padding: 22px 16px;
        border-radius: 16px;
    }
}

/* Booking: no-scroll-needed mobile layout (compact) */
@media (max-width: 768px) {

    .booking-section .section-header,
    .flow-hint,
    .field-help {
        display: none;
    }

    .booking-section {
        padding: 100px 0 40px;
    }

    .booking-card {
        border-radius: 18px;
    }

    .wizard-progress {
        padding: 12px 16px;
    }

    .booking-body {
        padding: 14px;
    }

    .booking-section details {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0;
    }

    .booking-section summary {
        font-size: 1rem;
        padding: 10px 0;
    }

    .visual-column {
        height: 160px;
    }

    .bin-count-display {
        font-size: 2.2rem;
        min-width: 54px;
    }

    .config-label {
        margin-bottom: 8px;
    }

    .config-group {
        margin-bottom: 14px;
    }

    .plan-tabs {
        gap: 10px;
    }

    .plan-tab {
        padding: 12px 10px;
    }

    .order-recap {
        padding: 12px 14px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .order-recap-total {
        font-size: 1.35rem;
    }

    .booking-subtitle {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .form-group.full-width {
        grid-column: span 2;
    }

    .form-input {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .day-selector {
        gap: 6px;
    }

    .day-chip span {
        padding: 9px 2px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    .checkbox-row {
        gap: 10px;
        font-weight: 800;
    }

    .checkbox-row input {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 420px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }
}
