/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
    --bg:         #0d0d0d;
    --bg-alt:     #111111;
    --bg-card:    #161616;
    --bg-card2:   #1c1c1c;
    --yellow:     #f5c518;
    --yellow-dk:  #c9a200;
    --yellow-dim: rgba(245, 197, 24, .10);
    --white:      #ffffff;
    --text:       #f0f0f0;
    --gray:       #9ca3af;
    --gray-dim:   #6b7280;
    --border:     #1e1e1e;
    --border-c:   #282828;
    --header-h:   72px;
    --r:          14px;
    --r-sm:       6px;
    --t:          .3s ease;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════ */
.sec-label {
    display: inline-block;
    font-size: .725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--yellow);
    margin-bottom: .875rem;
}
.sec-label--dark { color: rgba(0,0,0,.55); }

.sec-title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}

.sec-sub {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.75;
}

.sec-header {
    text-align: center;
    margin-bottom: 4rem;
}
.sec-header .sec-sub { max-width: 600px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8125rem 1.875rem;
    border-radius: var(--r-sm);
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t);
    border: 2px solid transparent;
}
.btn--yellow {
    background: var(--yellow);
    color: #0d0d0d;
    border-color: var(--yellow);
}
.btn--yellow:hover {
    background: var(--yellow-dk);
    border-color: var(--yellow-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,197,24,.3);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.28);
}
.btn--ghost:hover {
    border-color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.06);
}
.btn--dark {
    background: #0d0d0d;
    color: var(--yellow);
    border-color: #0d0d0d;
    font-weight: 700;
}
.btn--dark:hover {
    background: #080808;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--t), border-bottom-color var(--t);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(13,13,13,.96);
    border-bottom-color: var(--border-c);
    backdrop-filter: blur(16px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
}
.nav__logo-mark { color: var(--yellow); font-size: 1rem; }
.nav__logo-img { height: 40px; width: auto; display: block; }

.nav__list {
    display: flex;
    align-items: center;
    gap: .125rem;
}
.nav__link {
    padding: .5rem .9rem;
    border-radius: var(--r-sm);
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray);
    transition: all var(--t);
}
.nav__link:hover {
    color: var(--white);
    background: rgba(255,255,255,.07);
}
.nav__link--cta {
    background: var(--yellow);
    color: #0d0d0d !important;
    padding: .5rem 1.25rem;
    font-weight: 600;
}
.nav__link--cta:hover {
    background: var(--yellow-dk) !important;
}

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

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-h);
}

.hero__inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero__content { max-width: 560px; }

.hero__badge {
    display: inline-block;
    background: var(--yellow-dim);
    color: var(--yellow);
    border: 1px solid rgba(245,197,24,.22);
    padding: .375rem 1rem;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 1.75rem;
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.375rem;
}
.hero__title em {
    font-style: normal;
    color: var(--yellow);
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero image */
.hero__visual {
    display: flex;
    justify-content: flex-end;
}
.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.hero__img-wrap::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    top: 14px;
    left: 14px;
    border: 2px solid var(--yellow);
    border-radius: var(--r);
    opacity: .4;
    pointer-events: none;
}
.hero__img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r);
    display: block;
    position: relative;
    z-index: 1;
}

/* Hero stats bar */
.hero__bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-c);
}
.hero__stats {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.hero__stat-n {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -.02em;
}
.hero__stat-l {
    font-size: .775rem;
    color: var(--gray-dim);
    margin-top: .375rem;
    text-align: center;
    line-height: 1.4;
}
.hero__stat-div {
    width: 1px;
    height: 36px;
    background: var(--border-c);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__visual { position: relative; }

.about__img-wrap {
    border-radius: var(--r);
    overflow: hidden;
}
.about__img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
}
.about__visual:hover .about__img { transform: scale(1.02); }

.about__badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--yellow);
    color: #0d0d0d;
    padding: 1.25rem 1.5rem;
    border-radius: var(--r);
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.about__badge-n {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}
.about__badge-l {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: .25rem;
    display: block;
}

.about__lead {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: var(--r);
    padding: 1.375rem 1.5rem;
    transition: border-color var(--t);
}
.about-card:hover { border-color: rgba(245,197,24,.3); }

.about-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--yellow-dim);
    color: var(--yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-card h3 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .325rem;
}
.about-card p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,197,24,.28);
    box-shadow: 0 24px 48px rgba(0,0,0,.5);
}

.svc-card__photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.svc-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.svc-card:hover .svc-card__photo img { transform: scale(1.07); }

.svc-card__body { padding: 1.75rem; }

.svc-card__icon {
    width: 40px;
    height: 40px;
    background: var(--yellow-dim);
    color: var(--yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .875rem;
}

.svc-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.svc-card__list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.svc-card__list li {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.5;
}
.svc-card__list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--yellow);
    border-radius: 50%;
    margin-top: .45rem;
}

/* ═══════════════════════════════════════════════
   SECTORES
═══════════════════════════════════════════════ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.sector-card {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: var(--r);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all var(--t);
}
.sector-card:hover {
    border-color: var(--yellow);
    background: var(--bg-card2);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(245,197,24,.12);
}

.sector-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--yellow-dim);
    color: var(--yellow);
    margin: 0 auto 1.25rem;
    transition: all var(--t);
}
.sector-card:hover .sector-card__icon {
    background: var(--yellow);
    color: #0d0d0d;
}

.sector-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .625rem;
}
.sector-card p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
═══════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.why__visual img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--r);
    display: block;
}

.why__lead {
    font-size: .9375rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.375rem 0;
    border-bottom: 1px solid var(--border);
}
.feature:first-child { padding-top: 0; }
.feature:last-child  { border-bottom: none; padding-bottom: 0; }

.feature__num {
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: .06em;
    padding-top: .15rem;
    width: 22px;
}
.feature__body h3 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .35rem;
}
.feature__body p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   EXPERIENCIA
═══════════════════════════════════════════════ */
.exp-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: start;
}

.exp__content p {
    font-size: .9375rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.exp__quote {
    border-left: 3px solid var(--yellow);
    padding: .875rem 1.25rem;
    background: var(--yellow-dim);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-style: italic;
    font-size: .9375rem;
    color: var(--text);
    line-height: 1.7;
    margin-top: 1.5rem;
    font-weight: 500;
}

.exp__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.exp-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: var(--r);
    padding: 1.875rem 1.5rem;
    text-align: center;
    transition: border-color var(--t);
}
.exp-stat:hover { border-color: rgba(245,197,24,.3); }

.exp-stat__n {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.exp-stat__l {
    font-size: .8rem;
    color: var(--gray-dim);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   VALORES
═══════════════════════════════════════════════ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.val-item {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: var(--r);
    padding: 1.5rem 1.25rem;
    transition: all var(--t);
}
.val-item:hover {
    border-color: rgba(245,197,24,.35);
    background: var(--bg-card2);
    transform: translateY(-3px);
}
.val-item__n {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: .06em;
    margin-bottom: .625rem;
}
.val-item h3 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.val-item p {
    font-size: .8125rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CTA / CONTACTO
═══════════════════════════════════════════════ */
.section--cta {
    background: var(--yellow);
    padding: 6rem 0;
}

.cta__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.875rem);
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.15;
    letter-spacing: -.025em;
    margin: .75rem 0 1rem;
}

.cta__sub {
    font-size: 1.0625rem;
    color: rgba(0,0,0,.6);
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.cta__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: .625rem;
    color: rgba(0,0,0,.65);
    font-size: .9375rem;
    font-weight: 500;
    transition: color var(--t);
}
.cta-contact:hover { color: #0d0d0d; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    color: var(--gray-dim);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer__logo-img { height: 50px; width: auto; display: block; margin-bottom: 1rem; }

.footer__brand p {
    font-size: .875rem;
    line-height: 1.75;
    margin-bottom: .75rem;
}
.footer__slogan {
    font-style: italic;
    color: rgba(255,255,255,.2) !important;
    font-size: .8125rem !important;
    margin-bottom: 0 !important;
}

.footer__col h4 {
    font-size: .75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.125rem;
}
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.footer__col a {
    font-size: .875rem;
    color: var(--gray-dim);
    transition: color var(--t);
}
.footer__col a:hover { color: var(--yellow); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.75rem;
    text-align: center;
    font-size: .8125rem;
}

/* ═══════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: #0d0d0d;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--t);
    box-shadow: 0 4px 16px rgba(245,197,24,.4);
    z-index: 900;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--yellow-dk);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sectors-grid  { grid-template-columns: repeat(2, 1fr); }
    .values-grid   { grid-template-columns: repeat(3, 1fr); }
    .footer__grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .about__badge  { right: 1.5rem; }
    .about__img    { height: 420px; }

    .why-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .why__visual img { height: 420px; }

    .exp-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .exp__stats    { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .nav__list {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: rgba(13,13,13,.98);
        border-bottom: 1px solid var(--border-c);
        flex-direction: column;
        align-items: stretch;
        padding: .75rem 1rem 1.25rem;
        gap: .125rem;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--t), opacity var(--t), visibility var(--t);
        backdrop-filter: blur(16px);
    }
    .nav__list.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__link { color: var(--gray); padding: .75rem 1rem; border-radius: var(--r-sm); }
    .nav__link:hover { color: var(--white); background: rgba(255,255,255,.07); }
    .nav__toggle { display: flex; }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero__content    { max-width: 100%; }
    .hero__actions    { justify-content: center; }
    .hero__visual     { justify-content: center; }
    .hero__img-wrap   { max-width: 100%; }
    .hero__img        { height: 320px; }
    .hero__img-wrap::after { display: none; }

    .hero__stats { flex-wrap: wrap; padding: 1.25rem; gap: .5rem; }
    .hero__stat  { flex: 0 0 calc(50% - .25rem); padding: .5rem; }
    .hero__stat-div { display: none; }

    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sectors-grid  { grid-template-columns: 1fr 1fr; }
    .values-grid   { grid-template-columns: repeat(2, 1fr); }
    .exp__stats    { grid-template-columns: repeat(2, 1fr); }

    .cta__contacts { flex-direction: column; align-items: center; }
    .footer__grid  { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .sectors-grid  { grid-template-columns: 1fr; }
    .values-grid   { grid-template-columns: 1fr; }
    .exp__stats    { grid-template-columns: 1fr 1fr; }
    .hero__stat    { flex: 0 0 calc(50% - .25rem); }
    .services-grid { max-width: 100%; }
}
