/* ============================================
   FUDE MART — Fresh & Airy Marketing Site
   Colors: Forest Green + Off-White
   ============================================ */

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

:root {
    --green-900: #1a3a28;
    --green-800: #2D5A3D;
    --green-700: #3d7a52;
    --green-600: #4A8B5E;
    --green-500: #5fa06e;
    --green-400: #7fb88e;
    --green-300: #a8d4b2;
    --green-200: #d0e8d8;
    --green-100: #e8f3ec;
    --green-50: #f4f9f5;
    
    --cream-900: #2c2824;
    --cream-800: #4a443c;
    --cream-700: #6b635a;
    --cream-600: #8a8078;
    --cream-500: #a89e94;
    --cream-400: #c4bab0;
    --cream-300: #ddd5cc;
    --cream-200: #ebe5de;
    --cream-100: #f5f2eb;
    --cream-50: #faf8f4;
    --cream-25: #fdfcfa;
    
    --white: #ffffff;
    --black: #0a0a0a;
    
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 4px rgba(45, 90, 61, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.1), 0 4px 12px rgba(45, 90, 61, 0.05);
    --shadow-xl: 0 24px 60px rgba(45, 90, 61, 0.12), 0 8px 20px rgba(45, 90, 61, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--cream-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: var(--transition);
}

.nav.scrolled .nav__inner {
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(45, 90, 61, 0.06);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--green-800);
}

.nav__logo-icon {
    color: var(--green-400);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-400);
    transition: var(--transition);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--white);
}

.nav.scrolled .nav__links a {
    color: var(--cream-700);
}

.nav.scrolled .nav__links a:hover {
    color: var(--green-700);
}

.nav.scrolled .nav__links a::after {
    background: var(--green-600);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem !important;
    transition: var(--transition) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

.nav.scrolled .nav__cta {
    background: var(--green-800);
    border-color: var(--green-800);
    color: var(--white) !important;
}

.nav.scrolled .nav__cta:hover {
    background: var(--green-700) !important;
}

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

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav.scrolled .nav__toggle span {
    background: var(--green-800);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--cream-800);
    padding: 12px 24px;
    transition: var(--transition);
}

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

.mobile-menu__cta {
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 28px;
    background: var(--green-800);
    color: var(--white) !important;
    border-radius: 100px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 40, 0.82) 0%,
        rgba(45, 90, 61, 0.65) 50%,
        rgba(74, 139, 94, 0.45) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero__accent {
    color: var(--green-300);
}

.hero__accent--alt {
    color: var(--green-200);
    font-style: italic;
    font-weight: 500;
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 139, 94, 0.3);
}

.btn--primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 139, 94, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* --- Trust Bar --- */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--cream-200);
    padding: 32px 0;
}

.trust__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream-700);
}

.trust__icon {
    color: var(--green-600);
    display: flex;
}

.trust__divider {
    width: 1px;
    height: 20px;
    background: var(--cream-300);
}

/* --- Section Shared --- */
.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    color: var(--green-900);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--cream-600);
    max-width: 520px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Products --- */
.products {
    padding: 120px 0;
    background: var(--cream-50);
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__header .section__desc {
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(45, 90, 61, 0.06);
}

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

.product-card__img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--green-800);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 0.92rem;
    color: var(--cream-600);
    line-height: 1.65;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about__visual {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 7/9;
}

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

.about__img-float {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    width: 55%;
}

.about__img-float img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__img-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-800);
}

.about__img-float-badge svg {
    color: var(--green-500);
    flex-shrink: 0;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1rem;
    color: var(--cream-700);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-200);
}

.about__stat {
    flex: 1;
    text-align: center;
}

.about__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--cream-600);
    letter-spacing: 0.02em;
}

.about__stat-divider {
    width: 1px;
    background: var(--cream-300);
    align-self: stretch;
}

/* --- Community --- */
.community {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--green-50) 100%);
}

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

.community__text {
    font-size: 1rem;
    color: var(--cream-700);
    line-height: 1.75;
    margin-bottom: 16px;
}

.community__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comm-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 90, 61, 0.06);
    transition: var(--transition);
}

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

.comm-card__icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 16px;
}

.comm-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 8px;
}

.comm-card p {
    font-size: 0.9rem;
    color: var(--cream-600);
    line-height: 1.65;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--white);
}

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

.visit__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-800);
    margin-bottom: 4px;
}

.visit__detail span,
.visit__detail a {
    font-size: 0.95rem;
    color: var(--cream-700);
    line-height: 1.6;
}

.visit__detail a:hover {
    color: var(--green-700);
}

.visit__detail p {
    font-size: 0.95rem;
    color: var(--cream-700);
    line-height: 1.6;
}

.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-200);
}

.visit__map-placeholder {
    position: relative;
    aspect-ratio: 4/3;
}

.visit__map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit__map-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(45, 90, 61, 0.7);
    backdrop-filter: blur(8px);
    text-align: center;
    padding: 32px;
}

.visit__map-pin {
    color: var(--green-300);
}

.visit__map-address {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.visit__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--green-800);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 4px;
}

.visit__map-link:hover {
    background: var(--green-100);
    transform: translateY(-1px);
}

/* --- CTA --- */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 184, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(95, 160, 110, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__phone,
.footer__email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--green-300);
}

.footer__address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Reveal Animation --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about__inner,
    .community__inner,
    .visit__inner {
        gap: 48px;
    }
    
    .about__img-float {
        right: -16px;
        bottom: -24px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__content {
        padding: 100px 24px 60px;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .trust__items {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .trust__item {
        padding: 0 16px;
    }
    
    .trust__divider {
        display: none;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .about__inner,
    .community__inner,
    .visit__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about__img-float {
        right: -8px;
        bottom: -16px;
        width: 50%;
    }
    
    .about__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about__stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .products,
    .about,
    .community,
    .visit {
        padding: 80px 0;
    }
    
    .cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-card__img {
        height: 200px;
    }
}
