/* ============================================
   MY FRIEND RANCH WEAR — STYLES
   Palette: Midnight Blue (#0B1D3A) + Mint (#1DB9A3)
   Fonts: Playfair Display + Inter
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --midnight: #0B1D3A;
    --midnight-light: #132D54;
    --midnight-dark: #060F1F;
    --mint: #1DB9A3;
    --mint-light: #2ED4BE;
    --mint-dark: #159180;
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-400: #94A3B8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --neutral-900: #0F172A;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.10);
    --shadow-lg: 0 8px 32px rgba(11, 29, 58, 0.14);
    --shadow-xl: 0 16px 48px rgba(11, 29, 58, 0.18);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--midnight);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 0.875rem;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--midnight);
    line-height: 1.2;
}
.logo-mark {
    color: var(--midnight);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-light { color: var(--white); }
.logo-light .logo-mark { color: var(--white); }

/* NAV */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width var(--transition);
}
.nav-links a:hover {
    color: var(--midnight);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--midnight);
    transition: var(--transition);
    transform-origin: center;
}
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--midnight);
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--mint);
    color: var(--white);
    border-color: var(--mint);
}
.btn-primary:hover {
    background: var(--mint-dark);
    border-color: var(--mint-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(29, 185, 163, 0.35);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--midnight);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--midnight);
    border-color: var(--neutral-300);
}
.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint-dark);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-dark);
    background: rgba(29, 185, 163, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--midnight);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--midnight);
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(11, 29, 58, 0.97) 0%, rgba(19, 45, 84, 0.92) 50%, rgba(11, 29, 58, 0.88) 100%),
        url('https://images.pexels.com/photos/5531013/pexels-photo-5531013.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(29, 185, 163, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(29, 185, 163, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
}

.hero-content { max-width: 540px; }

.hero-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-headline em {
    font-style: normal;
    color: var(--mint);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--neutral-300);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-400);
}
.trust-item svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    max-width: 520px;
}
.hero-img-stack {
    position: relative;
    min-height: 560px;
}
.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-img-main {
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-img-float {
    position: absolute;
    z-index: 3;
    border: 4px solid var(--midnight);
    box-shadow: var(--shadow-lg);
}
.hero-img-left {
    bottom: 60px;
    left: -40px;
    width: 260px;
    height: 180px;
}
.hero-img-right {
    top: 40px;
    right: -30px;
    width: 260px;
    height: 180px;
}
.hero-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: var(--white);
    color: var(--midnight);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.hero-badge svg { color: var(--mint); }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--neutral-500);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--neutral-500);
    animation: scrollLine 2s ease-in-out infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.2s; height: 28px; }
.hero-scroll span:nth-child(3) { animation-delay: 0.4s; height: 16px; }

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--neutral-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
    min-height: 480px;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-accent img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.about-stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--midnight);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mint);
    margin-bottom: 4px;
}
.about-stat .stat-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}
.about-content { max-width: 480px; }
.about-content p {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--neutral-700);
    line-height: 1.5;
}
.about-features svg {
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--white);
}
.products .section-header {
    margin-bottom: 56px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}
.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
    display: block;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.product-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 58, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.product-overlay span {
    background: var(--white);
    color: var(--midnight);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
}
.product-info {
    padding: 24px;
}
.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 8px;
}
.product-info p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}
.products-note {
    font-size: 0.9375rem;
    color: var(--neutral-500);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(29, 185, 163, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(29, 185, 163, 0.08) 0%, transparent 50%);
}
.why-us .container { position: relative; z-index: 1; }
.why-us .section-tag { color: var(--mint-light); background: rgba(29, 185, 163, 0.15); }
.why-us .section-title { color: var(--white); }
.why-us .why-intro {
    font-size: 1.0625rem;
    color: var(--neutral-400);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-content { max-width: 520px; }
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 185, 163, 0.3);
    transform: translateY(-2px);
}
.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(29, 185, 163, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}
.why-card p {
    font-size: 0.875rem;
    color: var(--neutral-400);
    line-height: 1.6;
}

.why-visual {
    position: relative;
    min-height: 560px;
}
.why-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.why-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}
.why-img-small {
    position: absolute;
    bottom: -24px;
    right: -20px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--midnight);
}
.why-img-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 100px 0;
    background: var(--neutral-50);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-info { max-width: 480px; }
.visit-desc {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 36px;
}
.visit-details {
    display: grid;
    gap: 24px;
}
.visit-detail {
    display: flex;
    gap: 16px;
}
.visit-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(29, 185, 163, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-dark);
    flex-shrink: 0;
}
.visit-detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--midnight);
    margin-bottom: 4px;
}
.visit-detail p,
.visit-detail a {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}
.visit-detail a:hover { color: var(--mint-dark); }

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.map-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
}
.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-content { max-width: 480px; }
.contact-desc {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 32px;
}
.contact-methods {
    display: grid;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
}
.contact-method:hover {
    border-color: var(--mint);
    background: rgba(29, 185, 163, 0.04);
    transform: translateX(4px);
}
.contact-method svg {
    color: var(--mint);
    flex-shrink: 0;
}
.contact-method span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}

/* FORM */
.contact-form-wrapper {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { display: grid; gap: 20px; }
.form-group { display: grid; gap: 8px; }
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--midnight);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(29, 185, 163, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    margin: 0 auto 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--midnight-dark);
    color: var(--neutral-400);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 12px;
}
.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--neutral-400);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--mint);
}
.footer-links svg,
.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .why-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual { max-width: 480px; }
    .hero-img-left { left: -16px; }
    .hero-img-right { right: -16px; }
    .why-cards { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-grid { gap: 40px; }
    .hero-visual { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 20px; }

    .products-grid { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .why-img-small { display: none; }

    .about-img-accent { display: none; }
    .about-stat { top: 16px; left: 16px; }

    .contact-form-wrapper { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .section-title { font-size: 1.625rem; }
}
