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

:root {
    --primary: #1a7368;
    --primary-dark: #125c53;
    --primary-light: #e8f5f1;
    --accent: #2ca089;
    --accent-light: #d4f0e8;
    --text: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #122c28;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --container: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all var(--transition); border: 2px solid transparent;
    font-family: 'Inter', sans-serif; white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,115,104,0.35); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--primary); }
.btn--light:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn--outline-light { border-color: var(--white); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ========== SECTION COMMONS ========== */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section__tag {
    display: inline-block; font-size: 0.85rem; font-weight: 600;
    color: var(--primary); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.section__header { text-align: center; margin-bottom: 60px; }
.section__title { margin-bottom: 16px; color: #1a202c; }
.section__subtitle {
    color: var(--text-light); font-size: 1.1rem; max-width: 650px;
    margin: 0 auto; line-height: 1.7;
}

/* ========== HEADER ========== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header--scrolled { box-shadow: var(--shadow-lg); }
.header-top { background: var(--bg-dark); padding: 10px 0; transition: all var(--transition); }
.header--scrolled .header-top { padding: 0; height: 0; overflow: hidden; opacity: 0; }
.header-top__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.header-contact { display: flex; gap: 20px; flex-wrap: wrap; }

.header-contact a {
    color: rgba(255,255,255,0.85); font-size: 0.85rem;
    display: flex; align-items: center; gap: 6px; transition: color var(--transition);
}
.header-contact a:hover { color: var(--white); }
.header-contact a i { font-size: 0.85rem; }

.header-social { display: flex; gap: 12px; }
.header-social a {
    color: rgba(255,255,255,0.7); font-size: 1rem;
    transition: color var(--transition);
}
.header-social a:hover { color: var(--white); }

.header-main { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); padding: 16px 0; transition: padding var(--transition); }
.header--scrolled .header-main { padding: 10px 0; }
.header-main__inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 44px; height: 44px; background: var(--primary);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; color: var(--white); font-size: 1.3rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.1; }
.logo-subtitle { font-size: 0.72rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }

.nav__list { display: flex; gap: 4px; }
.nav__link {
    padding: 8px 16px; border-radius: 6px; font-size: 0.9rem;
    font-weight: 500; color: var(--text-light); transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--primary-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    position: relative; padding: 160px 24px 80px;
    background: linear-gradient(135deg, #122c28 0%, #1a4a41 40%, #1a7368 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__overlay {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(44,160,137,0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 20%, rgba(26,115,104,0.3) 0%, transparent 40%);
}
.hero__content { position: relative; z-index: 2; max-width: 800px; }
.hero__badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; color: var(--accent-light); font-size: 0.85rem;
    font-weight: 500; margin-bottom: 24px; letter-spacing: 1px;
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__subtitle {
    color: rgba(255,255,255,0.8); font-size: 1.15rem;
    max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__cards {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1000px; margin-top: 60px; width: 100%;
}

.hero-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
    padding: 24px 20px; text-align: center; transition: all var(--transition);
}
.hero-card:hover {
    background: rgba(255,255,255,0.14); transform: translateY(-4px);
    border-color: rgba(255,255,255,0.25);
}
.hero-card__icon {
    width: 48px; height: 48px; margin: 0 auto 14px;
    background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
}
.hero-card h3 { color: var(--white); font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.5; }
.hero-card small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

/* ========== ABOUT ========== */
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.about__image { position: relative; }
.about__image-wrapper {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image-wrapper img { width: 100%; height: 500px; object-fit: cover; }
.about__experience {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--primary); color: var(--white);
    border-radius: var(--radius); padding: 20px 28px;
    text-align: center; box-shadow: var(--shadow);
}
.about__experience span { display: block; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.about__experience small { font-size: 0.8rem; opacity: 0.9; }

.about__lead { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.7; }

.about__features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature { display: flex; gap: 16px; }
.feature__icon {
    flex-shrink: 0; width: 44px; height: 44px;
    background: var(--primary-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}
.feature__text h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.feature__text p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.about__stats { display: flex; gap: 40px; }
.stat__number { display: block; font-size: 2rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; line-height: 1; }
.stat__label { font-size: 0.85rem; color: var(--text-light); }

/* ========== SERVICES ========== */
.services__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; position: relative; overflow: hidden;
    border: 1px solid var(--border); transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow);
    border-color: var(--accent);
}
.service-card__number {
    position: absolute; top: 16px; right: 20px;
    font-size: 3rem; font-weight: 700; color: var(--primary-light);
    font-family: 'Playfair Display', serif; line-height: 1;
}
.service-card__icon {
    width: 52px; height: 52px; background: var(--accent-light);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 1.3rem;
    margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #1a202c; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* ========== PHILOSOPHY ========== */
.philosophy { background: linear-gradient(135deg, var(--bg-dark) 0%, #1a4a41 100%); }
.philosophy__content { text-align: center; max-width: 800px; margin: 0 auto; }
.philosophy__content .section__tag { color: var(--accent-light); }
.philosophy__quote {
    font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white); font-style: italic; line-height: 1.5;
    border-left: none; padding: 0;
}

/* ========== TEAM ========== */
.team__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}
.team-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__image {
    position: relative; height: 260px; overflow: hidden;
    background: var(--primary-light);
}
.team-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.team-card:hover .team-card__image img { transform: scale(1.05); }
.team-card__social {
    position: absolute; bottom: -40px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 10px;
    padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: bottom var(--transition);
}
.team-card:hover .team-card__social { bottom: 0; }
.team-card__social a {
    width: 34px; height: 34px; background: var(--white);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 0.85rem;
    transition: all var(--transition);
}
.team-card__social a:hover { background: var(--primary); color: var(--white); }
.team-card__info { padding: 20px; }
.team-card__info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.team-card__info p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; }

/* ========== VIDEO CONSULT ========== */
.video-consult__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.video-consult__content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.video-consult__content .btn { margin-top: 8px; }
.video-consult__image-wrapper {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.video-consult__image-wrapper img { width: 100%; height: 360px; object-fit: cover; }
.video-consult__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: rgba(255,255,255,0.95);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 1.5rem;
    box-shadow: var(--shadow); cursor: pointer; transition: all var(--transition);
}
.video-consult__play:hover { background: var(--primary); color: var(--white); transform: translate(-50%, -50%) scale(1.1); }

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary); transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-card__stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card__text {
    color: var(--text); font-style: italic; line-height: 1.7;
    margin-bottom: 16px; font-size: 0.95rem;
}
.testimonial-card__author { color: var(--primary); font-size: 0.9rem; }

/* ========== BLOG ========== */
.blog__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__image { position: relative; height: 220px; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__category {
    position: absolute; top: 14px; left: 14px;
    background: var(--primary); color: var(--white);
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
}
.blog-card__content { padding: 22px; }
.blog-card__date { color: var(--text-lighter); font-size: 0.8rem; display: block; margin-bottom: 8px; }
.blog-card__content h3 { font-size: 1.05rem; margin-bottom: 14px; line-height: 1.4; }
.blog-card__link {
    color: var(--primary); font-weight: 600; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.blog-card__link:hover { gap: 10px; }

/* ========== CTA ========== */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.cta__content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta__content h2 { color: var(--white); margin-bottom: 16px; }
.cta__content p { color: rgba(255,255,255,0.9); margin-bottom: 32px; font-size: 1.05rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact__info p { color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact__item { display: flex; gap: 14px; }
.contact__item-icon {
    flex-shrink: 0; width: 44px; height: 44px;
    background: var(--primary-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.05rem;
}
.contact__item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 4px; }
.contact__item p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }
.contact__item a { color: var(--primary); font-weight: 500; }
.contact__item a:hover { color: var(--primary-dark); }

.contact__social { display: flex; gap: 12px; }
.contact__social a {
    width: 42px; height: 42px; border: 2px solid var(--border);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 1.1rem;
    transition: all var(--transition);
}
.contact__social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.contact__form-wrapper {
    background: var(--white); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow);
}
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group--full { grid-column: 1 / -1; }
.form__group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form__group input, .form__group select, .form__group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.95rem;
    font-family: 'Inter', sans-serif; color: var(--text);
    transition: border-color var(--transition); background: var(--bg);
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,115,104,0.1);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 400; color: var(--text-light); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: auto; accent-color: var(--primary); }
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* ========== MAP ========== */
.map { line-height: 0; }
.map iframe { display: block; }

/* ========== FOOTER ========== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 40px; margin-bottom: 40px; }
.logo--footer { margin-bottom: 16px; }
.logo--footer .logo-title { color: var(--white); }
.logo--footer .logo-subtitle { color: rgba(255,255,255,0.6); }
.footer__brand > p { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.footer__features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.footer__feature { font-size: 0.82rem; display: flex; align-items: center; gap: 6px; }
.footer__feature i { color: var(--accent); }

.footer__nav h4, .footer__contact h4, .footer__hours h4 {
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 1rem; margin-bottom: 16px; font-weight: 600;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer__nav a:hover { color: var(--accent-light); }

.footer__contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.footer__contact li i { margin-top: 3px; color: var(--accent); flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.7); }
.footer__contact a:hover { color: var(--accent-light); }

.footer__hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer__hours li { font-size: 0.9rem; }
.footer__hours li strong { color: var(--white); }
.footer__hours small { color: var(--accent-light); font-size: 0.82rem; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.7);
    font-size: 0.95rem; transition: all var(--transition);
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 0.82rem;
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,0.6); }
.footer__legal a:hover { color: var(--accent-light); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; background: #25d366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--white); font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all var(--transition); animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); animation: none; }

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__cards { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__image { max-width: 500px; margin: 0 auto; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .video-consult__grid { grid-template-columns: 1fr; gap: 40px; }
    .video-consult__image { order: -1; }
}

@media (max-width: 768px) {
    .header-contact { display: none; }
    .header-top { display: none; }
    .header-main { padding: 12px 0; }
    .btn--cta { display: none; }
    .nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--white); padding: 80px 24px 24px; box-shadow: var(--shadow-lg); transition: right var(--transition); z-index: 1001; }
    .nav--open { right: 0; }
    .nav__list { flex-direction: column; gap: 4px; }
    .nav__link { display: block; padding: 12px 16px; font-size: 1rem; }
    .nav-toggle { display: flex; z-index: 1002; }
    .nav-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle--open span:nth-child(2) { opacity: 0; }
    .nav-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { padding: 140px 20px 60px; min-height: auto; }
    .hero__title br { display: none; }
    .hero__cards { grid-template-columns: 1fr 1fr; margin-top: 40px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .section { padding: 60px 0; }

    .services__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .cta__actions { flex-direction: column; align-items: center; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero__cards { grid-template-columns: 1fr; }
    .about__stats { flex-wrap: wrap; gap: 20px; }
    .contact__form { grid-template-columns: 1fr; }
    .contact__form-wrapper { padding: 24px; }
}
