/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --bg-card-hover: #1e1e1e;
    --gold: #f0b429;
    --gold-light: #ffcf5c;
    --gold-glow: rgba(240, 180, 41, 0.3);
    --text-primary: #f5f5f0;
    --text-secondary: #d4d4d0;
    --text-muted: #888;
    --border: #2a2a2a;
    --border-light: #333;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Barlow', 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== TYPOGRAPHY ========== */
.section-title {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: #0d0d0d;
    box-shadow: 0 4px 24px var(--gold-glow);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

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

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    line-height: 1;
}

.logo__tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu__link {
    padding: 12px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

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

.mobile-menu__cta {
    margin-top: 16px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(240, 180, 41, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(240, 180, 41, 0.05) 0%, transparent 50%),
                var(--bg-primary);
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gold {
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
}

.hero__subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero__comparison {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.hero__price {
    display: flex;
    flex-direction: column;
}

.hero__price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero__price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

.hero__price--old .hero__price-value {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
}

.hero__price-value--gold {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.hero__vs {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero__benefit-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ========== BEFORE/AFTER SLIDER ========== */
.before-after {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.before-after__img {
    position: absolute;
    inset: 0;
}

.before-after__img--after {
    clip-path: inset(0 50% 0 0);
}

.before-after__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.before-after__placeholder--before {
    background: linear-gradient(135deg, #2a1f0a 0%, #1a1508 50%, #0d0d0d 100%);
    color: #8b7355;
}

.before-after__placeholder--after {
    background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 50%, #0d0d0d 100%);
    color: var(--gold);
}

.before-after__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0,0,0,0.7);
    padding: 4px 12px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.before-after__label--after {
    left: auto;
    right: 16px;
}

.before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.before-after__handle-line {
    flex: 1;
    width: 2px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

.before-after__handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--gold-glow);
    flex-shrink: 0;
    pointer-events: auto;
}

.before-after__handle-circle svg {
    width: 20px;
    height: 20px;
    color: #0d0d0d;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 64px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card--popular {
    border-color: var(--gold);
    box-shadow: 0 4px 24px var(--gold-glow);
}

.service-card--popular:hover {
    border-color: var(--gold-light);
    box-shadow: 0 16px 48px var(--gold-glow);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0d0d0d;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.service-card__header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.service-card__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.service-card__price {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-card__price span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    margin-top: 4px;
}

.service-card__warranty {
    margin-top: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.service-card__features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.service-card__features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* ========== ADD-ONS ========== */
.addons__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--text-muted);
}

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

.addon-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.addon-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.addon-card__icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    color: var(--gold);
}

.addon-card__icon svg {
    width: 100%;
    height: 100%;
}

.addon-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.gallery__card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery__before,
.gallery__after {
    position: absolute;
    inset: 0;
    transition: opacity var(--transition);
}

.gallery__after {
    opacity: 0;
}

.gallery__card:hover .gallery__after {
    opacity: 1;
}

.gallery__card:hover .gallery__before {
    opacity: 0;
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px;
    text-align: center;
}

.gallery__placeholder--before {
    background: linear-gradient(135deg, #2a2018 0%, #1a150d 100%);
    color: #8b7355;
}

.gallery__placeholder--after {
    background: linear-gradient(135deg, #1a2a1a 0%, #142014 100%);
    color: var(--gold);
}

.gallery__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 10px;
    border-radius: 4px;
    color: var(--text-muted);
}

.gallery__tag--after {
    background: rgba(240, 180, 41, 0.2);
    color: var(--gold);
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.reviews__stars svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.reviews__rating {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.review-card__quote {
    font-family: 'Bebas Neue', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    margin-top: 12px;
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__author strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.review-card__author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.review-card__stars svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.reviews__cta {
    text-align: center;
    margin-top: 48px;
}

/* ========== QUOTE FORM ========== */
.quote {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.quote__success {
    display: none;
    text-align: center;
    padding: 64px 24px;
    max-width: 480px;
    margin: 0 auto;
}

.quote__success.active {
    display: block;
}

.quote__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.quote__success-icon svg {
    width: 100%;
    height: 100%;
}

.quote__success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.quote__success p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer__inner {
    text-align: center;
}

.footer__brand {
    margin-bottom: 32px;
}

.footer__brand .logo__name {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.footer__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer__trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer__contact {
    margin-bottom: 32px;
}

.footer__phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.footer__phone:hover {
    color: var(--gold-light);
    text-shadow: 0 0 16px var(--gold-glow);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

/* ========== FLOATING CALL BUTTON ========== */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #0d0d0d;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px var(--gold-glow);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: all var(--transition);
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.floating-call svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 24px var(--gold-glow); }
    50% { box-shadow: 0 4px 32px rgba(240, 180, 41, 0.5); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .addons__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

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

    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .floating-call {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__benefits {
        gap: 12px;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .services__grid {
        margin-top: 32px;
    }

    .services,
    .gallery,
    .reviews,
    .quote {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero__comparison {
        flex-direction: row;
        gap: 12px;
    }

    .hero__price-value {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }
}
