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

:root {
    --bg: #F5F0E8;
    --bg-alt: #EDE7DB;
    --surface: #FFFFFF;
    --primary: #1B3A2D;
    --primary-light: #2D5E47;
    --accent: #C9A96E;
    --accent-light: #D4BA85;
    --text: #1B3A2D;
    --text-muted: #5C7A6B;
    --text-light: #8A9E92;
    --border: rgba(27, 58, 45, 0.1);
    --shadow-sm: 0 2px 8px rgba(27, 58, 45, 0.06);
    --shadow: 0 8px 32px rgba(27, 58, 45, 0.08);
    --shadow-lg: 0 16px 48px rgba(27, 58, 45, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -100px;
    right: -150px;
    animation: float1 25s ease-in-out infinite;
}

.shape--2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: 20%;
    left: -100px;
    animation: float2 30s ease-in-out infinite;
}

.shape--3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 60%;
    right: 10%;
    animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 80px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -60px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -50px) scale(0.9); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== SECTION ===== */
.section {
    padding: 100px 0;
}

.section-label {
    margin-bottom: 16px;
}

.section-label span {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 169, 110, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
}

/* ===== BUTTON ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--primary);
    color: var(--bg);
}

.btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27, 58, 45, 0.25);
}

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

.btn--ghost:hover {
    border-color: var(--primary);
    background: rgba(27, 58, 45, 0.04);
}

.btn--light {
    background: var(--bg);
    color: var(--primary);
    font-weight: 700;
}

.btn--light:hover {
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.logo__icon {
    color: var(--accent);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.01em;
}

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

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

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

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

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.header__phone:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg);
}

.header__phone svg {
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--bg);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

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

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

.hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

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

/* Hero visual */
.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 58, 45, 0.3) 100%);
}

.hero__stat-card {
    position: absolute;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.hero__stat-card--1 {
    bottom: 40px;
    left: -40px;
}

.hero__stat-card--2 {
    top: 40px;
    right: -30px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.hero__stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== ABOUT ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
}

.about__text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.about__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
}

.about__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.12);
    color: var(--accent);
    flex-shrink: 0;
}

/* About images */
.about__images {
    position: relative;
    min-height: 480px;
}

.about__img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about__img--main {
    width: 85%;
}

.about__img--main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__img--secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 5px solid var(--bg);
}

.about__img--secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about__stats-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--bg);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__stats-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent);
}

.about__stats-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 4px;
    display: block;
}

/* ===== SERVICES ===== */
.services {
    background: var(--primary);
    color: var(--bg);
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.services .section-label span {
    background: rgba(201, 169, 110, 0.15);
    color: var(--accent);
}

.services__heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 56px;
    max-width: 600px;
    color: var(--bg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--primary);
    padding: 36px 32px;
    position: relative;
    transition: all var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: var(--primary-light);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(201, 169, 110, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--bg);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__price span {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(201, 169, 110, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
}

.service-card__arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 240, 232, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.3);
    transition: all var(--transition);
}

.service-card:hover .service-card__arrow {
    border-color: var(--accent);
    color: var(--accent);
    transform: translate(4px, -4px);
}

/* ===== DOCTORS ===== */
.doctors {
    background: var(--primary);
    padding-bottom: 120px;
}

.doctors .section-label span {
    background: rgba(201, 169, 110, 0.15);
    color: var(--accent);
}

.doctors__heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 56px;
    max-width: 550px;
    color: var(--bg);
}

.doctors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    transition: all var(--transition);
}

.doctor-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.doctor-card__photo {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.doctor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card:hover .doctor-card__photo img {
    transform: scale(1.05);
}

.doctor-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(27, 58, 45, 0.8));
    display: flex;
    justify-content: flex-end;
}

.doctor-card__exp {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(27, 58, 45, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
}

.doctor-card__info {
    padding: 20px 20px 24px;
}

.doctor-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--bg);
    margin-bottom: 4px;
}

.doctor-card__role {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    font-weight: 400;
}

/* ===== CTA ===== */
.cta {
    background: var(--bg);
    padding: 0 0 100px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.cta__card {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 64px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta__card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 8px;
}

.cta__text {
    font-size: 1rem;
    color: rgba(27, 58, 45, 0.7);
}

.cta .btn--light {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.contact__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 36px;
}

.contact__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-xs);
    color: var(--accent);
    flex-shrink: 0;
}

.contact__item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.contact__item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact__item a {
    color: var(--primary);
    font-weight: 600;
}

.contact__item a:hover {
    color: var(--accent);
}

.contact__socials {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.contact__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #25D366;
    color: white;
    transition: all var(--transition);
}

.contact__social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

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

.contact__social-btn--outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg);
    box-shadow: var(--shadow);
}

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--surface);
}

.contact__map iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--bg);
    padding: 48px 0;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    margin-bottom: 24px;
}

.footer__logo .logo__icon {
    color: var(--accent);
}

.footer__logo .logo__text {
    color: var(--bg);
}

.footer__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    opacity: 0.5;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }

    .hero__title {
        font-size: 2.8rem;
    }

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

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

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

    /* Header mobile */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nav.open {
        max-height: 320px;
        padding: 20px 0;
    }

    .nav__link {
        padding: 14px 24px;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .burger {
        display: flex;
    }

    .header__phone {
        display: none;
    }

    /* Hero mobile */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__image-wrapper img {
        height: 400px;
    }

    .hero__stat-card--1 {
        left: 16px;
        bottom: 24px;
    }

    .hero__stat-card--2 {
        right: 16px;
        top: 24px;
    }

    /* About mobile */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__title {
        font-size: 1.8rem;
    }

    .about__images {
        min-height: 380px;
    }

    .about__img--main img {
        height: 300px;
    }

    .about__img--secondary img {
        height: 180px;
    }

    /* Services mobile */
    .services {
        border-radius: 24px 24px 0 0;
    }

    .services__heading {
        font-size: 1.6rem;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    /* Doctors mobile */
    .doctors__heading {
        font-size: 1.6rem;
    }

    .doctors__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* CTA mobile */
    .cta__card {
        flex-direction: column;
        padding: 40px 32px;
        text-align: center;
    }

    .cta__title {
        font-size: 1.6rem;
    }

    /* Contact mobile */
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__title {
        font-size: 1.8rem;
    }

    .contact__map iframe {
        height: 300px;
    }

    /* Footer mobile */
    .footer__top {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
    }

    .about__stats-badge {
        top: 10px;
        right: 10px;
        padding: 14px 18px;
    }

    .about__stats-number {
        font-size: 2rem;
    }

    .contact__socials {
        flex-direction: column;
    }

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