/* ========================================
   AufbauWerk - Möbelmontage Wien
   Theme: Warm Wooden Craft
   Colors: Brown (#6D4C41) + Beige (#F5F0EB)
   ======================================== */

/* ----------------------------------------
   CSS Variables
   ---------------------------------------- */
:root {
    /* Primary Colors - Warm Brown */
    --primary: #8B5E3C;
    --primary-dark: #6D4C41;
    --primary-light: #A1887F;
    --primary-glow: rgba(139, 94, 60, 0.25);

    /* Secondary Colors - Deep Wood */
    --secondary: #3E2723;
    --secondary-dark: #1B0000;
    --secondary-light: #4E342E;

    /* Accent Colors - Amber */
    --accent: #D4A574;
    --accent-dark: #C49A6C;
    --accent-light: #E8C9A0;

    /* Neutral Colors - Beige Spectrum */
    --white: #FFFFFF;
    --cream: #FDF8F3;
    --beige-50: #FAF6F1;
    --beige-100: #F5F0EB;
    --beige-200: #EBE4DD;
    --beige-300: #D7CCC8;
    --beige-400: #BCAAA4;
    --beige-500: #A1887F;
    --beige-600: #8D6E63;
    --beige-700: #6D4C41;
    --beige-800: #4E342E;
    --beige-900: #3E2723;

    /* Semantic Colors */
    --success: #7CB342;
    --success-light: #E8F5E9;
    --warning: #FFB300;
    --error: #E64A19;

    /* Text Colors */
    --text-primary: #3E2723;
    --text-secondary: #5D4037;
    --text-muted: #8D6E63;

    /* Layout */
    --container-max: 1280px;
    --section-gap: 100px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.06);
    --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.08);
    --shadow-lg: 0 8px 32px rgba(62, 39, 35, 0.1);
    --shadow-xl: 0 20px 60px rgba(62, 39, 35, 0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-fixed: 300;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--cream);
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    overflow-x: clip;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text-primary); }
em { font-style: normal; color: var(--primary); }

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

.nav.scrolled {
    padding: 8px 24px;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
}

.nav__bar {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 10px 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--beige-200);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.nav__logo-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.nav__logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.nav__logo-text em {
    color: var(--primary);
    font-style: normal;
    font-weight: 800;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__item {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav__item:hover {
    color: var(--primary);
    background: var(--beige-100);
}

.nav__item--accent {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    background: var(--beige-100);
}

.nav__item--accent img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--beige-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--beige-200);
}

.nav__phone:hover {
    background: var(--beige-200);
    border-color: var(--beige-300);
}

.nav__phone img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(10%) saturate(2186%) hue-rotate(341deg) brightness(93%) contrast(93%);
}

.nav__cta {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px var(--primary-glow);
    transition: var(--transition-base);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.nav__burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border-radius: var(--radius-md);
}

.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav__burger span { position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; left: 0; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }

/* Mobile Drawer */
.nav__drawer {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    border: 2px solid var(--beige-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    pointer-events: none;
}

.nav__drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.nav__drawer-links a {
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--radius-md);
}

.nav__drawer-links a:hover {
    background: var(--beige-100);
    color: var(--primary);
}

.nav__drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 2px solid var(--beige-200);
}

.nav__drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--beige-100);
    border-radius: var(--radius-md);
}

.nav__drawer-phone img { width: 20px; height: 20px; }

.nav__drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
}

/* ----------------------------------------
   Hero - Full Screen Overlay Design
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(62, 39, 35, 0.92) 0%,
        rgba(62, 39, 35, 0.75) 50%,
        rgba(139, 94, 60, 0.65) 100%
    );
}

.hero__wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 140px 24px 80px;
    width: 100%;
}

.hero__main {
    max-width: 620px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__tag img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.hero__headline {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero__headline em {
    font-style: normal;
    color: var(--accent);
    display: block;
}

.hero__motto {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
    font-style: italic;
}

.hero__intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero__call {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero__call-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
}

.hero__call-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.hero__call-info {
    display: flex;
    flex-direction: column;
}

.hero__call-info small {
    font-size: 13px;
    color: var(--text-muted);
}

.hero__call-info strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.hero__form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-base);
}

.hero__form-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.hero__form-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.hero__form-btn:hover img {
    filter: none;
}

/* Hero Sidebar Card */
.hero__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero__card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--beige-200);
}

.hero__card-head img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.hero__card-head span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero__card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero__card-list img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(28%) saturate(653%) hue-rotate(52deg) brightness(92%) contrast(91%);
    flex-shrink: 0;
}

.hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero__metric {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero__metric strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.hero__metric span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero__scroll img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 24px 100px;
    }

    .hero__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__card {
        flex: 1;
        min-width: 280px;
    }

    .hero__metrics {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero__wrapper {
        padding: 100px 20px 80px;
    }

    .hero__headline {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero__motto {
        font-size: 18px;
    }

    .hero__intro {
        font-size: 16px;
    }

    .hero__cta-row {
        flex-direction: column;
    }

    .hero__call {
        justify-content: center;
    }

    .hero__form-btn {
        justify-content: center;
    }

    .hero__sidebar {
        flex-direction: column;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__wrapper {
        padding: 0 16px 0;
    }

    .hero__tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero__headline {
        font-size: 28px;
    }

    .hero__headline br {
        display: none;
    }

    .hero__motto {
        font-size: 15px;
    }

    .hero__intro {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__call {
        width: 100%;
        padding: 14px 18px;
    }

    .hero__call-icon {
        width: 40px;
        height: 40px;
    }

    .hero__call-icon img {
        width: 18px;
        height: 18px;
    }

    .hero__form-btn {
        width: 100%;
        padding: 16px 20px;
    }

    .hero__card {
        padding: 20px;
    }

    .hero__card-head {
        gap: 10px;
    }

    .hero__card-head img {
        width: 24px;
        height: 24px;
    }

    .hero__card-head span {
        font-size: 16px;
    }

    .hero__card-list {
        gap: 6px;
    }

    .hero__card-list li {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero__card-list img {
        width: 14px;
        height: 14px;
    }

    .hero__metrics {
        flex-direction: row;
        gap: 12px;
    }

    .hero__metric {
        flex: 1;
        padding: 16px 12px;
    }

    .hero__metric strong {
        font-size: 24px;
    }

    .hero__metric span {
        font-size: 11px;
    }
}

/* ----------------------------------------
   Partners Marquee Strip
   ---------------------------------------- */
.partners {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.partners::before,
.partners::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners::before {
    left: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 100%);
}

.partners::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-dark) 100%);
}

.partners__track {
    display: flex;
    justify-content: center;
}

.partners__slide {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 24px;
}

.partners__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.partners__brand:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.partners__brand img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.partners__brand span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.partners__brand--all {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: transparent;
}

.partners__brand--all:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

@media (max-width: 768px) {
    .partners__slide {
        gap: 16px;
    }

    .partners__brand {
        padding: 8px 14px;
    }

    .partners__brand span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .partners::before,
    .partners::after {
        display: none;
    }

    .partners__brand {
        padding: 6px 12px;
    }
}

/* ----------------------------------------
   Advantages Section - Horizontal Rows
   ---------------------------------------- */
.adv {
    padding: var(--section-gap) 24px;
    background: var(--white);
}

.adv__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.adv__intro {
    text-align: center;
    margin-bottom: 50px;
}

.adv__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--beige-100);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.adv__label img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.adv__headline {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondary);
}

.adv__headline em {
    font-style: normal;
    color: var(--primary);
}

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

.adv__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 32px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.adv__row:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.adv__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.adv__row:hover .adv__icon {
    background: var(--primary);
    border-color: var(--primary);
}

.adv__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
    transition: var(--transition-base);
}

.adv__row:hover .adv__icon img {
    filter: brightness(0) invert(1);
}

.adv__content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.adv__content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.adv__stats {
    display: flex;
    gap: 20px;
}

.adv__stat {
    text-align: center;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    min-width: 90px;
}

.adv__stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.adv__stat span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Accent row */
.adv__row--accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.adv__row--accent:hover {
    border-color: transparent;
}

.adv__row--accent .adv__icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.adv__row--accent:hover .adv__icon {
    background: var(--white);
}

.adv__row--accent .adv__icon img {
    filter: brightness(0) invert(1);
}

.adv__row--accent:hover .adv__icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.adv__row--accent .adv__content h3,
.adv__row--accent .adv__content p {
    color: var(--white);
}

.adv__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.adv__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.adv__cta img {
    width: 16px;
    height: 16px;
}

/* Responsive Advantages */
@media (max-width: 1024px) {
    .adv__row {
        grid-template-columns: auto 1fr;
    }

    .adv__stats {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .adv__row--accent .adv__cta {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .adv__row {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
    }

    .adv__icon {
        width: 52px;
        height: 52px;
    }

    .adv__stats {
        justify-content: center;
    }

    .adv__row:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .adv__row {
        padding: 20px;
    }

    .adv__stat {
        min-width: 70px;
        padding: 10px 14px;
    }

    .adv__stat strong {
        font-size: 16px;
    }
}

/* ----------------------------------------
   Services Section - Two Column Split
   ---------------------------------------- */
.svc {
    padding: var(--section-gap) 24px;
    background: var(--beige-100);
}

.svc__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.svc__left {
    position: sticky;
    top: 120px;
}

.svc__label {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.svc__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.svc__title em {
    font-style: normal;
    color: var(--primary);
}

.svc__text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.svc__feature {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 28px;
}

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

.svc__feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.svc__feature-overlay span {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
}

.svc__main-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px var(--primary-glow);
    transition: var(--transition-base);
}

.svc__main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.svc__main-cta img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Right side - Services List */
.svc__right {
    display: flex;
    flex-direction: column;
}

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

.svc__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.svc__item:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.svc__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.svc__item:hover .svc__item-icon {
    background: var(--primary);
}

.svc__item-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
    transition: var(--transition-base);
}

.svc__item:hover .svc__item-icon img {
    filter: brightness(0) invert(1);
}

.svc__item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.svc__item-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.svc__item-text small {
    font-size: 13px;
    color: var(--text-muted);
}

.svc__item-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
}

.svc__item:hover .svc__item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.svc__item-arrow img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

/* Accent item */
.svc__item--accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.svc__item--accent:hover {
    border-color: transparent;
}

.svc__item--accent .svc__item-icon {
    background: rgba(255, 255, 255, 0.2);
}

.svc__item--accent:hover .svc__item-icon {
    background: var(--white);
}

.svc__item--accent .svc__item-icon img {
    filter: brightness(0) invert(1);
}

.svc__item--accent:hover .svc__item-icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.svc__item--accent .svc__item-text strong,
.svc__item--accent .svc__item-text small {
    color: var(--white);
}

.svc__item--accent .svc__item-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.svc__item--accent .svc__item-arrow img {
    filter: brightness(0) invert(1);
}

/* Contact bar */
.svc__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: var(--secondary);
    border-radius: var(--radius-lg);
}

.svc__contact span {
    font-size: 14px;
    color: var(--beige-400);
}

.svc__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.svc__contact a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Responsive Services */
@media (max-width: 1024px) {
    .svc__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc__left {
        position: static;
    }

    .svc__feature {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .svc__item {
        padding: 16px 20px;
    }

    .svc__item-icon {
        width: 42px;
        height: 42px;
    }

    .svc__item-text strong {
        font-size: 15px;
    }

    .svc__item-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .svc__item {
        grid-template-columns: auto 1fr;
        padding: 14px 16px;
    }

    .svc__main-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ----------------------------------------
   Furniture Types - Showcase Grid (moebel)
   ---------------------------------------- */
.moebel {
    padding: var(--section-gap) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.moebel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--beige-50);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.moebel__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.moebel__header {
    margin-bottom: 40px;
}

.moebel__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.moebel__label img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.moebel__title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
}

.moebel__title em {
    font-style: normal;
    color: var(--primary);
}

/* Showcase layout */
.moebel__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Featured card */
.moebel__featured {
    background: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.moebel__featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.moebel__featured-visual {
    height: 260px;
    overflow: hidden;
}

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

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

.moebel__featured-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.moebel__featured-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.moebel__featured-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.moebel__featured-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.moebel__featured-head h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.moebel__featured-head span {
    font-size: 14px;
    color: var(--text-muted);
}

.moebel__featured-content > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.moebel__featured-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.moebel__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.moebel__detail img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.moebel__featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    margin-top: auto;
    width: fit-content;
}

.moebel__featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.moebel__featured-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

/* Small cards grid */
.moebel__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.moebel__card {
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
}

.moebel__card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.moebel__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--beige-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.moebel__card:hover .moebel__card-icon {
    background: var(--primary-glow);
}

.moebel__card-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.moebel__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.moebel__card-sub {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.moebel__card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--beige-50);
    border-radius: var(--radius-md);
    font-size: 13px;
}

.moebel__card-info span {
    color: var(--text-muted);
}

.moebel__card-info strong {
    font-weight: 700;
    color: var(--primary);
}

/* Highlight card */
.moebel__card--highlight {
    background: var(--cream);
    border-color: var(--primary);
}

.moebel__card--highlight .moebel__card-icon {
    background: var(--primary-glow);
}

/* CTA card */
.moebel__card--cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    cursor: pointer;
}

.moebel__card--cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.moebel__card-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
}

.moebel__card-cta-inner span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.moebel__card-cta-inner strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.moebel__card-cta-inner img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Responsive - Moebel Section */
@media (max-width: 1200px) {
    .moebel::before {
        width: 40%;
    }

    .moebel__featured-visual {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .moebel__showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .moebel::before {
        display: none;
    }

    .moebel__featured {
        flex-direction: row;
    }

    .moebel__featured-visual {
        width: 45%;
        height: auto;
        min-height: 320px;
    }

    .moebel__featured-content {
        width: 55%;
    }

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

@media (max-width: 768px) {
    .moebel {
        padding: 80px 0;
    }

    .moebel__featured {
        flex-direction: column;
    }

    .moebel__featured-visual {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .moebel__featured-content {
        width: 100%;
        padding: 24px;
    }

    .moebel__featured-head h3 {
        font-size: 20px;
    }

    .moebel__featured-details {
        flex-wrap: wrap;
        gap: 12px;
    }

    .moebel__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .moebel__card {
        padding: 20px 16px;
    }

    .moebel__card-icon {
        width: 52px;
        height: 52px;
    }

    .moebel__card-icon img {
        width: 26px;
        height: 26px;
    }

    .moebel__card h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .moebel__grid {
        grid-template-columns: 1fr 1fr;
    }

    .moebel__card {
        padding: 16px 12px;
    }

    .moebel__card h3 {
        font-size: 14px;
    }

    .moebel__card-sub {
        font-size: 11px;
    }

    .moebel__card-info {
        flex-direction: column;
        gap: 4px;
        padding: 10px 12px;
    }

    .moebel__featured-icon {
        width: 48px;
        height: 48px;
    }

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

@media (max-width: 375px) {
    .moebel__card-icon {
        width: 44px;
        height: 44px;
    }

    .moebel__card-icon img {
        width: 22px;
        height: 22px;
    }

    .moebel__card-cta-inner {
        min-height: 100px;
    }
}

/* ----------------------------------------
   About Section - Story Card (firm)
   ---------------------------------------- */
.firm {
    padding: var(--section-gap) 0;
    background: var(--beige-100);
}

.firm__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.firm__card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Visual side */
.firm__visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    background: var(--beige-100);
}

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

.firm__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(62, 39, 35, 0.75) 100%);
    pointer-events: none;
}

.firm__visual-badges {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
}

.firm__badge {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    text-align: center;
}

.firm__badge strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.firm__badge span {
    font-size: 12px;
    color: var(--text-muted);
}

.firm__badge--accent {
    background: var(--primary);
}

.firm__badge--accent strong {
    color: var(--white);
}

.firm__badge--accent span {
    color: rgba(255, 255, 255, 0.85);
}

/* Body side */
.firm__body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
}

.firm__intro {
    margin-bottom: 24px;
}

.firm__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.firm__label img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.firm__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 10px;
}

.firm__title em {
    font-style: normal;
    color: var(--primary);
}

.firm__slogan {
    font-size: 18px;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
}

.firm__text {
    margin-bottom: 28px;
}

.firm__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.firm__text p:last-child {
    margin-bottom: 0;
}

.firm__text strong {
    color: var(--text-primary);
}

/* Points */
.firm__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--beige-50);
    border-radius: var(--radius-lg);
}

.firm__point {
    display: flex;
    align-items: center;
    gap: 14px;
}

.firm__point-icon {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.firm__point-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.firm__point-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.firm__point-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Actions */
.firm__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.firm__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.firm__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.firm__btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.firm__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.firm__phone:hover {
    color: var(--primary);
}

.firm__phone img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

/* Responsive - Firm */
@media (max-width: 1024px) {
    .firm__card {
        grid-template-columns: 1fr;
    }

    .firm__visual {
        min-height: 350px;
    }

    .firm__body {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .firm {
        padding: 80px 0;
    }

    .firm__visual {
        min-height: 280px;
    }

    .firm__visual-badges {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .firm__badge {
        padding: 12px 16px;
    }

    .firm__badge strong {
        font-size: 22px;
    }

    .firm__body {
        padding: 28px 24px;
    }

    .firm__title {
        font-size: 32px;
    }

    .firm__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .firm__phone {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .firm__visual {
        min-height: 220px;
    }

    .firm__visual-badges {
        flex-direction: column;
        gap: 8px;
    }

    .firm__badge {
        padding: 10px 14px;
    }

    .firm__badge strong {
        font-size: 20px;
    }

    .firm__points {
        padding: 16px;
    }

    .firm__point-icon {
        width: 36px;
        height: 36px;
    }

    .firm__point-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    .firm__body {
        padding: 24px 20px;
    }

    .firm__title {
        font-size: 28px;
    }

    .firm__slogan {
        font-size: 16px;
    }
}

/* ----------------------------------------
   Coverage Section
   ---------------------------------------- */
.coverage {
    padding: var(--section-gap) 24px;
    background: linear-gradient(165deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.coverage__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.coverage__header {
    text-align: center;
    margin-bottom: 56px;
}

.coverage__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.coverage__tag img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(16%) saturate(705%) hue-rotate(350deg) brightness(95%) contrast(89%);
}

.coverage__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
}

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

.coverage__map {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
}

.coverage__map-img {
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.coverage__map-marker {
    position: absolute;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.coverage__map-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.coverage__map-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 1;
}

.coverage__map-label {
    position: absolute;
    top: calc(50% + 24px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-md);
    white-space: nowrap;
}

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

.coverage__region {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--beige-300);
}

.coverage__region img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(28%) saturate(653%) hue-rotate(52deg) brightness(92%) contrast(91%);
}

.coverage__region--main {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.coverage__region-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-md);
}

.coverage__region-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.coverage__region-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.coverage__region-info span {
    font-size: 14px;
    color: var(--beige-400);
}

.coverage__region-tag {
    margin-left: auto;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-full);
}

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

.coverage__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 56px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.coverage__cta-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coverage__cta-info img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(16%) saturate(705%) hue-rotate(350deg) brightness(95%) contrast(89%);
}

.coverage__cta-info div strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.coverage__cta-info div span {
    font-size: 14px;
    color: var(--beige-400);
}

.coverage__cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    background: var(--accent);
    border-radius: var(--radius-md);
}

.coverage__cta-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
}

.coverage__cta-btn img {
    width: 18px;
    height: 18px;
}

/* ----------------------------------------
   Process Section - Zigzag Path (ablauf)
   ---------------------------------------- */
.ablauf {
    padding: var(--section-gap) 24px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige-100) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.ablauf__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.ablauf__badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.ablauf__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ablauf__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Path container */
.ablauf__path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Step item */
.ablauf__item {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.ablauf__item--left {
    flex-direction: row;
    justify-content: flex-start;
}

.ablauf__item--right {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.ablauf__item--center {
    justify-content: center;
}

/* Card */
.ablauf__card {
    position: relative;
    flex: 0 0 calc(50% - 40px);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
    overflow: hidden;
}

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

.ablauf__card-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 56px;
    font-weight: 900;
    color: var(--beige-200);
    line-height: 1;
    pointer-events: none;
    opacity: 0.7;
}

.ablauf__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
}

.ablauf__card-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.ablauf__card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.ablauf__card-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ablauf__card-tip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--beige-100);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
}

.ablauf__card-tip img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.ablauf__card-highlight {
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(139, 94, 60, 0.08), rgba(139, 94, 60, 0.03));
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.ablauf__card-highlight strong {
    color: var(--primary);
}

.ablauf__card-slots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ablauf__slot {
    padding: 6px 14px;
    background: var(--beige-100);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.ablauf__card-features {
    display: flex;
    gap: 16px;
}

.ablauf__card-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.ablauf__card-features img {
    width: 12px;
    height: 12px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(383%) hue-rotate(93deg) brightness(95%) contrast(94%);
}

/* Connector */
.ablauf__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    padding: 20px 0;
}

.ablauf__dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    flex-shrink: 0;
}

.ablauf__line {
    flex: 1;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--beige-300));
    min-height: 40px;
}

/* Final step */
.ablauf__final {
    position: relative;
    text-align: center;
    padding: 40px 48px;
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-xl);
    color: var(--white);
    max-width: 400px;
    margin: 24px auto 0;
}

.ablauf__final-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.ablauf__final-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.ablauf__final-num {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.ablauf__final h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.ablauf__final p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.ablauf__final-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

.ablauf__final-badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Action bar */
.ablauf__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 56px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.ablauf__action-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.ablauf__action-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.ablauf__action-btns {
    display: flex;
    gap: 12px;
}

.ablauf__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.ablauf__btn--primary {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.ablauf__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ablauf__btn--primary img {
    filter: brightness(0) invert(1);
}

.ablauf__btn--secondary {
    background: var(--beige-100);
    color: var(--text-primary);
}

.ablauf__btn--secondary:hover {
    background: var(--beige-200);
}

.ablauf__btn--secondary img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

/* Responsive */
@media (max-width: 768px) {
    .ablauf__item--left,
    .ablauf__item--right {
        flex-direction: column;
    }

    .ablauf__card {
        flex: 1;
    }

    .ablauf__connector {
        width: 100%;
        flex-direction: row;
        padding: 16px 0;
        justify-content: center;
    }

    .ablauf__line {
        height: 3px;
        width: 60px;
        min-height: auto;
    }

    .ablauf__action {
        flex-direction: column;
        text-align: center;
    }

    .ablauf__action-btns {
        flex-direction: column;
        width: 100%;
    }

    .ablauf__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ablauf__card {
        padding: 24px 20px;
    }

    .ablauf__card-num {
        font-size: 36px;
    }

    .ablauf__final {
        padding: 32px 24px;
    }

    .ablauf__final-num {
        font-size: 40px;
    }

    .ablauf__card-features {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ----------------------------------------
   Tarife Section - Card Grid Design
   ---------------------------------------- */
.tarife {
    padding: var(--section-gap) 24px;
    background: var(--white);
    position: relative;
}

.tarife__container {
    max-width: 1100px;
    margin: 0 auto;
}

.tarife__header {
    text-align: center;
    margin-bottom: 40px;
}

.tarife__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--beige-100);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.tarife__badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.tarife__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.tarife__title em {
    color: var(--primary);
    font-style: normal;
}

.tarife__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Trust Indicators */
.tarife__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.tarife__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--cream), var(--beige-100));
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.tarife__trust-item img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

/* Price Cards Grid */
.tarife__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tarife__card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    padding: 28px 24px;
    transition: var(--transition-base);
}

.tarife__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.tarife__card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
}

.tarife__card-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.tarife__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--beige-200);
}

.tarife__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tarife__card-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--beige-300);
}

.tarife__card-list li:last-child {
    border-bottom: none;
}

.tarife__card-list span {
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
    padding-right: 10px;
}

.tarife__card-list strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Special Rates */
.tarife__special {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tarife__special-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.tarife__special-item:hover {
    border-color: var(--primary);
}

.tarife__special-item--highlight {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-color: var(--secondary);
}

.tarife__special-item--highlight .tarife__special-content h4,
.tarife__special-item--highlight .tarife__special-content p,
.tarife__special-item--highlight .tarife__special-price {
    color: var(--white);
}

.tarife__special-item--highlight .tarife__special-icon {
    background: rgba(255, 255, 255, 0.15);
}

.tarife__special-item--highlight .tarife__special-icon img {
    filter: brightness(0) invert(1);
}

.tarife__special-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.tarife__special-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.tarife__special-content {
    flex: 1;
}

.tarife__special-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.tarife__special-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.tarife__special-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.tarife__special-price small {
    font-size: 14px;
    font-weight: 600;
}

/* Info Note */
.tarife__info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(139, 94, 60, 0.08), rgba(139, 94, 60, 0.03));
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 36px;
}

.tarife__info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.tarife__info-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.tarife__info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA */
.tarife__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tarife__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.tarife__btn--primary {
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 6px 24px var(--primary-glow);
}

.tarife__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px var(--primary-glow);
}

.tarife__btn--primary img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.tarife__btn--secondary {
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
}

.tarife__btn--secondary:hover {
    border-color: var(--primary);
    background: var(--cream);
}

.tarife__btn--secondary img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

/* Responsive */
@media (max-width: 1024px) {
    .tarife__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tarife__trust {
        gap: 12px;
    }

    .tarife__trust-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tarife__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tarife__special {
        grid-template-columns: 1fr;
    }

    .tarife__cta {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .tarife__card {
        padding: 24px 20px;
    }

    .tarife__special-item {
        flex-wrap: wrap;
    }

    .tarife__special-price {
        width: 100%;
        text-align: right;
        margin-top: 8px;
    }
}

/* ----------------------------------------
   Warranty Section
   ---------------------------------------- */
.warranty {
    padding: var(--section-gap) 24px;
    background: var(--beige-100);
}

.warranty__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.warranty__header {
    text-align: center;
    margin-bottom: 56px;
}

.warranty__label {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.warranty__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
}

.warranty__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.warranty__main {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px;
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-xl);
    grid-row: span 2;
}

.warranty__main-badge {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.warranty__main-badge span {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

.warranty__main-content {
    flex: 1;
}

.warranty__main-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.warranty__main-content p {
    font-size: 16px;
    color: var(--beige-300);
    line-height: 1.6;
}

.warranty__main-icon {
    flex-shrink: 0;
}

.warranty__main-icon img {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

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

.warranty__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.warranty__item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

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

.warranty__item-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.warranty__item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.warranty__item-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.warranty__seal {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    text-align: center;
}

.warranty__seal-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border: 4px solid var(--primary);
    border-radius: 50%;
}

.warranty__seal-inner img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.warranty__seal h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.warranty__seal p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.warranty__seal-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.warranty__seal-tags span {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--beige-100);
    border-radius: var(--radius-full);
}

.warranty__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 56px;
}

.warranty__cta p {
    font-size: 17px;
    color: var(--text-secondary);
}

.warranty__cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
}

.warranty__cta-btn:hover {
    transform: translateY(-2px);
}

.warranty__cta-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ----------------------------------------
   Problems Section
   ---------------------------------------- */
.problems {
    padding: var(--section-gap) 24px;
    background: var(--white);
}

.problems__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.problems__header {
    text-align: center;
    margin-bottom: 56px;
}

.problems__tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--beige-100);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.problems__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

.problems__desc {
    font-size: 17px;
    color: var(--text-secondary);
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.problems__card {
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.problems__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.problems__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.problems__card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.problems__card-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.problems__card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.problems__card-problem {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--beige-200);
}

.problems__card-solution {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problems__card-solution strong {
    color: var(--primary);
}

.problems__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 56px;
}

.problems__cta p {
    font-size: 17px;
    color: var(--text-secondary);
}

.problems__cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-md);
}

.problems__cta-btn:hover {
    transform: translateY(-2px);
}

.problems__cta-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ----------------------------------------
   Reviews Section
   ---------------------------------------- */
.reviews {
    padding: var(--section-gap) 24px;
    background: var(--beige-100);
}

.reviews__container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.reviews__header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.reviews__tag img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.reviews__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-full);
    border: 2px solid var(--beige-200);
}

.reviews__rating strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}

.reviews__stars {
    font-size: 18px;
    color: var(--warning);
}

.reviews__rating span {
    font-size: 14px;
    color: var(--text-muted);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.reviews__card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    transition: var(--transition-base);
}

.reviews__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.reviews__card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.reviews__card-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
}

.reviews__card-info {
    flex: 1;
}

.reviews__card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.reviews__card-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews__card-stars {
    font-size: 16px;
    color: var(--warning);
}

.reviews__card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.reviews__card-date {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 48px auto 0;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-300);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.reviews__more:hover {
    background: var(--primary);
    color: var(--white);
}

.reviews__more img {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.reviews__more:hover img {
    filter: brightness(0) invert(1);
}

/* ----------------------------------------
   Blog Section
   ---------------------------------------- */
.blog {
    padding: var(--section-gap) 24px;
    background: var(--white);
}

.blog__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.blog__header-left {
    display: flex;
    flex-direction: column;
}

.blog__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--beige-100);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    width: fit-content;
}

.blog__tag img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.blog__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
}

.blog__header-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.blog__header-link:hover {
    gap: 12px;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog__card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    overflow: hidden;
    transition: var(--transition-base);
}

.blog__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog__card-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

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

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

.blog__card-body {
    padding: 24px;
}

.blog__card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog__card-date img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.blog__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog__card h3 a:hover {
    color: var(--primary);
}

.blog__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.blog__card-link:hover {
    gap: 10px;
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.faq {
    padding: var(--section-gap) 24px;
    background: var(--beige-100);
}

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

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.faq__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.faq__item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--beige-200);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq__item:hover {
    border-color: var(--primary);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq__toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-100);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: var(--transition-fast);
}

.faq__toggle::before {
    width: 10px;
    height: 2px;
}

.faq__toggle::after {
    width: 2px;
    height: 10px;
}

.faq__item.active .faq__toggle::after {
    transform: rotate(90deg);
}

.faq__item.active .faq__toggle {
    background: var(--primary);
}

.faq__item.active .faq__toggle::before,
.faq__item.active .faq__toggle::after {
    background: var(--white);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 56px;
}

.faq__cta span {
    font-size: 17px;
    color: var(--text-secondary);
}

.faq__cta-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
}

.faq__cta-btn:hover {
    transform: translateY(-2px);
}

/* ----------------------------------------
   Contact Section
   ---------------------------------------- */
.contact {
    padding: var(--section-gap) 24px;
    background: var(--white);
}

.contact__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 56px;
}

.contact__tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--beige-100);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.contact__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

.contact__desc {
    font-size: 17px;
    color: var(--text-secondary);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

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

.contact__card {
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
}

.contact__card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact__card-head img {
    width: 44px;
    height: 44px;
    padding: 10px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    filter: brightness(0) invert(1);
}

.contact__card-head span {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.contact__card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.contact__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--beige-200);
    transition: var(--transition-fast);
}

.contact__link:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact__link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.contact__link span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact__badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid var(--beige-200);
}

.contact__badges img {
    width: 16px;
    height: 16px;
}

.contact__form-wrap {
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
}

.contact__form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 28px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form-group {
    margin-bottom: 16px;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--beige-500);
}

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

.contact__error {
    display: none;
    margin-top: 6px;
    font-size: 13px;
    color: var(--error);
}

.contact__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.contact__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.contact__submit img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.contact__success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--success);
    background: var(--success-light);
    border-radius: var(--radius-md);
}

/* ----------------------------------------
   SEO Section
   ---------------------------------------- */
.seo {
    padding: var(--section-gap) 24px;
    background: var(--beige-100);
}

.seo__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.seo__header {
    text-align: center;
    margin-bottom: 48px;
}

.seo__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    border: 2px solid var(--beige-200);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.seo__tag img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.seo__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--secondary);
}

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

.seo__intro {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige-200);
    margin-bottom: 40px;
}

.seo__intro p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.seo__card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--beige-200);
}

.seo__card-num {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--beige-100);
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.seo__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.seo__card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.seo__cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-xl);
}

.seo__cta h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.seo__cta p {
    font-size: 16px;
    color: var(--beige-300);
    margin-bottom: 24px;
}

.seo__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    background: var(--accent);
    border-radius: var(--radius-md);
}

.seo__cta-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
}

.seo__cta-btn img {
    width: 20px;
    height: 20px;
}

/* ----------------------------------------
   Why Choose Us - Bento Box (reason)
   ---------------------------------------- */
.reason {
    padding: var(--section-gap) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.reason::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0.4;
    pointer-events: none;
}

.reason__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.reason__head {
    margin-bottom: 50px;
}

.reason__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.reason__badge img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.reason__headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
}

.reason__headline em {
    font-style: normal;
    color: var(--primary);
}

/* Bento Grid Layout */
.reason__bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

/* Base box styling */
.reason__box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.reason__box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.reason__box p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.reason__box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--beige-100), var(--beige-50));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.reason__box:hover .reason__box-icon {
    background: linear-gradient(145deg, var(--primary-glow), var(--accent-light));
}

.reason__box-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

/* Large box - spans 5 columns */
.reason__box--large {
    grid-column: span 5;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.reason__box--large .reason__box-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.reason__box--large .reason__box-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.reason__box--large:hover .reason__box-visual img {
    transform: scale(1.05);
}

.reason__box-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.reason__box-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.reason__box-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

.reason__box--large .reason__box-content {
    padding: 24px 28px 28px;
    flex: 1;
}

.reason__box--large .reason__box-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.reason__box--large .reason__box-icon img {
    width: 24px;
    height: 24px;
}

/* Small boxes - spans 3-4 columns */
.reason__box--small {
    grid-column: span 3;
}

.reason__box--small:nth-of-type(2) {
    grid-column: 6 / span 4;
}

.reason__box--small:nth-of-type(3) {
    grid-column: 10 / span 3;
}

.reason__box-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Wide box - full width */
.reason__box--wide {
    grid-column: span 12;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px 36px;
}

.reason__box--wide h3,
.reason__box--wide p {
    color: var(--white);
}

.reason__box--wide p {
    opacity: 0.9;
}

.reason__box-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.reason__box--wide .reason__box-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin-bottom: 0;
}

.reason__box--wide .reason__box-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.reason__box--wide:hover .reason__box-icon {
    background: rgba(255, 255, 255, 0.25);
}

.reason__box-info {
    flex: 1;
}

.reason__box-info h3 {
    margin-bottom: 6px;
}

.reason__box-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.reason__box-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.reason__box-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Medium boxes - spans 6 columns */
.reason__box--medium {
    grid-column: span 6;
}

.reason__box-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reason__box-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--beige-50);
    border-radius: var(--radius-full);
}

.reason__box-list img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(65%) saturate(465%) hue-rotate(74deg) brightness(97%) contrast(89%);
}

/* CTA box */
.reason__box--cta {
    grid-column: span 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--beige-100);
    border: 2px dashed var(--beige-300);
    padding: 28px 36px;
}

.reason__box--cta:hover {
    background: var(--beige-50);
    border-color: var(--primary);
}

.reason__box-cta-content h3 {
    margin-bottom: 4px;
}

.reason__box-cta-content p {
    margin: 0;
}

.reason__box-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.reason__box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.reason__box-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Responsive - Bento Box */
@media (max-width: 1200px) {
    .reason__box--large {
        grid-column: span 6;
    }

    .reason__box--small:nth-of-type(2) {
        grid-column: 7 / span 6;
    }

    .reason__box--small:nth-of-type(3) {
        grid-column: span 6;
        grid-row: 3;
    }
}

@media (max-width: 1024px) {
    .reason__bento {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .reason__box--large {
        grid-column: span 6;
        grid-row: span 1;
    }

    .reason__box--large .reason__box-visual {
        height: 180px;
    }

    .reason__box--small {
        grid-column: span 3;
    }

    .reason__box--small:nth-of-type(2),
    .reason__box--small:nth-of-type(3) {
        grid-column: span 3;
    }

    .reason__box--wide {
        grid-column: span 6;
    }

    .reason__box--medium {
        grid-column: span 6;
    }

    .reason__box--cta {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .reason {
        padding: 80px 0;
    }

    .reason__head {
        margin-bottom: 36px;
    }

    .reason__bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reason__box--large,
    .reason__box--small,
    .reason__box--small:nth-of-type(2),
    .reason__box--small:nth-of-type(3),
    .reason__box--wide,
    .reason__box--medium,
    .reason__box--cta {
        grid-column: span 1;
    }

    .reason__box {
        padding: 24px;
    }

    .reason__box-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .reason__box-stat {
        width: 100%;
    }

    .reason__box--cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .reason__box {
        padding: 20px;
    }

    .reason__box h3 {
        font-size: 18px;
    }

    .reason__box-icon {
        width: 48px;
        height: 48px;
    }

    .reason__box-icon img {
        width: 24px;
        height: 24px;
    }

    .reason__box--large .reason__box-visual {
        height: 160px;
    }

    .reason__box--wide {
        padding: 24px;
    }

    .reason__box--wide .reason__box-icon {
        width: 52px;
        height: 52px;
    }

    .reason__box-stat strong {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .reason__badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .reason__box--cta {
        padding: 20px;
    }

    .reason__box-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ----------------------------------------
   Projects Showcase (works)
   ---------------------------------------- */
.works {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--beige-100) 0%, var(--cream) 100%);
    position: relative;
    overflow: clip;
    max-width: 100%;
}

.works__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
}

.works__intro {
    max-width: 480px;
    margin-bottom: 40px;
}

.works__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.works__label img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(20%) saturate(1290%) hue-rotate(346deg) brightness(90%) contrast(92%);
}

.works__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.works__title em {
    font-style: normal;
    color: var(--primary);
}

.works__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Slider layout */
.works__slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--beige-300) transparent;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
}

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

.works__slider::-webkit-scrollbar-track {
    background: var(--beige-200);
    border-radius: 3px;
}

.works__slider::-webkit-scrollbar-thumb {
    background: var(--beige-400);
    border-radius: 3px;
}

/* Project card */
.works__project {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.works__project:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

/* Featured project */
.works__project--featured {
    flex: 0 0 420px;
}

.works__project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.works__project--featured .works__project-image {
    height: 240px;
}

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

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

.works__project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.works__project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.works__project-body {
    padding: 20px;
}

.works__project--featured .works__project-body {
    padding: 24px;
}

.works__project-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.works__project-icon {
    width: 44px;
    height: 44px;
    background: var(--beige-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.works__project-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

.works__project-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.works__project--featured .works__project-head h3 {
    font-size: 19px;
}

.works__project-head span {
    font-size: 13px;
    color: var(--text-muted);
}

.works__project-body > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.works__project-stats {
    display: flex;
    gap: 16px;
}

.works__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.works__stat img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(10%) saturate(500%) hue-rotate(346deg) brightness(95%) contrast(90%);
}

/* CTA card */
.works__project--cta {
    flex: 0 0 260px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.works__project--cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.works__cta-inner {
    text-align: center;
    padding: 30px;
}

.works__cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works__cta-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.works__cta-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.works__cta-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
}

.works__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.works__cta-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.works__cta-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1145%) hue-rotate(346deg) brightness(97%) contrast(90%);
}

/* Responsive - Works */
@media (max-width: 1024px) {
    .works__project--featured {
        flex: 0 0 380px;
    }

    .works__project {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .works {
        padding: 80px 0;
    }

    .works__intro {
        margin-bottom: 30px;
    }

    .works__slider {
        gap: 16px;
    }

    .works__project--featured {
        flex: 0 0 320px;
    }

    .works__project--featured .works__project-image {
        height: 200px;
    }

    .works__project {
        flex: 0 0 280px;
    }

    .works__project-image {
        height: 180px;
    }

    .works__project--cta {
        flex: 0 0 220px;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .works__container {
        padding: 0 16px;
    }

    .works__project--featured,
    .works__project {
        flex: 0 0 85vw;
    }

    .works__project--cta {
        flex: 0 0 70vw;
    }

    .works__project-body {
        padding: 16px;
    }

    .works__project-head h3 {
        font-size: 16px;
    }

    .works__cta-inner {
        padding: 24px;
    }

    .works__cta-icon {
        width: 52px;
        height: 52px;
    }

    .works__cta-inner h3 {
        font-size: 18px;
    }
}

@media (max-width: 375px) {
    .works__project--featured,
    .works__project {
        flex: 0 0 90vw;
    }

    .works__project--cta {
        flex: 0 0 75vw;
    }
}

/* ----------------------------------------
   Footer (ftr)
   ---------------------------------------- */
.ftr {
    position: relative;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    overflow: hidden;
}

.ftr__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(139, 94, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ftr__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px 0;
    position: relative;
    z-index: 1;
}

/* CTA Bar */
.ftr__cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    margin-bottom: 60px;
    transform: translateY(-40px);
    box-shadow: 0 20px 60px rgba(139, 94, 60, 0.3);
}

.ftr__cta-content {
    flex: 1;
    min-width: 280px;
}

.ftr__cta-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.ftr__cta-text {
    font-size: 15px;
    color: var(--beige-200);
}

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

.ftr__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.ftr__cta-btn--phone {
    background: var(--white);
    color: var(--primary);
}

.ftr__cta-btn--phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ftr__cta-btn--phone img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

.ftr__cta-btn--form {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ftr__cta-btn--form:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.ftr__cta-btn--form img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.ftr__cta-btn--form:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(24%) saturate(860%) hue-rotate(343deg) brightness(93%) contrast(89%);
}

/* Main Content */
.ftr__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ftr__brand {
    max-width: 360px;
}

.ftr__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.ftr__logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.3);
}

.ftr__logo-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.ftr__logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.ftr__logo-text strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.ftr__logo-text span {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.ftr__desc {
    font-size: 15px;
    color: var(--beige-400);
    line-height: 1.7;
    margin-bottom: 12px;
}

.ftr__slogan {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 24px;
}

.ftr__contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ftr__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--beige-400);
    transition: var(--transition-fast);
}

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

.ftr__contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.ftr__contact-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(16%) saturate(705%) hue-rotate(350deg) brightness(95%) contrast(89%);
}

/* Links */
.ftr__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ftr__col {
    min-width: 150px;
}

.ftr__heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.ftr__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

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

.ftr__nav a {
    font-size: 15px;
    color: var(--beige-400);
    transition: var(--transition-fast);
}

.ftr__nav a:hover {
    color: var(--accent);
    padding-left: 6px;
}

/* Trust Badges */
.ftr__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ftr__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

.ftr__trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.ftr__trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.ftr__trust-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ftr__trust-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.ftr__trust-text span {
    font-size: 13px;
    color: var(--beige-500);
}

/* Regions */
.ftr__regions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ftr__regions-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--beige-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ftr__regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ftr__region {
    padding: 8px 16px;
    font-size: 13px;
    color: var(--beige-400);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.ftr__region:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Bottom Bar */
.ftr__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 0;
}

.ftr__copyright {
    font-size: 14px;
    color: var(--beige-500);
}

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

.ftr__legal a {
    font-size: 14px;
    color: var(--beige-500);
    transition: var(--transition-fast);
}

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

.ftr__legal-sep {
    width: 4px;
    height: 4px;
    background: var(--beige-600);
    border-radius: 50%;
}

/* ----------------------------------------
   Fixed Call Button
   ---------------------------------------- */
.call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    box-shadow: 0 8px 32px var(--primary-glow);
    z-index: 999;
    animation: callPulse 2s infinite;
    transition: var(--transition-base);
}

.call-btn:hover {
    transform: scale(1.1);
}

.call-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 8px 32px var(--primary-glow);
    }
    50% {
        box-shadow: 0 8px 48px rgba(139, 94, 60, 0.5);
    }
}

/* ----------------------------------------
   Brands Section - Furniture Brands
   ---------------------------------------- */
.brands {
    padding: var(--section-gap) 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, var(--bg-light) 100%);
}

.brands__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.brands__head {
    text-align: center;
    margin-bottom: 56px;
}

.brands__label {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brands__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.brands__title em {
    color: var(--primary);
    font-style: normal;
}

.brands__desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.brands__item {
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brands__item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.15);
}

.brands__logo-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
}

.brands__logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.9);
}

.brands__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.brands__tag {
    font-size: 13px;
    color: var(--primary);
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 12px;
    font-weight: 600;
}

.brands__item--more {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
    border-color: var(--primary);
}

.brands__more-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.brands__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
    border-radius: 24px;
}

.brands__cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.brands__cta-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.brands__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    white-space: nowrap;
}

.brands__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.3);
}

/* ----------------------------------------
   Calculator Section - Price Estimator
   ---------------------------------------- */
.calculator {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
}

.calculator__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.calculator__head {
    text-align: center;
    margin-bottom: 56px;
}

.calculator__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.calculator__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.calculator__title em {
    color: var(--primary);
    font-style: normal;
}

.calculator__desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator__wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.calculator__form {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.calculator__group {
    margin-bottom: 32px;
}

.calculator__group:last-child {
    margin-bottom: 0;
}

.calculator__label-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.calculator__options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.calculator__option {
    position: relative;
    cursor: pointer;
}

.calculator__option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calculator__option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--bg-light);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    transition: var(--transition-base);
}

.calculator__option input[type="radio"]:checked + .calculator__option-card {
    border-color: var(--primary);
    background: var(--primary);
}

.calculator__option input[type="radio"]:checked + .calculator__option-card .calculator__option-name {
    color: var(--white);
}

.calculator__option input[type="radio"]:checked + .calculator__option-card .calculator__option-price {
    color: var(--white);
    opacity: 0.9;
}

.calculator__option:hover .calculator__option-card {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.calculator__option-card img {
    width: 36px;
    height: 36px;
    opacity: 0.85;
}

.calculator__option input[type="radio"]:checked + .calculator__option-card img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.calculator__option-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.calculator__option-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.calculator__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-base);
}

.calculator__input:focus {
    outline: none;
    border-color: var(--primary);
}

.calculator__complexity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.calculator__complexity-option {
    position: relative;
    cursor: pointer;
}

.calculator__complexity-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calculator__complexity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--bg-light);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    transition: var(--transition-base);
}

.calculator__complexity-option input[type="radio"]:checked + .calculator__complexity-card {
    border-color: var(--primary);
    background: var(--primary);
}

.calculator__complexity-option input[type="radio"]:checked + .calculator__complexity-card .calculator__complexity-icon,
.calculator__complexity-option input[type="radio"]:checked + .calculator__complexity-card .calculator__complexity-name,
.calculator__complexity-option input[type="radio"]:checked + .calculator__complexity-card .calculator__complexity-desc {
    color: var(--white);
}

.calculator__complexity-option:hover .calculator__complexity-card {
    border-color: var(--primary);
}

.calculator__complexity-icon {
    font-size: 20px;
    color: var(--primary);
}

.calculator__complexity-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.calculator__complexity-desc {
    font-size: 12px;
    color: var(--text-gray);
}

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

.calculator__extra {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 2px solid var(--secondary);
    border-radius: 10px;
    transition: var(--transition-base);
}

.calculator__extra:hover {
    border-color: var(--primary);
}

.calculator__extra input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.calculator__extra-text {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

.calculator__result {
    flex: 0 0 400px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.calculator__result-box {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
    border-radius: 16px;
    margin-bottom: 24px;
}

.calculator__result-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.calculator__result-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.calculator__result-note {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.calculator__btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-base);
    margin-bottom: 24px;
}

.calculator__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.3);
}

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

.calculator__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.calculator__feature img {
    width: 18px;
    height: 18px;
}

/* ----------------------------------------
   Comparison Section - Self vs Pro
   ---------------------------------------- */
.comparison {
    padding: var(--section-gap) 0;
    background: #FFFFFF;
}

.comparison__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.comparison__head {
    text-align: center;
    margin-bottom: 56px;
}

.comparison__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.comparison__title em {
    color: var(--primary);
    font-style: normal;
}

.comparison__desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison__table-wrap {
    margin-bottom: 48px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.comparison__th {
    padding: 24px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--bg-light);
}

.comparison__th--feature {
    width: 30%;
}

.comparison__th--diy {
    width: 35%;
    background: #F8F9FA;
}

.comparison__th--pro {
    width: 35%;
    background: var(--primary);
    color: var(--white);
}

.comparison__th-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison__th-content img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.comparison__feature {
    padding: 20px;
    border-bottom: 1px solid var(--secondary);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison__feature img {
    width: 20px;
    height: 20px;
}

.comparison__diy {
    padding: 20px;
    border-bottom: 1px solid var(--secondary);
    background: #F8F9FA;
    color: var(--text-gray);
}

.comparison__pro {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--primary);
    color: var(--white);
}

.comparison__highlight {
    font-weight: 700;
    color: var(--white);
}

.comparison__summary {
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
    border-radius: 20px;
}

.comparison__summary-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.comparison__summary-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.comparison__summary-text,
.comparison__summary-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.comparison__summary-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.comparison__stat {
    text-align: center;
}

.comparison__stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.comparison__stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.comparison__summary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.comparison__summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.3);
}

/* ----------------------------------------
   Responsive Design
   ---------------------------------------- */

/* Large screens */
@media (max-width: 1200px) {
    :root {
        --section-gap: 80px;
    }

    .brands__container,
    .calculator__container,
    .comparison__container {
        padding: 0 32px;
    }

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

    .benefits__card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .services__card--featured {
        grid-column: span 3;
        grid-row: span 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .services__card-image {
        height: 100%;
        min-height: 280px;
    }

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

    .warranty__grid {
        grid-template-columns: 1fr 1fr;
    }

    .warranty__main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 3;
        max-width: none;
        margin-bottom: 20px;
    }

    .ftr__main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ftr__brand {
        max-width: 100%;
    }

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

/* Tablets landscape */
@media (max-width: 1024px) {
    .brands__container,
    .calculator__container,
    .comparison__container {
        padding: 0 28px;
    }

    .nav__menu {
        display: none;
    }

    .nav__actions {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .nav__drawer {
        display: block;
    }

    .nav.menu-open .nav__drawer {
        opacity: 1;
        visibility: visible;
    }

    /* ---------- Calculator Section ---------- */
    .calculator__wrapper {
        flex-direction: column;
    }

    .calculator__form,
    .calculator__result {
        width: 100%;
    }

    .calculator__result {
        position: static;
    }

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

    .nav.menu-open .nav__burger span {
        background: transparent;
    }

    .nav.menu-open .nav__burger span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav.menu-open .nav__burger span::after {
        top: 0;
        transform: rotate(-45deg);
    }

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

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero__stat--1 { left: 0; }
    .hero__stat--2 { right: 0; }

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

    .about__content {
        max-width: 100%;
    }

    .coverage__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .process__line {
        display: none;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .seo__grid {
        grid-template-columns: 1fr;
    }

    .ftr__cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    .ftr__cta-actions {
        width: 100%;
        justify-content: center;
    }

    .ftr__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    :root {
        --section-gap: 70px;
    }

    .brands__container,
    .calculator__container,
    .comparison__container {
        padding: 0 24px;
    }

    .nav__phone span {
        display: none;
    }

    .nav__phone {
        padding: 10px;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits__card--featured {
        grid-column: span 1;
    }

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

    .services__card--featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .types__grid {
        grid-template-columns: 1fr;
    }

    .problems__grid {
        grid-template-columns: 1fr;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .warranty__grid {
        grid-template-columns: 1fr;
    }

    .warranty__main {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 2;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .call-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .call-btn img {
        width: 26px;
        height: 26px;
    }

    .ftr__links {
        grid-template-columns: 1fr 1fr;
    }

    .ftr__trust {
        grid-template-columns: 1fr;
    }

    .ftr__trust-item {
        justify-content: center;
    }

    /* ---------- Brands Section ---------- */
    .brands__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .brands__item {
        padding: 32px 20px;
    }

    .brands__logo-wrap {
        height: 75px;
    }

    .brands__cta {
        padding: 40px 32px;
    }

    /* ---------- Calculator Section ---------- */
    .calculator__options {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

    /* ---------- Comparison Section ---------- */
    .comparison__th {
        padding: 20px 16px;
        font-size: 14px;
    }

    .comparison__th-content {
        gap: 10px;
    }

    .comparison__th-content img {
        width: 20px;
        height: 20px;
    }

    .comparison__feature,
    .comparison__diy,
    .comparison__pro {
        padding: 16px;
        font-size: 14px;
    }

    .comparison__feature img {
        width: 18px;
        height: 18px;
    }

    .comparison__summary {
        padding: 40px 32px;
    }

    .comparison__summary-title {
        font-size: 24px;
    }

    .comparison__summary-desc {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-gap: 60px;
    }

    .brands__container,
    .calculator__container,
    .comparison__container {
        padding: 0 20px;
    }

    body {
        font-size: 15px;
    }

    .nav {
        padding: 12px 16px;
    }

    .nav__bar {
        padding: 8px 16px;
    }

    .nav__logo-text {
        font-size: 16px;
    }

    .nav__cta {
        display: none;
    }

    .hero {
        padding: 110px 16px 60px;
    }

    .hero__stat {
        padding: 12px 16px;
    }

    .hero__stat-icon {
        width: 40px;
        height: 40px;
    }

    .hero__stat-data strong {
        font-size: 18px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__card--featured {
        grid-column: span 1;
    }

    .process__timeline {
        grid-template-columns: 1fr;
    }

    .pricing__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pricing__row--head {
        flex-direction: row;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact__form-wrap {
        padding: 24px;
    }

    .ftr__cta-bar {
        transform: translateY(-20px);
        margin-bottom: 40px;
        padding: 24px 20px;
    }

    .ftr__cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .ftr__links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ftr__heading {
        text-align: center;
    }

    .ftr__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ftr__nav {
        align-items: center;
    }

    .ftr__nav a:hover {
        padding-left: 0;
    }

    .ftr__bottom {
        flex-direction: column;
        text-align: center;
    }

    .ftr__regions {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ftr__regions-list {
        justify-content: center;
    }

    /* ---------- Brands Section ---------- */
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .brands__item {
        padding: 30px 18px;
    }

    .brands__logo-wrap {
        height: 70px;
    }

    .brands__cta {
        padding: 36px 28px;
    }

    /* ---------- Calculator Section ---------- */
    .calculator__wrapper {
        flex-direction: column;
    }

    .calculator__form {
        width: 100%;
        padding: 28px 20px;
    }

    .calculator__result {
        width: 100%;
        position: static;
        padding: 28px 20px;
    }

    .calculator__options {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .calculator__option-card {
        padding: 20px 14px;
    }

    .calculator__complexity {
        gap: 12px;
    }

    /* ---------- Comparison Section ---------- */
    .comparison__wrapper {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .comparison__table-wrap {
        min-width: 600px;
    }

    .comparison__th {
        padding: 16px 12px;
        font-size: 13px;
    }

    .comparison__th-content {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .comparison__th-content img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .comparison__th-content span {
        white-space: nowrap;
    }

    .comparison__feature,
    .comparison__diy,
    .comparison__pro {
        padding: 14px 12px;
        font-size: 13px;
    }

    .comparison__feature {
        gap: 8px;
    }

    .comparison__feature img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .comparison__summary {
        padding: 32px 24px;
    }

    .comparison__summary-title {
        font-size: 22px;
    }

    .comparison__summary-desc {
        font-size: 14px;
    }

    .comparison__summary-stats {
        gap: 24px;
    }

    .comparison__stat-value {
        font-size: 32px;
    }

    .comparison__stat-label {
        font-size: 12px;
    }

    .comparison__summary-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ========================================
   Small Mobile - 375px
   ======================================== */
@media (max-width: 375px) {
    .brands__container,
    .calculator__container,
    .comparison__container {
        padding: 0 16px;
    }

    /* ---------- Navigation ---------- */
    .nav {
        padding: 10px 16px;
    }

    .nav.scrolled {
        padding: 6px 16px;
    }

    .nav__bar {
        padding: 6px 12px;
    }

    .nav__logo-icon {
        width: 36px;
        height: 36px;
    }

    .nav__logo-icon img {
        width: 20px;
        height: 20px;
    }

    .nav__logo-text {
        font-size: 18px;
    }

    .nav__drawer {
        left: 16px;
        right: 16px;
        padding: 20px;
    }

    .nav__drawer-links a {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* ---------- Hero ---------- */
    .hero__wrapper {
        padding: 0 16px 0;
    }

    .hero__main {
        text-align: center;
    }

    .hero__tag {
        font-size: 10px;
        padding: 6px 12px;
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero__tag img {
        width: 12px;
        height: 12px;
    }

    .hero__headline {
        font-size: 24px;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .hero__motto {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hero__intro {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero__cta-row {
        gap: 10px;
    }

    .hero__call {
        padding: 12px 16px;
        gap: 10px;
    }

    .hero__call-icon {
        width: 36px;
        height: 36px;
    }

    .hero__call-icon img {
        width: 16px;
        height: 16px;
    }

    .hero__call-info small {
        font-size: 9px;
    }

    .hero__call-info strong {
        font-size: 13px;
    }

    .hero__form-btn {
        padding: 14px 18px;
        font-size: 13px;
    }

    .hero__form-btn img {
        width: 14px;
        height: 14px;
    }

    .hero__sidebar {
        gap: 12px;
    }

    .hero__card {
        padding: 16px;
    }

    .hero__card-head {
        gap: 8px;
        margin-bottom: 12px;
    }

    .hero__card-head img {
        width: 22px;
        height: 22px;
    }

    .hero__card-head span {
        font-size: 14px;
    }

    .hero__card-list {
        gap: 4px;
    }

    .hero__card-list li {
        font-size: 12px;
        padding: 8px 10px;
        gap: 8px;
    }

    .hero__card-list img {
        width: 12px;
        height: 12px;
    }

    .hero__metrics {
        gap: 10px;
    }

    .hero__metric {
        padding: 14px 10px;
    }

    .hero__metric strong {
        font-size: 20px;
    }

    .hero__metric span {
        font-size: 10px;
    }

    /* ---------- Partners ---------- */
    .partners {
        padding: 14px 0;
    }

    .partners__brand {
        padding: 6px 12px;
    }

    .partners__brand span {
        font-size: 12px;
    }

    /* ---------- Advantages (adv) ---------- */
    .adv {
        padding: 60px 16px;
    }

    .adv__label {
        font-size: 11px;
        padding: 8px 14px;
    }

    .adv__row {
        padding: 16px;
    }

    .adv__icon {
        width: 44px;
        height: 44px;
    }

    .adv__icon img {
        width: 22px;
        height: 22px;
    }

    .adv__content h3 {
        font-size: 16px;
    }

    .adv__content p {
        font-size: 13px;
    }

    .adv__stat {
        min-width: 60px;
        padding: 8px 10px;
    }

    .adv__stat strong {
        font-size: 14px;
    }

    .adv__stat span {
        font-size: 10px;
    }

    /* ---------- Services (svc) ---------- */
    .svc {
        padding: 60px 16px;
    }

    .svc__label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .svc__text {
        font-size: 15px;
    }

    .svc__item {
        padding: 12px 14px;
        gap: 12px;
    }

    .svc__item-icon {
        width: 38px;
        height: 38px;
    }

    .svc__item-icon img {
        width: 20px;
        height: 20px;
    }

    .svc__item-text strong {
        font-size: 14px;
    }

    .svc__item-text small {
        font-size: 11px;
    }

    .svc__main-cta {
        padding: 14px 24px;
        font-size: 14px;
    }

    .svc__contact {
        padding: 16px;
        gap: 12px;
    }

    .svc__contact span {
        font-size: 12px;
    }

    .svc__contact a {
        font-size: 14px;
    }

    /* ---------- Moebel (Furniture Types) ---------- */
    .moebel {
        padding: 60px 0;
    }

    .moebel__container {
        padding: 0 16px;
    }

    .moebel__label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .moebel__featured-content {
        padding: 20px;
    }

    .moebel__featured-head h3 {
        font-size: 18px;
    }

    .moebel__featured-head span {
        font-size: 12px;
    }

    .moebel__featured-content > p {
        font-size: 13px;
    }

    .moebel__featured-details {
        gap: 8px;
    }

    .moebel__detail {
        padding: 8px 12px;
        font-size: 12px;
    }

    .moebel__featured-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .moebel__grid {
        gap: 10px;
    }

    .moebel__card {
        padding: 14px 10px;
    }

    .moebel__card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .moebel__card-icon img {
        width: 22px;
        height: 22px;
    }

    .moebel__card h3 {
        font-size: 13px;
    }

    .moebel__card-sub {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .moebel__card-info {
        padding: 8px 10px;
        font-size: 11px;
    }

    .moebel__card-cta-inner {
        min-height: 90px;
    }

    .moebel__card-cta-inner span {
        font-size: 12px;
    }

    .moebel__card-cta-inner strong {
        font-size: 14px;
    }

    /* ---------- Firm (About) ---------- */
    .firm {
        padding: 60px 0;
    }

    .firm__container {
        padding: 0 16px;
    }

    .firm__visual {
        min-height: 180px;
    }

    .firm__body {
        padding: 20px 16px;
    }

    .firm__label {
        font-size: 11px;
        padding: 5px 12px;
    }

    .firm__title {
        font-size: 26px;
    }

    .firm__slogan {
        font-size: 14px;
    }

    .firm__text p {
        font-size: 13px;
    }

    .firm__points {
        padding: 14px;
        gap: 12px;
    }

    .firm__point-icon {
        width: 32px;
        height: 32px;
    }

    .firm__point-icon img {
        width: 16px;
        height: 16px;
    }

    .firm__point-text strong {
        font-size: 13px;
    }

    .firm__point-text span {
        font-size: 11px;
    }

    .firm__btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .firm__badge strong {
        font-size: 18px;
    }

    .firm__badge span {
        font-size: 10px;
    }

    /* ---------- Coverage ---------- */
    .coverage {
        padding: 60px 16px;
    }

    .coverage__tag {
        font-size: 11px;
        padding: 8px 16px;
    }

    .coverage__region {
        padding: 14px;
        font-size: 13px;
    }

    .coverage__region-icon {
        width: 36px;
        height: 36px;
    }

    .coverage__region-icon img {
        width: 18px;
        height: 18px;
    }

    .coverage__region-info h4 {
        font-size: 14px;
    }

    .coverage__cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ---------- Ablauf (Process) ---------- */
    .ablauf {
        padding: 60px 16px;
    }

    .ablauf__badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .ablauf__subtitle {
        font-size: 14px;
    }

    .ablauf__card {
        padding: 20px 16px;
    }

    .ablauf__card-num {
        font-size: 32px;
        top: 10px;
        right: 12px;
    }

    .ablauf__card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .ablauf__card-icon img {
        width: 24px;
        height: 24px;
    }

    .ablauf__card-content h3 {
        font-size: 17px;
    }

    .ablauf__card-content p {
        font-size: 13px;
    }

    .ablauf__card-tip {
        font-size: 11px;
        padding: 6px 10px;
    }

    .ablauf__card-highlight {
        font-size: 12px;
        padding: 10px 12px;
    }

    .ablauf__slot {
        font-size: 10px;
        padding: 5px 10px;
    }

    .ablauf__final {
        padding: 28px 20px;
    }

    .ablauf__final-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .ablauf__final-icon img {
        width: 32px;
        height: 32px;
    }

    .ablauf__final-num {
        font-size: 36px;
    }

    .ablauf__final h3 {
        font-size: 22px;
    }

    .ablauf__final p {
        font-size: 13px;
    }

    .ablauf__final-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .ablauf__action {
        padding: 20px;
        margin-top: 40px;
    }

    .ablauf__action-text strong {
        font-size: 16px;
    }

    .ablauf__action-text span {
        font-size: 12px;
    }

    .ablauf__btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    /* ---------- Tarife (Pricing) ---------- */
    .tarife {
        padding: 60px 16px;
    }

    .tarife__badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .tarife__subtitle {
        font-size: 14px;
    }

    .tarife__trust {
        gap: 8px;
        margin-bottom: 36px;
    }

    .tarife__trust-item {
        padding: 8px 12px;
        font-size: 11px;
    }

    .tarife__card {
        padding: 20px 16px;
    }

    .tarife__card-icon {
        width: 48px;
        height: 48px;
    }

    .tarife__card-icon img {
        width: 24px;
        height: 24px;
    }

    .tarife__card-head h3 {
        font-size: 18px;
    }

    .tarife__item {
        padding: 10px 0;
        font-size: 13px;
    }

    .tarife__item-price {
        font-size: 13px;
    }

    .tarife__special-label {
        font-size: 11px;
    }

    .tarife__special-item {
        padding: 14px;
    }

    .tarife__special-icon {
        width: 40px;
        height: 40px;
    }

    .tarife__special-text strong {
        font-size: 14px;
    }

    .tarife__special-text span {
        font-size: 11px;
    }

    .tarife__special-price strong {
        font-size: 18px;
    }

    .tarife__cta {
        padding: 20px;
        margin-top: 40px;
    }

    .tarife__cta-text strong {
        font-size: 16px;
    }

    .tarife__cta-text span {
        font-size: 12px;
    }

    .tarife__btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ---------- Warranty ---------- */
    .warranty {
        padding: 60px 16px;
    }

    .warranty__label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .warranty__main {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .warranty__main-badge {
        width: 80px;
        height: 80px;
    }

    .warranty__main-badge span {
        font-size: 16px;
    }

    .warranty__main-content h3 {
        font-size: 20px;
    }

    .warranty__main-content p {
        font-size: 14px;
    }

    .warranty__item {
        padding: 16px;
        gap: 12px;
    }

    .warranty__item-icon {
        width: 40px;
        height: 40px;
    }

    .warranty__item-icon img {
        width: 20px;
        height: 20px;
    }

    .warranty__item-text strong {
        font-size: 14px;
    }

    .warranty__item-text span {
        font-size: 11px;
    }

    .warranty__seal {
        padding: 24px 20px;
    }

    .warranty__seal-ring {
        width: 64px;
        height: 64px;
    }

    .warranty__seal h4 {
        font-size: 16px;
    }

    .warranty__seal p {
        font-size: 12px;
    }

    .warranty__cta {
        margin-top: 40px;
        gap: 16px;
    }

    .warranty__cta p {
        font-size: 14px;
    }

    .warranty__cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ---------- Problems ---------- */
    .problems {
        padding: 60px 16px;
    }

    .problems__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .problems__desc {
        font-size: 14px;
    }

    .problems__card {
        padding: 24px 20px;
    }

    .problems__card-icon {
        width: 44px;
        height: 44px;
    }

    .problems__card-icon img {
        width: 22px;
        height: 22px;
    }

    .problems__card-header h3 {
        font-size: 16px;
    }

    .problems__card-problem,
    .problems__card-solution {
        font-size: 13px;
    }

    .problems__cta {
        margin-top: 40px;
    }

    .problems__cta p {
        font-size: 14px;
    }

    .problems__cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ---------- Reviews ---------- */
    .reviews {
        padding: 60px 16px;
    }

    .reviews__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .reviews__rating {
        padding: 10px 18px;
        gap: 8px;
    }

    .reviews__rating strong {
        font-size: 20px;
    }

    .reviews__stars {
        font-size: 16px;
    }

    .reviews__rating span {
        font-size: 12px;
    }

    .reviews__card {
        padding: 24px 20px;
    }

    .reviews__card-avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .reviews__card-info h4 {
        font-size: 15px;
    }

    .reviews__card-info span {
        font-size: 11px;
    }

    .reviews__card-stars {
        font-size: 14px;
    }

    .reviews__card-text {
        font-size: 13px;
    }

    .reviews__card-date {
        font-size: 11px;
    }

    .reviews__more {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 36px;
    }

    /* ---------- Blog ---------- */
    .blog {
        padding: 60px 16px;
    }

    .blog__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .blog__header-link {
        font-size: 14px;
    }

    .blog__card-image {
        height: 160px;
    }

    .blog__card-body {
        padding: 18px;
    }

    .blog__card-date {
        font-size: 11px;
    }

    .blog__card h3 {
        font-size: 16px;
    }

    .blog__card-link {
        font-size: 13px;
    }

    /* ---------- FAQ ---------- */
    .faq {
        padding: 60px 16px;
    }

    .faq__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq__col {
        gap: 12px;
    }

    .faq__question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq__toggle {
        width: 22px;
        height: 22px;
    }

    .faq__answer p {
        padding: 0 18px 16px;
        font-size: 13px;
    }

    .faq__cta {
        margin-top: 40px;
        gap: 16px;
    }

    .faq__cta span {
        font-size: 14px;
    }

    .faq__cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ---------- Contact ---------- */
    .contact {
        padding: 60px 16px;
    }

    .contact__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .contact__desc {
        font-size: 14px;
    }

    .contact__grid {
        gap: 32px;
    }

    .contact__card {
        padding: 24px 20px;
    }

    .contact__card-head img {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .contact__card-head span {
        font-size: 18px;
    }

    .contact__card p {
        font-size: 13px;
    }

    .contact__link {
        padding: 12px 14px;
        gap: 10px;
    }

    .contact__link span {
        font-size: 14px;
    }

    .contact__badges span {
        padding: 8px 12px;
        font-size: 11px;
    }

    .contact__form-wrap {
        padding: 24px 20px;
    }

    .contact__form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__input,
    .contact__textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .contact__submit {
        padding: 16px;
        font-size: 15px;
    }

    /* ---------- SEO Section ---------- */
    .seo {
        padding: 60px 16px;
    }

    .seo__tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .seo__intro {
        padding: 24px 20px;
    }

    .seo__intro p {
        font-size: 15px;
    }

    .seo__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seo__card {
        padding: 20px;
    }

    .seo__card-num {
        font-size: 11px;
        padding: 3px 10px;
    }

    .seo__card h3 {
        font-size: 16px;
    }

    .seo__card p {
        font-size: 13px;
    }

    .seo__cta {
        padding: 28px 20px;
    }

    .seo__cta h3 {
        font-size: 20px;
    }

    .seo__cta p {
        font-size: 14px;
    }

    .seo__cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* ---------- Reason (Why Choose Us) ---------- */
    .reason {
        padding: 60px 0;
    }

    .reason__container {
        padding: 0 16px;
    }

    .reason__badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .reason__box {
        padding: 18px;
    }

    .reason__box h3 {
        font-size: 16px;
    }

    .reason__box p {
        font-size: 13px;
    }

    .reason__box-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .reason__box-icon img {
        width: 22px;
        height: 22px;
    }

    .reason__box--wide {
        padding: 20px;
    }

    .reason__box--wide .reason__box-icon {
        width: 48px;
        height: 48px;
    }

    .reason__box-stat strong {
        font-size: 22px;
    }

    .reason__box-stat span {
        font-size: 11px;
    }

    .reason__box--cta {
        padding: 18px;
    }

    .reason__box-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .reason__box-list li {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* ---------- Works (Portfolio) ---------- */
    .works {
        padding: 60px 0;
    }

    .works__container {
        padding: 0 16px;
    }

    .works__label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .works__text {
        font-size: 14px;
    }

    .works__project--featured,
    .works__project {
        flex: 0 0 90vw;
    }

    .works__project--cta {
        flex: 0 0 75vw;
        min-height: 280px;
    }

    .works__project-body {
        padding: 14px;
    }

    .works__project-icon {
        width: 38px;
        height: 38px;
    }

    .works__project-head h3 {
        font-size: 15px;
    }

    .works__project-head span {
        font-size: 11px;
    }

    .works__project-body > p {
        font-size: 12px;
    }

    .works__stat {
        font-size: 11px;
    }

    .works__cta-inner {
        padding: 20px;
    }

    .works__cta-icon {
        width: 48px;
        height: 48px;
    }

    .works__cta-inner h3 {
        font-size: 17px;
    }

    .works__cta-inner p {
        font-size: 12px;
    }

    .works__cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* ---------- Footer ---------- */
    .ftr__container {
        padding: 40px 16px 0;
    }

    .ftr__cta-bar {
        padding: 24px 20px;
        gap: 16px;
    }

    .ftr__cta-title {
        font-size: 18px;
    }

    .ftr__cta-text {
        font-size: 13px;
    }

    .ftr__cta-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .ftr__logo-icon {
        width: 36px;
        height: 36px;
    }

    .ftr__logo-text strong {
        font-size: 18px;
    }

    .ftr__desc {
        font-size: 13px;
    }

    .ftr__slogan {
        font-size: 12px;
    }

    .ftr__contact-item {
        font-size: 13px;
    }

    .ftr__links {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .ftr__col:last-child {
        grid-column: 1 / -1;
    }

    .ftr__heading {
        font-size: 14px;
        text-align: left;
    }

    .ftr__heading::after {
        left: 0;
        transform: none;
    }

    .ftr__nav {
        align-items: flex-start;
    }

    .ftr__nav a {
        font-size: 13px;
    }

    .ftr__trust {
        gap: 12px;
    }

    .ftr__trust-item {
        padding: 14px;
    }

    .ftr__trust-icon {
        width: 38px;
        height: 38px;
    }

    .ftr__trust-icon img {
        width: 20px;
        height: 20px;
    }

    .ftr__trust-text strong {
        font-size: 13px;
    }

    .ftr__trust-text span {
        font-size: 11px;
    }

    .ftr__regions {
        padding: 18px 0;
    }

    .ftr__regions-label {
        font-size: 11px;
    }

    .ftr__region {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ftr__bottom {
        padding: 20px 0;
    }

    .ftr__copyright {
        font-size: 12px;
    }

    .ftr__legal a {
        font-size: 12px;
    }

    /* ---------- Call Button ---------- */
    .call-btn {
        width: 55px;
        height: 55px;
        bottom: 16px;
        right: 16px;
    }

    .call-btn img {
        width: 24px;
        height: 24px;
    }

    /* ---------- Brands Section ---------- */
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .brands__item {
        padding: 28px 16px;
        gap: 10px;
    }

    .brands__logo-wrap {
        height: 65px;
        padding: 14px;
    }

    .brands__name {
        font-size: 15px;
    }

    .brands__tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .brands__more-icon svg {
        width: 36px;
        height: 36px;
    }

    .brands__cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }

    .brands__cta-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .brands__cta-content p {
        font-size: 14px;
    }

    .brands__btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 14px;
    }

    /* ---------- Calculator Section ---------- */
    .calculator__wrapper {
        flex-direction: column;
    }

    .calculator__form {
        width: 100%;
        padding: 24px 16px;
    }

    .calculator__result {
        width: 100%;
        position: static;
        padding: 24px 16px;
    }

    .calculator__options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .calculator__option-card {
        padding: 18px 12px;
        gap: 8px;
    }

    .calculator__option-card img {
        width: 28px;
        height: 28px;
    }

    .calculator__option-name {
        font-size: 12px;
        line-height: 1.3;
    }

    .calculator__option-price {
        font-size: 11px;
    }

    .calculator__complexity {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .calculator__complexity-card {
        padding: 16px 14px;
    }

    .calculator__complexity-icon {
        font-size: 18px;
    }

    .calculator__complexity-name {
        font-size: 14px;
    }

    .calculator__complexity-desc {
        font-size: 12px;
    }

    .calculator__extras {
        gap: 10px;
    }

    .calculator__extra {
        padding: 10px 14px;
    }

    .calculator__extra-text {
        font-size: 14px;
    }

    .calculator__result {
        padding: 32px 24px;
    }

    .calculator__result-box {
        padding: 24px;
    }

    .calculator__result-price {
        font-size: 44px;
    }

    /* ---------- Comparison Section ---------- */
    .comparison__wrapper {
        overflow-x: auto;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .comparison__table-wrap {
        min-width: 550px;
    }

    .comparison__th {
        padding: 14px 10px;
        font-size: 12px;
    }

    .comparison__th-content {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .comparison__th-content img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .comparison__th-content span {
        white-space: nowrap;
        font-size: 12px;
    }

    .comparison__feature,
    .comparison__diy,
    .comparison__pro {
        padding: 12px 10px;
        font-size: 12px;
    }

    .comparison__feature {
        gap: 6px;
    }

    .comparison__feature img {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .comparison__summary {
        padding: 28px 20px;
    }

    .comparison__summary-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .comparison__summary-desc {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .comparison__summary-stats {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 24px;
    }

    .comparison__stat {
        flex: 1;
    }

    .comparison__stat-value {
        font-size: 28px;
    }

    .comparison__stat-label {
        font-size: 11px;
    }

    .comparison__summary-btn {
        padding: 13px 24px;
        font-size: 13px;
    }
}
