/* ============================================
   inVINCEable Peps — Base Styles
   All colors use CSS custom properties from theme files
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family:
        'DM Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-1-hover);
}

ul {
    list-style: none;
}

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

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--text-heading);
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--btn-primary-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--btn-shadow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.btn-ghost:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-1);
    border-color: var(--accent-1);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: var(--accent-1);
    color: var(--btn-primary-text);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    background: var(--header-bg);
}

.site-header.scrolled {
    padding: 0;
    background: var(--header-bg-solid);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.logo-link {
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo-img {
    height: 60px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--nav-link);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nav-link-hover);
    background: var(--nav-link-hover-bg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-2);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text) !important;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-1px);
}

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

/* Theme Switcher */
.theme-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0.5rem;
}

.theme-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background: none;
}

.theme-dot--patriotic {
    background: #c41e3a;
}

.theme-dot--premium {
    background: #c9a84c;
}

.theme-dot--clean {
    background: #f5f6fa;
}

.theme-dot.active {
    border-color: var(--accent-2);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent-2);
}

.theme-dot:hover {
    transform: scale(1.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nav-link);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: var(--hero-pattern);
    opacity: var(--hero-pattern-opacity, 0.05);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.text-accent {
    color: var(--accent-2);
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-mascot-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--mascot-glow);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-mascot {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ---------- Benefits Grid ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--accent-2);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    background: var(--icon-bg);
    color: var(--accent-2);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.benefit-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- Steps ---------- */
.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent-2);
    line-height: 1;
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    opacity: 0.9;
}

.step-content {
    flex: 1;
    padding-bottom: 0.5rem;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.step-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.step-connector {
    width: 2px;
    height: 40px;
    margin-left: 31px;
    background: var(--accent-2);
    opacity: 0.3;
}

/* ---------- Products Grid ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--accent-2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: var(--badge-bg);
    color: var(--badge-text);
}

.product-name {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--text-heading);
}

.product-category {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-2);
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-benefits {
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-benefits li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.product-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
}

.product-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-price strong {
    font-size: 1.25rem;
    color: var(--accent-2);
    font-weight: 700;
}

.btn-product {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 8px;
    gap: 0.5rem;
}

.btn-product svg {
    transition: transform 0.2s ease;
}

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

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.testimonial-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.03);
}

.testimonial-label {
    position: absolute;
    top: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
}

.testimonial-label--before {
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.testimonial-label--after {
    right: 0.75rem;
    background: var(--accent-1);
}

.testimonial-quote {
    padding: 1.5rem;
}

.testimonial-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.testimonial-cite {
    font-size: 0.875rem;
    font-weight: 600;
    font-style: normal;
    color: var(--accent-2);
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ---------- Story Section ---------- */
.section-story {
    text-align: center;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 1.5rem;
}

/* ---------- Contact Form ---------- */
.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3rem;
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: var(--input-focus-border);
    box-shadow: 0 0 0 3px var(--input-focus-shadow);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio & Checkbox custom styles */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--input-border);
    background: var(--input-bg);
    transition: all 0.2s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--accent-2);
}

.radio-label input,
.checkbox-label input {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--input-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input:checked ~ .radio-custom {
    border-color: var(--accent-2);
    background: var(--accent-2);
    box-shadow: inset 0 0 0 3px var(--input-bg);
}

.checkbox-label input:checked ~ .checkbox-custom {
    border-color: var(--accent-2);
    background: var(--accent-2);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--btn-primary-text, #fff);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.radio-label input:checked + .radio-custom + *,
.checkbox-label input:checked + .checkbox-custom + * {
    font-weight: 500;
}

.radio-label:has(input:checked),
.checkbox-label:has(input:checked) {
    border-color: var(--accent-2);
    background: var(--input-checked-bg);
}

/* Submit button */
.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-loading {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    color: var(--accent-2);
    margin-bottom: 1.5rem;
}

.success-icon svg {
    margin: 0 auto;
}

.success-title {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

/* Form alt / Instagram link */
.form-alt {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.form-alt-divider {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    color: var(--accent-2);
}

.ig-link:hover {
    color: var(--accent-1);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 2rem;
    border-top: 3px solid var(--accent-2);
}

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

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin: 0 auto 0.75rem;
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--footer-text);
    opacity: 0.7;
}

.footer-social {
    margin-bottom: 2rem;
}

.footer-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--accent-2);
    transition: all 0.2s ease;
}

.footer-ig:hover {
    color: var(--accent-1-hover);
    transform: translateY(-1px);
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--footer-text);
    opacity: 0.5;
}

.footer-copy p {
    font-size: 0.8125rem;
    color: var(--footer-text);
    opacity: 0.4;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

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

/* Stagger children */
.benefits-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}
.benefits-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}
.benefits-grid .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.products-grid .reveal:nth-child(2) {
    transition-delay: 0.05s;
}
.products-grid .reveal:nth-child(3) {
    transition-delay: 0.1s;
}
.products-grid .reveal:nth-child(4) {
    transition-delay: 0.15s;
}
.products-grid .reveal:nth-child(5) {
    transition-delay: 0.2s;
}
.products-grid .reveal:nth-child(6) {
    transition-delay: 0.25s;
}
.products-grid .reveal:nth-child(7) {
    transition-delay: 0.3s;
}

.testimonials-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}
.testimonials-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}
.testimonials-grid .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    /* Mobile Nav */
    .hamburger {
        display: flex;
        order: 3;
    }

    .theme-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .header-inner {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        justify-content: flex-start;
        background: var(--mobile-nav-bg, var(--header-bg-solid));
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 12px 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0.125rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        display: block;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-mascot-wrap {
        max-width: 250px;
        margin: 0 auto;
    }

    /* Grids */
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Steps */
    .step {
        gap: 1rem;
    }

    .step-number {
        font-size: 2.25rem;
        width: 48px;
    }

    .step-connector {
        margin-left: 23px;
    }

    /* Form */
    .form-wrapper {
        padding: 2rem 1.25rem;
    }

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

    .radio-group,
    .checkbox-group {
        flex-direction: column;
    }
}
