/* ===== VARIABLES ===== */
:root {
    --bg: #0B0B0B;
    --bg-alt: #151515;
    --bg-card: #1C1C1C;
    --bg-deep: #050505;
    --accent: #C7A35A;
    --accent-hover: #D4B06A;
    --accent-glow: rgba(199, 163, 90, 0.08);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --white: #D6D6D6;
    --text: #B0B0B0;
    --text-secondary: #858585;
    --text-muted: #5A5A5A;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(199, 163, 90, 0.2);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-w: 1200px;
    --header-h: 72px;
    --radius: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.5s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; width: 100%; max-width: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
    position: relative;
    touch-action: pan-y;
}
.page-wrapper { overflow-x: hidden; width: 100%; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--bg-alt); }

.section__header--center { text-align: center; margin-bottom: 64px; }
.section__subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
}
.section__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.section__lead {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--whatsapp {
    background: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.2);
}
.btn--whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}
.btn--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFFFFF;
}
.btn--instagram:hover { transform: translateY(-2px); }
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn--gold {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn--gold:hover { background: var(--accent); color: var(--bg); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header--scrolled { border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; z-index: 1001; }
.nav__logo-img { height: 76px; width: auto; opacity: 0.9; transition: var(--transition); }
.nav__logo:hover .nav__logo-img { opacity: 1; }
.nav__list { display: flex; gap: 40px; }
.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--white); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav__social:hover { color: var(--accent); }
.nav__social svg { width: 18px; height: 18px; }
.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: 20px; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav__close { display: none; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
}
@media (min-width: 769px) {
    .hero__bg-img { transform: scale(1.05); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11,11,11,0.8) 0%, rgba(11,11,11,0.55) 40%, rgba(11,11,11,0.85) 100%),
        linear-gradient(90deg, rgba(11,11,11,0.7) 0%, transparent 60%);
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 160px 24px 120px;
    max-width: 720px;
}
.hero__logo {
    height: 120px;
    width: auto;
    margin-bottom: 32px;
    opacity: 0.65;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}
.hero__badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(199, 163, 90, 0.1);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(199, 163, 90, 0.2);
    margin-bottom: 40px;
}
.hero__title {
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}
.hero__subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}
.hero__description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 440px;
    font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats bar */
.hero__stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 28px 24px;
}
.hero__stat { text-align: center; }
.hero__stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero__stat-number::after { content: '+'; font-weight: 600; }
.hero__stat-number-text {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero__stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 8px;
    font-weight: 500;
}


/* ===== PROCESS ===== */
.process__stages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.process__stage {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.process__stage:hover { border-color: var(--border-hover); }
.process__stage-header {
    padding: 32px 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.process__stage-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.4;
}
.process__stage-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}
.process__stage-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.process__stage-image img,
.process__stage-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}
.process__stage:hover .process__stage-image img,
.process__stage:hover .process__stage-image video { transform: scale(1.08); }
.process__steps { padding: 24px 32px 32px; }
.process__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.process__step:last-child { border-bottom: none; }
.process__step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}
.process__step-content h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.process__step-content p { font-size: 13px; color: var(--text-muted); font-weight: 300; }


/* ===== WHY ===== */
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why__features { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why__feature { display: flex; gap: 16px; align-items: flex-start; }
.why__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
    flex-shrink: 0;
}
.why__feature-icon svg { width: 18px; height: 18px; color: var(--accent); }
.why__feature h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why__feature p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.why__image { position: relative; border-radius: var(--radius); overflow: hidden; }
.why__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 6s ease-out;
}
.why__image:hover img { transform: scale(1.04); }

/* ===== GALLERY ===== */
.gallery__categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery__filter {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.gallery__filter:hover { border-color: rgba(255,255,255,0.15); color: var(--white); }
.gallery__filter--active { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: var(--transition);
}
.gallery__item:hover .gallery__overlay { transform: translateY(0); }
.gallery__tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent);
    color: var(--bg);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.gallery__overlay h4 { color: var(--white); font-size: 14px; font-weight: 600; }

/* ===== EXPERIENCE ===== */
.experience__video-wrapper {
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.experience__video-wrapper video {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* ===== SERVICES ===== */
.services__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}
.service-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card--primary { position: relative; overflow: hidden; }
.service-card--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}
.service-card__badge {
    display: inline-block;
    padding: 3px 12px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.service-card__description { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }

/* ===== CONTACT ===== */
.contact__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
    align-items: start;
}
.contact__form-wrapper {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact__form-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact__form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; font-weight: 300; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.form__group input, .form__group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
    transition: var(--transition);
}
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(255,255,255,0.15); }
.form__group input:focus, .form__group textarea:focus { outline: none; border-color: var(--accent); }
.form__group textarea { resize: vertical; min-height: 80px; }
.contact__info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact__card {
    background: var(--bg-card);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact__card:hover { border-color: var(--border-hover); }
.contact__card-icon { width: 32px; height: 32px; margin: 0 auto 12px; }
.contact__card-icon svg { width: 100%; height: 100%; color: var(--accent); }
.contact__card h3 { font-size: 14px; color: var(--white); margin-bottom: 6px; font-weight: 600; }
.contact__card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.4; font-weight: 300; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.footer__brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__logo-img { height: 56px; width: auto; opacity: 0.6; }
.footer__tagline { width: 100%; font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 300; }
.footer__links { display: flex; gap: 28px; }
.footer__links a { font-size: 12px; color: var(--text-muted); transition: var(--transition); font-weight: 400; letter-spacing: 0.02em; }
.footer__links a:hover { color: var(--accent); }
.footer__social-links { display: flex; gap: 8px; }
.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}
.footer__social:hover { border-color: var(--accent); color: var(--accent); }
.footer__social svg { width: 14px; height: 14px; }
.footer__bottom { padding-top: 24px; text-align: center; }
.footer__bottom p { font-size: 11px; color: rgba(255,255,255,0.15); font-weight: 300; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 26px; height: 26px; color: #FFFFFF; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.5); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .process__stages { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; gap: 48px; }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .gallery__item--large { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .section__header--center { margin-bottom: 32px; }
    .section__lead { font-size: 15px; }
    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg);
        box-shadow: -4px 0 40px rgba(0,0,0,0.5);
        padding: 80px 32px 32px;
        transition: var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--border);
        transform: translateX(100%);
    }
    .nav__menu.show { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 0; }
    .nav__link {
        display: block;
        padding: 16px 0;
        font-size: 15px;
        text-transform: none;
        letter-spacing: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav__link::after { display: none; }
    .nav__toggle { display: flex; }
    .nav__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--white);
    }
    .nav__actions .btn { display: none; }
    .hero__logo { height: 90px; margin-bottom: 24px; }
    .hero__content { padding: 120px 16px 80px; }
    .hero__stats { flex-direction: column; gap: 12px; align-items: center; padding: 20px 16px; }
    .hero__stat-number { font-size: 28px; }
    .hero__stat-number-text { font-size: 18px; }
    .hero__stat-label { font-size: 9px; letter-spacing: 2px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; }
    .process__stage-header { padding: 20px 16px 16px; }
    .process__stage-title { font-size: 17px; }
    .process__steps { padding: 16px 16px 20px; }
    .process__step { gap: 12px; padding: 10px 0; }
    .process__step-num { width: 24px; height: 24px; font-size: 11px; }
    .process__step-content h4 { font-size: 13px; }
    .process__step-content p { font-size: 12px; }
    .service-card { padding: 28px 20px; }
    .service-card__title { font-size: 17px; }
    .service-card__description { font-size: 13px; margin-bottom: 20px; }
    .services__main { grid-template-columns: 1fr; gap: 12px; }
    .experience__video-wrapper { max-width: 100%; border-radius: var(--radius-sm); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .contact__layout { grid-template-columns: 1fr; }
    .contact__form-wrapper { padding: 24px 16px; }
    .contact__info { grid-template-columns: 1fr 1fr; gap: 8px; }
    .contact__card { padding: 20px 12px; }
    .contact__card h3 { font-size: 13px; }
    .contact__card p { font-size: 12px; margin-bottom: 10px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__content { flex-direction: column; gap: 24px; text-align: center; }
    .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer__social-links { justify-content: center; }
    .why__features { gap: 24px; margin-top: 24px; }
    .why__feature h4 { font-size: 15px; }
    .why__feature p { font-size: 13px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero__content { padding: 110px 12px 70px; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item { aspect-ratio: 16/10; }
    .contact__info { grid-template-columns: 1fr; }
    .gallery__categories { justify-content: flex-start; }
}
