/* ===========================
   DOLOS INTERIJERI — STYLES
   Bold & Colorful Landing Page
   =========================== */

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

:root {
    --primary: #1e293b;
    --primary-dark: #0f172a;
    --primary-light: #475569;
    --accent: #d97706;
    --accent-light: #f59e0b;
    --accent-dark: #b45309;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE57;
    --google-yellow: #FBBC05;
    --google-blue: #4285F4;
    --google-green: #34A853;
    --google-red: #EA4335;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 0px;
    --radius-sm: 0px;
    --radius-full: 4px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04);
    --transition: 0.2s ease;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn--whatsapp:hover {
    background: var(--whatsapp-dark);
}

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

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

.hero .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn--outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    transition: color 0.3s ease;
}

.nav__logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

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

.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #fff;
}

.nav--scrolled .nav__link {
    color: var(--text-light);
}

.nav--scrolled .nav__link:hover {
    color: var(--primary);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 8px;
}

.nav__cta:hover {
    background: var(--whatsapp-dark);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 0;
    transition: var(--transition);
}

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

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
    background-image: url('../assets/hero/02-living-room-assembly-line-art.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    z-index: 0;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    display: none;
}

.hero__shape--1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    left: -50px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--whatsapp);
    top: 50%;
    left: 60%;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero__content {
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(30, 41, 59, 0.06);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero__title--accent {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    justify-content: center;
}

.hero__socials {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: center;
}

.hero__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.hero__socials a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: left;
    padding: 0 32px;
}

.hero__stat:first-child {
    padding-left: 0;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hero__stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.2;
}

.hero__stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* --- Section Header --- */
.section-header {
    text-align: left;
    margin-bottom: 48px;
}

.section-header__tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(30, 41, 59, 0.06);
    color: var(--text-light);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header__title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.section-header__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--bg);
}

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

.service-card {
    padding: 24px 24px 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.service-card--featured {
    border-left-color: var(--primary);
    border-color: var(--primary);
    border-left-width: 3px;
}

.service-card__badge {
    position: absolute;
    top: -11px;
    left: 20px;
    padding: 2px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-card:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card__price {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30, 41, 59, 0.04);
    color: var(--text-light);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 0;
    background: var(--bg) url('../assets/hero/10-exploded-furniture-technical_20260425_142348.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
}

.how-it-works > .container {
    position: relative;
    z-index: 1;
}

.steps {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step__number {
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 28px;
}

.step__content {
    padding-top: 0;
}

.step__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--bg-dark) url('../assets/hero/06-furniture-pieces-pattern_20260425_142133.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.about__inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about__content .section-header__tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about__content .section-header__title {
    text-align: left;
    margin-bottom: 24px;
    color: #fff;
    border-bottom-color: var(--accent);
}

.about__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.about__highlight svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--bg) url('../assets/patterns/bg-furniture_20260425_174943.png') center/cover no-repeat;
}

.ba-slider {
    max-width: 600px;
    margin: 0 auto;
}

.ba-slider__images {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.ba-slider__after {
    display: block;
    width: 100%;
    height: auto;
}

.ba-slider__before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-clip-path: inset(0 50% 0 0);
    clip-path: inset(0 50% 0 0);
}

.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.ba-slider__line {
    position: absolute;
    inset: 0;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.ba-slider__circle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
}

.ba-slider__circle svg {
    width: 16px;
    height: 16px;
}

.ba-slider__label {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ba-slider__label--before {
    left: 12px;
}

.ba-slider__label--after {
    right: 12px;
}

.ba-slider__overlay-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0.01;
    z-index: 3;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.ba-slider__overlay-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 44px;
    height: 200px;
    background: transparent;
    cursor: ew-resize;
}

.ba-slider__range {
    display: none;
}

/* --- Slideshow --- */
.slideshow {
    max-width: 600px;
    margin: 40px auto 0;
}

.slideshow__viewport {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    aspect-ratio: 3 / 4;
}

.slideshow__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.slideshow__img--active {
    opacity: 1;
}

.slideshow__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.slideshow__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
}

.slideshow__btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.slideshow__counter {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 50px;
    text-align: center;
}

.ba-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ba-slider__range::-moz-range-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.gallery__note code {
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__placeholder {
        min-height: 160px;
    }
}

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

    .gallery__item--wide {
        grid-column: span 1;
    }
}

/* --- Google icon on review cards --- */
.review-card__google {
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
}

.review-card__header {
    position: relative;
}

/* --- Reviews --- */
.reviews {
    padding: 100px 0;
    background:
        radial-gradient(circle, var(--border) 0.8px, transparent 0.8px) 0 0 / 28px 28px,
        var(--bg);
}

.reviews__google-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 40px;
    max-width: 480px;
    border: 1px solid var(--border);
}

.reviews__google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews__google-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

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

.reviews__google-score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.reviews__google-stars {
    display: flex;
    gap: 2px;
}

.reviews__google-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}


.reviews__cta {
    text-align: left;
}

.reviews__google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
}

.reviews__google-link:hover {
    box-shadow: var(--shadow);
    border-color: var(--google-blue);
    color: var(--google-blue);
}

/* --- Reviews show-more (Mobile) --- */
.reviews__carousel-controls,
.reviews__carousel-dots,
.reviews__carousel-counter {
    display: none;
}

.reviews__show-all {
    display: none;
}

@media (max-width: 768px) {
    .reviews__show-all {
        display: block;
        margin: 24px auto 0;
        padding: 14px 32px;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: var(--radius-full);
        font-family: var(--font);
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }

    .reviews__show-all.hidden {
        display: none;
    }
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: var(--bg) url('../assets/patterns/bg-tools_20260425_174943.png') center/cover no-repeat;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 28px 24px;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--accent);
}

.pricing-card--featured {
    border: 1px solid var(--primary);
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 20px;
}

.pricing-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card__price {
    margin-bottom: 24px;
}

.pricing-card__amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.pricing-card__from {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 4px;
}

.pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-card__amount--text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2325D366' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.pricing__note {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background:
        radial-gradient(circle, var(--border) 0.8px, transparent 0.8px) 0 0 / 28px 28px,
        var(--bg);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--accent-dark);
}

.faq__icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: left;
}

.cta-section__title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-section__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.cta-section .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn--outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 64px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 48px;
    width: auto;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__socials a:hover {
    background: var(--primary);
    color: #fff;
}

.footer__heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__links li,
.footer__contact li {
    margin-bottom: 12px;
}

.footer__links a,
.footer__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: #fff;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
}

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

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

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

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

@media (max-width: 768px) {
    .nav__logo-img {
        height: 36px;
        max-width: 130px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: -4px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        font-size: 1.05rem;
        padding: 12px 16px;
        width: 100%;
        color: var(--text);
    }

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

    .nav__cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__inner {
        gap: 32px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
        border-top: none;
        padding-top: 24px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stat {
        padding: 0;
        min-width: 120px;
    }

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

    .reviews__google-badge {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        align-items: flex-start;
    }

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

    .reviews__grid .review-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .reviews__grid .review-card:nth-child(n+4) {
        display: none;
    }

    .reviews__grid.show-all .review-card:nth-child(n+4) {
        display: block;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .step {
        gap: 16px;
    }
}

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

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__ctas {
        flex-direction: column;
    }

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

    .hero__stats {
        gap: 12px;
    }

    .hero__stat {
        min-width: 100px;
    }

    .btn--large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}
