/* ============================================
   A Snack Attack — Style Guide
   Colors: Emerald Green (#10B981) + Cream (#F5F5DC)
   Fonts: Space Grotesk (headings) + Inter (body)
   ============================================ */

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

:root {
    --emerald: #10B981;
    --emerald-dark: #0D8455;
    --emerald-deeper: #076942;
    --cream: #F5F5DC;
    --cream-light: #FAFAF0;
    --cream-dark: #E8E8C8;
    --white: #FFFFFF;
    --dark: #1A2E23;
    --dark-soft: #2D4A38;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.08);
    --shadow-md: 0 8px 30px rgba(16, 185, 129, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

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

ul {
    list-style: none;
}

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

/* ---------- Background Blobs ---------- */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.blob--1 {
    width: 600px;
    height: 600px;
    background: var(--emerald);
    top: -200px;
    right: -100px;
}

.blob--2 {
    width: 400px;
    height: 400px;
    background: var(--cream-dark);
    bottom: 20%;
    left: -100px;
}

.blob--3 {
    width: 300px;
    height: 300px;
    background: var(--emerald);
    bottom: 40%;
    right: 10%;
}

.blob--4 {
    width: 200px;
    height: 200px;
    background: var(--emerald-dark);
    top: 50%;
    left: 30%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 220, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(245, 245, 220, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo--light .logo__text {
    color: var(--cream);
}

.logo__icon {
    display: flex;
    align-items: center;
}

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

.nav__list {
    display: flex;
    gap: 4px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--dark-soft);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.08);
}

.nav__cta {
    margin-left: 8px;
    padding: 10px 20px;
    background: var(--emerald);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--emerald-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 220, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--emerald);
}

.mobile-menu__cta {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--emerald);
    color: var(--white);
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--cream-dark);
}

.btn--ghost:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.05);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Section Helpers ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-dark);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--cream);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, #E8F5E9 100%);
    overflow: hidden;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero__shape {
    position: absolute;
    opacity: 0.6;
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent var(--emerald) transparent;
    top: 15%;
    right: 5%;
    transform: rotate(15deg);
}

.hero__shape--circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--emerald);
    border-radius: 50%;
    bottom: 18%;
    left: 3%;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.813rem;
    color: var(--emerald-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__headline span {
    color: var(--emerald);
}

.hero__subheadline {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-soft);
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-bg {
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: var(--emerald);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
}

.hero__image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero__float-card--1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}

.hero__float-card--2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

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

.float-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.float-card__icon--cream {
    background: var(--cream);
}

.float-card__label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.float-card__value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* ---------- About ---------- */
.about {
    position: relative;
    z-index: 1;
    background: var(--emerald-dark);
    padding: 100px 0;
}

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

.about__image-stack {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--emerald-dark);
}

.about__img-accent img {
    width: 240px;
    height: 200px;
    object-fit: cover;
}

.about__pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--emerald) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.4;
}

.about__content {
    padding: 20px 0;
}

.about__content .section-tag {
    background: rgba(245, 245, 220, 0.15);
    color: var(--cream);
}

.about__text {
    font-size: 1.063rem;
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 245, 220, 0.15);
}

.stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
}

.stat__label {
    font-size: 0.875rem;
    color: rgba(245, 245, 220, 0.6);
    margin-top: 4px;
}

.stat--divider {
    padding-left: 32px;
    border-left: 1px solid rgba(245, 245, 220, 0.15);
}

/* ---------- Products ---------- */
.products {
    position: relative;
    z-index: 1;
    background: var(--cream);
    padding: 100px 0;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-card--featured .product-card__image img {
    height: 100%;
    min-height: 300px;
}

.product-card__image {
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card__content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card__content--full {
    flex: 1;
    padding: 40px;
}

.product-card__title {
    font-size: 1.375rem;
}

.product-card__desc {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
}

.product-card--accent {
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.product-card--accent .product-card__title {
    color: var(--white);
}

.product-card--accent .product-card__desc {
    color: rgba(245, 245, 220, 0.85);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 220, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.product-card__geometric {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid rgba(245, 245, 220, 0.2);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.geo-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(245, 245, 220, 0.15);
    top: 20px;
    right: 40px;
    transform: rotate(45deg);
}

/* ---------- Why Us ---------- */
.why-us {
    position: relative;
    z-index: 1;
    background: var(--dark);
    padding: 100px 0;
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us__content .section-tag {
    background: rgba(245, 245, 220, 0.1);
    color: var(--cream);
}

.why-us__text {
    font-size: 1.063rem;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
}

.feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.063rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.feature__desc {
    font-size: 0.938rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.6;
}

.why-us__visual {
    position: relative;
}

.why-us__image-grid {
    display: grid;
    gap: 16px;
}

.grid-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-img--1 {
    height: 440px;
}

.grid-img--2 {
    height: 280px;
}

.grid-img--3 {
    height: 200px;
}

.grid-img:hover img {
    transform: scale(1.03);
}

/* ---------- Visit / Contact ---------- */
.visit {
    position: relative;
    z-index: 1;
    background: var(--cream);
    padding: 100px 0;
}

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

.visit__text {
    font-size: 1.063rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-card__label {
    font-size: 0.813rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card__value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}

/* Form */
.visit__form-wrapper {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-card__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card__subtitle {
    font-size: 0.938rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: var(--dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--gray-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.success-text {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---------- Map Section ---------- */
.map-section {
    position: relative;
    z-index: 1;
    background: var(--cream-dark);
}

.map-section__inner {
    border-radius: 0;
    overflow: hidden;
}

.map-section__inner iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--dark);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__tagline {
    font-size: 0.938rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.938rem;
    color: rgba(245, 245, 220, 0.6);
}

.footer__links a:hover {
    color: var(--emerald);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.938rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(245, 245, 220, 0.6);
}

.footer__contact a:hover {
    color: var(--emerald);
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer__bottom {
    border-top: 1px solid rgba(245, 245, 220, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.813rem;
    color: rgba(245, 245, 220, 0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .hero__image {
        height: 480px;
    }
    
    .about__grid,
    .why-us__inner,
    .visit__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav, .nav__cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__image {
        height: 360px;
    }
    
    .hero__float-card--1 {
        left: 10px;
        top: 10px;
    }
    
    .hero__float-card--2 {
        right: 10px;
        bottom: 10px;
    }
    
    .hero__shape {
        display: none;
    }
    
    .about__grid,
    .why-us__inner,
    .visit__grid {
        grid-template-columns: 1fr;
    }
    
    .about__img-accent {
        right: 10px;
        bottom: -20px;
    }
    
    .about__img-accent img {
        width: 180px;
        height: 150px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .product-card--featured .product-card__image img {
        min-height: 220px;
    }
    
    .visit__form-wrapper {
        position: static;
    }
    
    .form-card {
        padding: 28px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__trust {
        gap: 16px;
    }
    
    .about__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat--divider {
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__headline {
        font-size: 1.875rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero__float-card {
        padding: 10px 14px;
    }
    
    .float-card__icon {
        width: 32px;
        height: 32px;
    }
    
    .float-card__value {
        font-size: 0.875rem;
    }
}
