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

:root {
    --navy:       #0d1b2e;
    --navy-light: #162840;
    --navy-mid:   #1e3a5f;
    --blue:       #1a5fa8;
    --blue-hover: #2176c7;
    --blue-glow:  #3b90e0;
    --gray-dark:  #374151;
    --gray-mid:   #6b7280;
    --gray-light: #e5e9f0;
    --gray-bg:    #f4f6fa;
    --white:      #ffffff;
    --accent:     #3b90e0;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --shadow-sm:  0 1px 4px rgba(13,27,46,.06);
    --shadow-md:  0 4px 20px rgba(13,27,46,.10);
    --shadow-lg:  0 12px 40px rgba(13,27,46,.15);
    --shadow-xl:  0 24px 64px rgba(13,27,46,.18);

    --radius:     12px;
    --radius-sm:  8px;
    --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section__tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}

.section__title--left { text-align: left; }

.section__subtitle {
    font-size: 1.05rem;
    color: var(--gray-mid);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,95,168,.35);
}
.btn--primary:hover {
    background: var(--blue-hover);
    box-shadow: 0 8px 28px rgba(26,95,168,.45);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.45);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(13,27,46,.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
    padding: 0;
}

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

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

.navbar__logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
}

.navbar__logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .01em;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    padding: 8px 14px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.navbar__link:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.navbar__link--cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 9px 20px;
    box-shadow: 0 2px 12px rgba(26,95,168,.4);
}
.navbar__link--cta:hover {
    background: var(--blue-hover);
    box-shadow: 0 4px 20px rgba(26,95,168,.5);
    transform: translateY(-1px);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__code-bg {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-family: 'Fira Mono', 'Courier New', monospace;
    font-size: .82rem;
    line-height: 1.9;
    color: rgba(59,144,224,.22);
    white-space: pre;
    pointer-events: none;
    user-select: none;
    filter: blur(1.5px);
    width: 480px;
    animation: codeFloat 18s ease-in-out infinite alternate;
}

@keyframes codeFloat {
    0%   { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-52%) translateX(-12px); }
}

.hero__code-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        var(--navy) 42%,
        rgba(13,27,46,.92) 65%,
        rgba(13,27,46,.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero__text {
    max-width: 620px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue-glow);
    margin-bottom: 20px;
}
.hero__tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--blue-glow);
    border-radius: 2px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero__title--accent {
    color: var(--blue-glow);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
    letter-spacing: .02em;
}

.hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.75;
}

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

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 12px;
    position: relative;
}
.hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    80%       { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

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

/* =============================================
   CARDS
   ============================================= */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--gray-bg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    padding: 40px 32px;
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
    border-top-color: var(--blue);
}

.service-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26,95,168,.12) 0%, rgba(59,144,224,.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--blue);
    transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--blue);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: .93rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.card__link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition), color var(--transition);
}
.card__link:hover {
    color: var(--blue-hover);
    gap: 10px;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,144,224,.07) 0%, transparent 70%);
    pointer-events: none;
}

.process .section__tag   { color: var(--blue-glow); }
.process .section__title { color: var(--white); }
.process .section__subtitle { color: rgba(255,255,255,.5); }

.process__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.process__step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(59,144,224,.15);
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59,144,224,.12);
    border: 2px solid rgba(59,144,224,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue-glow);
    margin: 0 auto 20px;
    transition: background var(--transition), border-color var(--transition);
}
.process__step:hover .process__step-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.process__step-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.process__step-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

.process__connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(59,144,224,.2), rgba(59,144,224,.4), rgba(59,144,224,.2));
    margin-top: 96px;
    position: relative;
}
.process__connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 10px; height: 10px;
    border-top: 2px solid rgba(59,144,224,.5);
    border-right: 2px solid rgba(59,144,224,.5);
    transform: rotate(45deg);
}

/* =============================================
   PROJECTS
   ============================================= */
.projects { background: var(--white); }

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.project-card__img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.project-card:hover .project-card__img {
    transform: scale(1.05);
}

.project-card__tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--blue);
    color: var(--white);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.project-card__body {
    padding: 28px;
}

.project-card__title {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.project-card__desc {
    font-size: .9rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-card__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.project-card__meta span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--gray-bg); }

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

.about__desc {
    font-size: 1.05rem;
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.about__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.about__stat-label {
    font-size: .82rem;
    color: var(--gray-mid);
    margin-top: 4px;
    display: block;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about__values li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .93rem;
    color: var(--gray-dark);
    font-weight: 500;
}
.about__values li i {
    color: var(--blue);
    font-size: .85rem;
    background: rgba(26,95,168,.1);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__img-wrapper {
    width: 320px;
    height: 320px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.about__img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.about__badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: .84rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    animation: badgeFloat 4s ease-in-out infinite alternate;
}
.about__badge i {
    color: var(--blue);
    font-size: 1.1rem;
}
.about__badge--1 { bottom: 20px; left: -20px; animation-delay: 0s; }
.about__badge--2 { top: 20px;    right: -20px; animation-delay: 1.5s; }

@keyframes badgeFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--white); }

.contact__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__info-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(26,95,168,.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__info-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: .95rem;
    color: var(--navy);
    font-weight: 500;
    transition: color var(--transition);
}
.contact__info-value:hover { color: var(--blue); }

.contact__social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact__social-link {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--gray-light);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background var(--transition), color var(--transition);
}
.contact__social-link:hover {
    background: var(--blue);
    color: var(--white);
}

/* Form */
.contact__form {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

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

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form__label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .03em;
}

.form__input {
    font-family: var(--font-sans);
    font-size: .93rem;
    color: var(--gray-dark);
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form__input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,95,168,.12);
}
.form__input::placeholder { color: #b0b7c3; }

.form__select { appearance: none; cursor: pointer; }

.form__textarea { resize: vertical; min-height: 120px; }

.form__note {
    font-size: .78rem;
    color: var(--gray-mid);
    text-align: center;
    margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
}

.footer__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-top: 72px;
    padding-bottom: 60px;
}

.footer__logo {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}

.footer__brand-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 220px;
}

.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
    background: var(--blue);
    color: var(--white);
}

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

.footer__col-title {
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col ul a {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer__bottom p {
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}

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

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37,211,102,.6);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about__visual { justify-content: flex-start; }
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .navbar__menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(13,27,46,.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .navbar__menu.open { display: flex; }
    .navbar__link { width: 100%; padding: 12px 16px; }
    .navbar__toggle { display: flex; }

    .hero__code-bg { display: none; }

    .process__steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .process__step { max-width: 320px; width: 100%; padding: 20px 0; }
    .process__connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(59,144,224,.2), rgba(59,144,224,.4), rgba(59,144,224,.2));
    }
    .process__connector::after {
        right: -4px;
        top: auto;
        bottom: -6px;
        border-top: none;
        border-right: none;
        border-bottom: 2px solid rgba(59,144,224,.5);
        border-left: 2px solid rgba(59,144,224,.5);
        transform: rotate(-45deg);
    }

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

    .form__row { grid-template-columns: 1fr; }
    .contact__form { padding: 28px 20px; }

    .footer__links { grid-template-columns: 1fr 1fr; gap: 28px; }

    .about__img-wrapper { width: 260px; height: 260px; }
    .about__badge--1 { left: 0; }
    .about__badge--2 { right: 0; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .footer__links { grid-template-columns: 1fr; }
    .about__stats { flex-direction: column; gap: 20px; }
    .about__visual { display: none; }
    .section__title { font-size: 1.6rem; }
}
