:root {
    /* Brand Colors - refined palette */
    --color-accent: #7CFC00;
    --color-accent-dark: #5ED600;
    --color-accent-light: #9FFF47;
    --color-accent-subtle: rgba(124, 252, 0, 0.08);
    --color-accent-glow: rgba(124, 252, 0, 0.25);

    --color-text: #1F2937;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;

    --color-bg: #FFFFFF;
    --color-bg-secondary: #F9FAFB;
    --color-bg-tertiary: #F3F4F6;

    --color-dark: #111827;
    --color-dark-secondary: #1F2937;

    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Spacing - 4px grid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows - refined */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 0 4px var(--color-accent-subtle), 0 0 40px var(--color-accent-glow);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
    font-weight: 700;
}

h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

h3 {
    font-size: var(--text-xl);
}

p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Sections */
.section {
    padding: var(--space-20) 0;
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-align: center;
}

.section__title span {
    color: var(--color-accent-dark);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    min-height: 52px;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-dark);
    box-shadow: var(--shadow-md), 0 0 0 0 var(--color-accent-glow);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px var(--color-accent-glow);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Logo in navigation */
.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 280px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav__logo-img:hover {
    transform: scale(1.05);
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .nav__logo-img {
        height: 200px;
    }

    .nav__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 120px;
        padding: 0 var(--space-4);
    }

    /* Language switcher on the left */
    .nav__lang {
        order: 1;
        margin-left: 0;
    }

    /* Logo centered */
    .nav__logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Menu toggle on the right */
    .nav__toggle {
        order: 3;
    }
}

.nav__lang {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: var(--space-6);
}

.nav__lang-btn {
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
}

.nav__lang-btn:hover {
    color: var(--color-text);
}

.nav__lang-btn.active {
    color: var(--color-accent-dark);
    background: var(--color-accent-subtle);
}

.nav__lang-sep {
    color: var(--color-border);
    font-size: var(--text-sm);
}

.nav__menu {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--duration-fast) var(--ease-out);
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: all var(--duration-fast) var(--ease-out);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(100px + var(--space-8)) var(--space-6) var(--space-8);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 250, 251, 0.95) 100%),
        url('../images/storefront.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__text {
    text-align: center;
    max-width: 600px;
}

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

.hero__mascot-main {
    width: 280px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent-subtle);
    border: 1px solid rgba(124, 252, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-6);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    margin-bottom: var(--space-6);
}

.hero__title span {
    color: var(--color-accent-dark);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.btn--large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
    min-height: 60px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-6);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-dark);
}

/* Hero responsive - desktop */
@media (min-width: 1024px) {
    .hero__container {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-16);
    }

    .hero__text {
        text-align: left;
        flex: 1;
        max-width: 550px;
    }

    .hero__image {
        flex: 1;
        max-width: 500px;
    }

    .hero__mascot-main {
        width: 100%;
        max-width: 420px;
    }

    .hero__buttons {
        flex-direction: row;
    }

    .hero__trust {
        justify-content: flex-start;
    }
}

/* Section mascots */
.section__header-with-mascot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.section__mascot {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.section__mascot--steps {
    height: 200px;
}

.section__mascot--reviews {
    height: 140px;
}

.section__mascot--pricing {
    height: 180px;
}

.section__mascot--thinking {
    height: 160px;
}

.section__mascot--pointing {
    height: 160px;
}

.section__header--with-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.section__header--with-mascot .section__title {
    margin-bottom: 0;
}

/* Reviews header with mascot */
.reviews__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.reviews__header-text {
    text-align: center;
}

/* Location mascot */
.location__mascot {
    width: 180px;
    height: auto;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .section__header-with-mascot {
        flex-direction: row;
        justify-content: center;
    }

    .section__mascot {
        height: 220px;
    }

    .reviews__header {
        flex-direction: row;
        gap: var(--space-8);
    }

    .reviews__header-text {
        text-align: left;
    }

    .location__mascot {
        width: 220px;
    }
}


/* Steps */
.steps {
    display: grid;
    gap: var(--space-6);
}

.step {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.step:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Steps with individual mascots */
.steps--with-mascots {
    gap: var(--space-8);
}

.step--large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-8);
    text-align: center;
}

.step__mascot {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    transition: transform var(--duration-normal) var(--ease-out);
}

.step--large:hover .step__mascot {
    transform: scale(1.05);
}

.step__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.step__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-4);
    color: var(--color-accent-dark);
}

.step__title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.step__desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 280px;
}

/* Steps responsive */
@media (min-width: 768px) {
    .steps--with-mascots {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .step__mascot {
        max-width: 180px;
    }
}

@media (min-width: 1024px) {
    .step__mascot {
        max-width: 220px;
    }

    .step--large {
        padding: var(--space-10);
    }

    .step__title {
        font-size: var(--text-2xl);
    }
}

/* Pricing */
.pricing {
    display: grid;
    gap: var(--space-4);
}

.pricing__card {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing__card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.pricing__card--featured {
    background: var(--color-accent-subtle);
    border-color: var(--color-accent);
}

.pricing__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

.pricing__card--featured .pricing__icon {
    background: var(--color-accent);
    color: var(--color-dark);
}

.pricing__icon svg {
    width: 28px;
    height: 28px;
}

.pricing__info {
    flex: 1;
    min-width: 0;
}

.pricing__name {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.pricing__capacity {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.pricing__price {
    text-align: right;
    flex-shrink: 0;
}

.pricing__amount {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent-dark);
}

.pricing__unit {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.pricing__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-6);
    background: var(--color-accent-subtle);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

.pricing__note svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

/* USP */
.usp {
    display: grid;
    gap: var(--space-3);
}

.usp__item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-6);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-out);
}

.usp__item:hover {
    border-color: var(--color-accent);
}

.usp__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.usp__check svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
}

.usp__text {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
}

/* Location */
.location {
    background: var(--color-dark);
    color: var(--color-bg);
    padding: var(--space-16) 0 calc(var(--space-16) + 80px);
}

.location__grid {
    display: grid;
    gap: var(--space-10);
}

.location__title {
    color: var(--color-bg);
    margin-bottom: var(--space-8);
}

.location__title span {
    color: var(--color-accent);
}

.location__tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.location__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.location__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.location__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-dark);
}

.location__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.location__value {
    font-size: var(--text-base);
    font-weight: 500;
    line-height: 1.5;
}

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

.location__map iframe {
    width: 100%;
    height: 280px;
    border: none;
}

/* Footer */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
    padding: var(--space-12) 0 var(--space-6);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border-light);
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer__logo img {
    height: 280px;
    width: auto;
}

.footer__brand p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 320px;
    margin-top: var(--space-4);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer__social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__nav,
.footer__legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__nav h4,
.footer__legal h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer__nav h4::after,
.footer__legal h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer__nav a,
.footer__legal a {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    transition: all var(--duration-fast) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__nav a::before,
.footer__legal a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--duration-fast) var(--ease-out);
    color: var(--color-accent-dark);
}

.footer__nav a:hover,
.footer__legal a:hover {
    color: var(--color-accent-dark);
    transform: translateX(4px);
}

.footer__nav a:hover::before,
.footer__legal a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__bottom {
    padding-top: var(--space-8);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__bottom p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer__logo img {
        height: 200px;
    }
}

@media (min-width: 640px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3) var(--space-4);
    display: flex;
    gap: var(--space-3);
}

.sticky-bar .btn {
    flex: 1;
    min-height: 48px;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
}

/* Responsive */
@media (min-width: 640px) {
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .nav__menu {
        display: flex;
    }

    .nav__toggle {
        display: none;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .location__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .location__map iframe {
        height: 360px;
    }

    .sticky-bar {
        display: none;
    }

    .location {
        padding-bottom: var(--space-16);
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .pricing {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: var(--space-20) 0;
    }
}

/* Mobile menu */
.nav--open .nav__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6);
    gap: var(--space-4);
}

.nav--open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav--open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dryer Section - Electrolux Style */
.dryer-section {
    background: linear-gradient(135deg, #006633 0%, #004d26 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dryer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dryer-section__header {
    margin-bottom: var(--space-10);
}

.dryer-section__brand {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.dryer-section__electrolux-icon {
    width: 48px;
    height: 48px;
    color: #fff;
}

.dryer-section__title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.dryer-section__title span {
    font-weight: 300;
    font-style: italic;
}

.dryer-section__grid {
    display: grid;
    gap: var(--space-8);
}

/* Dryer Steps */
.dryer-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.dryer-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all var(--duration-normal) var(--ease-out);
}

.dryer-step:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.dryer-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-md);
}

.dryer-step__content {
    flex: 1;
}

.dryer-step__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-1);
}

.dryer-step__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Dryer Pricing */
.dryer-pricing {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dryer-pricing__title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-accent);
}

.dryer-pricing__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.dryer-pricing__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-base);
}

.dryer-pricing__list li:last-child {
    border-bottom: none;
}

.dryer-pricing__machine {
    font-weight: 500;
    color: #fff;
}

.dryer-pricing__price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: var(--text-lg);
}

.dryer-pricing__tip {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(124, 252, 0, 0.15);
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 252, 0, 0.3);
}

.dryer-pricing__tip svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.dryer-pricing__tip span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fff;
}

/* Dryer Contact */
.dryer-section__contact {
    margin-top: var(--space-8);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dryer-section__contact p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-3);
}

.dryer-section__phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.dryer-section__phones a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-accent);
    color: var(--color-dark);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
}

.dryer-section__phones a:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 252, 0, 0.3);
}

/* Dryer Section Responsive */
@media (min-width: 768px) {
    .dryer-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }

    .dryer-section__electrolux-icon {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1024px) {
    .dryer-steps {
        gap: var(--space-5);
    }

    .dryer-step {
        padding: var(--space-6);
    }

    .dryer-step__number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: var(--text-xl);
    }
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--color-bg);
    text-align: center;
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.reviews__stars {
    display: flex;
    gap: var(--space-1);
}

.reviews__stars svg {
    width: 24px;
    height: 24px;
    color: #FBBF24;
}

.reviews__score {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.reviews__count {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.reviews__grid {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4);
}

.reviews__grid::-webkit-scrollbar {
    height: 6px;
}

.reviews__grid::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
    border-radius: 3px;
}

.reviews__grid::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.reviews__grid .review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

/* Google Reviews Badge */
.google-reviews {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-10);
}

.google-reviews__badge {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-8);
    box-shadow: var(--shadow-md);
}

.google-reviews__logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.google-reviews__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
}

.google-reviews__rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.google-reviews__score {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.google-reviews__stars {
    display: flex;
    gap: 2px;
}

.google-reviews__stars svg {
    width: 20px;
    height: 20px;
}

.google-reviews__count {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Review Card - Google Style */
.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: left;
    transition: all var(--duration-normal) var(--ease-out);
}

.review-card--google {
    position: relative;
}

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

.review-card__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--color-dark);
    flex-shrink: 0;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.review-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.review-card__stars {
    display: flex;
    gap: 1px;
}

.review-card__stars svg {
    width: 14px;
    height: 14px;
}

.review-card__date {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.review-card__google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-card__text {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.reviews__cta {
    text-align: center;
}

/* Google Reviews Button */
.btn--google {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.btn--google:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
    background: var(--color-accent-subtle);
}

/* Reviews Grid Responsive */
@media (min-width: 768px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews__stars svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== ENHANCED SCROLL ANIMATIONS ===== */
/* Base fade-in with staggered delays */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.steps .step:nth-child(1),
.pricing .pricing__card:nth-child(1),
.usp .usp__item:nth-child(1),
.reviews__grid .review-card:nth-child(1) {
    transition-delay: 0s;
}

.steps .step:nth-child(2),
.pricing .pricing__card:nth-child(2),
.usp .usp__item:nth-child(2),
.reviews__grid .review-card:nth-child(2) {
    transition-delay: 0.1s;
}

.steps .step:nth-child(3),
.pricing .pricing__card:nth-child(3),
.usp .usp__item:nth-child(3),
.reviews__grid .review-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pricing .pricing__card:nth-child(4),
.usp .usp__item:nth-child(4),
.reviews__grid .review-card:nth-child(4) {
    transition-delay: 0.3s;
}

.pricing .pricing__card:nth-child(5),
.usp .usp__item:nth-child(5) {
    transition-delay: 0.4s;
}

.usp .usp__item:nth-child(6) {
    transition-delay: 0.5s;
}

/* Slide-in-left animation */
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide-in-right animation */
.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-in animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Section titles - special animation */
.section__title {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Dryer steps staggered animation */
.dryer-steps .dryer-step:nth-child(1) {
    transition-delay: 0s;
}

.dryer-steps .dryer-step:nth-child(2) {
    transition-delay: 0.1s;
}

.dryer-steps .dryer-step:nth-child(3) {
    transition-delay: 0.2s;
}

.dryer-steps .dryer-step:nth-child(4) {
    transition-delay: 0.3s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .section__title {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== HERO MASCOTS ===== */
.hero__mascot {
    position: absolute;
    width: 180px;
    height: auto;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.hero__mascot--left {
    left: 5%;
    bottom: 15%;
    animation-delay: 0s;
}

.hero__mascot--right {
    right: 5%;
    bottom: 20%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hide mascots on mobile */
@media (max-width: 1024px) {
    .hero__mascot {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hero__mascot {
        width: 220px;
    }
}

@media (min-width: 1400px) {
    .hero__mascot {
        width: 260px;
    }

    .hero__mascot--left {
        left: 8%;
    }

    .hero__mascot--right {
        right: 8%;
    }
}

/* ===== FOOTER CREDIT ===== */
.footer__credit {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    margin-top: var(--space-2);
}

.footer__credit a {
    color: var(--color-accent-dark);
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-out);
}

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

/* ===== ENHANCED SECTION SPACING ===== */
@media (min-width: 768px) {
    .section {
        padding: var(--space-24) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }

    .section__title {
        margin-bottom: var(--space-10);
    }
}

/* ===== NEW HERO SECTION ===== */
.hero-new {
    background: var(--color-bg);
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-new__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-new__mascot {
    display: flex;
    justify-content: center;
}

/* Desktop mascot - hidden on mobile */
.hero-new__mascot--desktop {
    display: none;
}

/* Mobile mascot - visible on mobile, hidden on desktop */
.hero-new__mascot--mobile {
    display: flex;
    justify-content: center;
    margin: var(--space-6) 0;
}

.hero-new__mascot-wrapper {
    position: relative;
    display: inline-block;
}

.hero-new__mascot-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
}

.hero-new__mascot-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, var(--color-accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-new__content {
    text-align: center;
}

.hero-new__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent-subtle);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-6);
}

.hero-new__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-new__title {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
}

.hero-new__title-line {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
}

.hero-new__title-line--accent {
    color: var(--color-accent-dark);
    position: relative;
}

.hero-new__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.hero-new__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-new__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
}

.hero-new__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    color: var(--color-dark);
}

.hero-new__feature-icon svg {
    width: 20px;
    height: 20px;
}

.hero-new__feature div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-new__feature strong {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
}

.hero-new__feature span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.hero-new__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

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

.btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

/* Hero Responsive */
@media (min-width: 768px) {
    .hero-new {
        padding: 180px 0 100px;
    }

    .hero-new__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }

    /* Hide mobile mascot, show desktop mascot */
    .hero-new__mascot--mobile {
        display: none;
    }

    .hero-new__mascot--desktop {
        display: flex;
    }

    .hero-new__mascot-img {
        width: 380px;
    }

    .hero-new__content {
        text-align: left;
    }

    .hero-new__features {
        justify-content: flex-start;
    }

    .hero-new__buttons {
        justify-content: flex-start;
    }

    .hero-new__title-line {
        font-size: var(--text-4xl);
    }
}

@media (min-width: 1024px) {
    .hero-new {
        padding: 200px 0 120px;
    }

    .hero-new__mascot-img {
        width: 450px;
    }

    .hero-new__title-line {
        font-size: var(--text-5xl);
    }

    .hero-new__subtitle {
        font-size: var(--text-xl);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 15px rgba(124, 252, 0, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 252, 0, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}