/* Sensory Editorial Minimalism Tokens */
:root {
    /* Colors sourced directly from LOGO.jpeg */
    --c-base: #f7f7f7;
    --c-text: #1a1a1a;
    --c-mint-primary: #8cddca;
    --c-mint-light: #94dad2;
    --c-lavender-primary: #c2acf5;
    --c-lavender-light: #c3adf5;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Epilogue', sans-serif;

    /* Structure */
    --z-background: -2;
    --z-noise: -1;
    --z-content: 10;
    --z-nav: 100;
}

/* Base Reset & Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.editorial-theme {
    font-family: var(--font-body);
    background-color: var(--c-base);
    color: var(--c-text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

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

.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-background);
    background: radial-gradient(circle at 15% 50%, rgba(140, 221, 202, 0.15), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(194, 172, 245, 0.15), transparent 50%);
    filter: blur(60px);
    animation: slow-drift 20s ease-in-out infinite alternate;
}

@keyframes slow-drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, 3%);
    }
}

/* Minimalist Nav */
.nav-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5vw;
    z-index: var(--z-nav);
    color: var(--c-text);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

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

.btn-editorial {
    padding: 12px 24px;
    border: 1px solid currentColor;
    border-radius: 40px;
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-editorial:hover {
    background-color: var(--c-text);
    color: var(--c-base);
}

/* Asymmetrical Hero */
.hero-editorial {
    min-height: 100vh;
    padding: 180px 5vw 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: var(--z-content);
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8vw;
    align-items: center;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-kicker {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-mint-primary);
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-description {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    max-width: 460px;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 48px;
    font-weight: 400;
}

.btn-editorial-solid {
    display: inline-flex;
    padding: 18px 40px;
    background-color: var(--c-text);
    color: var(--c-base);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 60px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

.btn-editorial-solid:hover {
    transform: scale(1.05);
    background-color: var(--c-mint-primary);
    color: var(--c-text);
}

/* Abstract Visual Element */
.hero-visual-abstract {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
}

.shape-mint {
    width: 60%;
    height: 60%;
    background-color: var(--c-mint-primary);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite alternate;
}

.shape-lavender {
    width: 70%;
    height: 70%;
    background-color: var(--c-lavender-primary);
    bottom: 0;
    left: 0;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* CSS Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    max-width: 80%;
    aspect-ratio: 9/19.5;
    background: #fff;
    border: 12px solid #1a1a1a;
    border-radius: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
}

.hero-visual-abstract:hover .phone-mockup {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 32px;
    /* Fits inside outer radius minus border width */
    display: block;
    background-color: #f8f9fa;
}

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

    100% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Animations */
.slide-up {
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

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

/* Staggered Editorial Features */
.editorial-features {
    padding: 120px 5vw;
    position: relative;
    z-index: var(--z-content);
}

.stagger-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
    margin-bottom: 250px;
    /* Extreme whitespace between sections */
    min-height: 60vh;
}

.section-reverse {
    direction: rtl;
    /* Easy way to flip the grid, reverse content inside */
}

.section-reverse>* {
    direction: ltr;
    /* Reset text direction inside */
}

.stagger-number {
    font-family: var(--font-display);
    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 800;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26, 26, 26, 0.15);
    margin-bottom: -40px;
    margin-left: -10px;
    user-select: none;
}

.stagger-text {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.stagger-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.stagger-desc {
    font-size: 1.15rem;
    color: rgba(26, 26, 26, 0.75);
    max-width: 420px;
}

/* Abstract Minimal Visuals */
.stagger-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.feature-asset {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Optional slight organic float to match the previous shapes feeling alive */
    animation: float-organic 8s ease-in-out infinite alternate;
}

.vision-text {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text);
    opacity: 0.5;
}

.stat-badge {
    position: absolute;
    top: 30px;
    left: 20px;
    background: var(--c-text);
    color: var(--c-base);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reveal Elements */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.delayed {
    transition-delay: 0.2s;
}

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

/* Editorial List Section (How It Works) */
.editorial-list-section {
    padding: 60px 5vw 120px;
    position: relative;
    z-index: var(--z-content);
}

.list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.list-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-align: center;
}

.editorial-list {
    border-top: 2px solid var(--c-text);
}

.list-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    align-items: center;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.list-row:hover {
    background-color: rgba(26, 26, 26, 0.03);
    padding-left: 20px;
}

.row-num {
    font-family: monospace;
    font-size: 1rem;
    color: var(--c-mint-primary);
    font-weight: 600;
}

.row-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.row-desc {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.5;
}

/* Magazine Spread Section */
.magazine-spread {
    padding: 120px 5vw;
    position: relative;
    z-index: var(--z-content);
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0.4) 90%, transparent);
    backdrop-filter: blur(10px);
}

.spread-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 180px;
}

.spread-kicker {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-lavender-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 24px;
}

.spread-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.spread-quote {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.quote-mark {
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--c-mint-primary);
    opacity: 0.3;
    line-height: 1;
}

.spread-quote p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-style: italic;
    color: var(--c-text);
    line-height: 1.4;
}

.spread-author {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.spread-author strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.spread-author span {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.95rem;
}

.magazine-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--c-mint-light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(105%) grayscale(10%);
    /* Subtle editorial grade */
}

.image-label {
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.magazine-caption {
    margin-top: 24px;
    padding-left: 40px;
    border-left: 1px solid var(--c-text);
}

.magazine-caption p {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.7);
}

/* Floating Testimonials */
.floating-testimonials {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    position: relative;
    padding: 60px 0;
}

.testimonial-float {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.testimonial-float:hover {
    transform: translateY(-8px) scale(1.02);
}

.t-stars {
    color: var(--c-mint-primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    display: block;
}

.t-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--c-text);
    font-weight: 500;
}

.t-author {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.5);
    font-weight: 700;
}

/* Asymmetrical grid placement */
.float-item-1 {
    grid-column: 2 / span 4;
}

.float-item-2 {
    grid-column: 8 / span 4;
    margin-top: 80px;
}

.float-item-3 {
    grid-column: 4 / span 5;
    grid-row: 2;
    margin-top: 40px;
}

/* Editorial FAQ Section */
.editorial-faq {
    padding: 120px 5vw;
    position: relative;
    z-index: var(--z-content);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.faq-list {
    border-top: 1px solid var(--c-text);
}

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

.faq-question {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--c-text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Minimal animated cross icon */
.faq-icon-cross {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon-cross::before,
.faq-icon-cross::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-cross::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.faq-icon-cross::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-icon-cross::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-cross::before {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 30px;
    font-size: 1.05rem;
    color: rgba(26, 26, 26, 0.8);
    max-width: 700px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary high value to allow animation */
}

/* Interactive Editorial Footer */
.footer-editorial {
    min-height: 80vh;
    padding: 120px 5vw 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: var(--z-content);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 60px;
}

/* Liquid Button CTA */
.footer-button-container {
    position: relative;
    display: inline-block;
}

.btn-massive-flow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 24px 60px;
    border: 1px solid var(--c-text);
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: var(--c-text);
    transition: color 0.4s ease;
}

.btn-massive-flow .btn-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-massive-flow .btn-liquid {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-text);
    border-radius: 50%;
    transform: scale(1.5) translateY(120%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn-massive-flow:hover {
    color: var(--c-base);
}

.btn-massive-flow:hover .btn-liquid {
    transform: scale(2) translateY(10%);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-top: 120px;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    padding-top: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.5);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--c-text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-text);
    transition: width 0.3s ease;
}

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

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.5);
}

.legal-links {
    margin-top: 8px;
    display: flex;
    gap: 16px;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
}

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

/* Contact Page Styles */
.contact-main {
    min-height: 100vh;
    padding: 160px 10vw 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: var(--z-content);
}

.contact-container {
    max-width: 600px;
    width: 100%;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--c-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.required-asterisk {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.08);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--c-text);
}

.form-select,
.form-textarea,
.form-input {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--c-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-select:focus,
.form-textarea:focus,
.form-input:focus {
    border-color: #a0c4ff;
    box-shadow: 0 0 0 3px rgba(160, 196, 255, 0.4);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

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

.form-hint {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.5);
    margin-top: 4px;
}

.form-submit-group {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-status {
    font-size: 0.95rem;
    font-weight: 500;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #d32f2f;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-actions {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual-abstract {
        aspect-ratio: 1/1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Navbar Fix */
    .nav-minimal {
        background: rgba(247, 247, 247, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 16px 5vw;
        border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    }

    /* 1. Global structural paddings */
    .contact-main {
        padding: 120px 5vw 60px;
    }

    .hero-editorial {
        padding: 120px 5vw 60px;
    }

    .editorial-features {
        padding: 80px 5vw;
    }

    .editorial-list-section {
        padding: 40px 5vw 80px;
    }

    .magazine-spread {
        padding: 80px 5vw;
    }

    .editorial-faq {
        padding: 80px 5vw;
    }

    .footer-editorial {
        padding: 80px 5vw 40px;
    }

    /* Typographies */
    .hero-title {
        font-size: 3.5rem;
    }

    .stagger-number {
        font-size: 5rem;
        margin-bottom: -20px;
    }

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

    .footer-title {
        font-size: 3rem;
    }

    /* 2. Hero Section */
    .hero-content {
        gap: 40px;
    }

    .phone-mockup {
        width: 220px;
        border-width: 8px;
        border-radius: 36px;
    }

    /* 3. Problem & Solution Sections */
    .stagger-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 120px;
    }

    /* Reverse the specific section correctly */
    .section-reverse {
        direction: ltr;
    }

    /* reset the flip */
    .section-reverse .stagger-content {
        display: contents;
    }

    /* ensure natural DOM order or explicitly reorder if needed */
    .section-reverse .stagger-visual {
        display: contents;
    }

    .feature-asset {
        max-height: 280px;
    }

    /* 4. The Science Grid */
    .list-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .row-num {
        margin-bottom: 8px;
        display: block;
    }

    .row-title {
        font-size: 1.3rem;
    }

    /* 5. Magazine Spread */
    .spread-container {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    .spread-quote p {
        font-size: 1.2rem;
    }

    /* Floating Testimonials */
    .floating-testimonials {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 20px 0;
    }

    .testimonial-float,
    .float-item-1,
    .float-item-2,
    .float-item-3 {
        margin-top: 0 !important;
        flex: none;
        max-width: 100%;
        padding: 30px;
    }

    .t-quote {
        font-size: 1.15rem;
    }

    /* 6. Footer Bottom */
    .footer-bottom {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin-top: 80px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        align-items: center;
    }
}