/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --y: #f59e0b;
    --yd: #d97706;
    --dark: #0f1117;
    --dark2: #161b25;
    --dark3: #1e2535;
    --card: #242b3d;
    --border: rgba(245, 158, 11, 0.18);
    --gray: rgba(255, 255, 255, 0.5);
    --white: #fff;
    --fd: "Bebas Neue", sans-serif;
    --fb: "Barlow", sans-serif;
    --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--fb);
    background: var(--dark);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark2);
}
::-webkit-scrollbar-thumb {
    background: var(--y);
    border-radius: 3px;
}

/* ===== UTILITIES ===== */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--y);
    text-transform: uppercase;
    padding: 5px 16px;
    border: 1px solid var(--y);
    border-radius: 40px;
    margin-bottom: 16px;
}
.h2 {
    font-family: var(--fd);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
.h2 em {
    font-style: normal;
    color: var(--y);
}
.sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 52px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: var(--fb);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--tr);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-y {
    background: var(--y);
    color: #0f1117;
    border-color: var(--y);
}
.btn-y:hover {
    background: var(--yd);
    border-color: var(--yd);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}
.btn-o {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-o:hover {
    border-color: var(--y);
    color: var(--y);
    transform: translateY(-2px);
}
.section {
    padding: 96px 0;
}

/* ===== HEADER ===== */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition:
        background var(--tr),
        box-shadow var(--tr);
}
#hdr.scrolled {
    background: rgba(15, 17, 23, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hdr-in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-ico {
    width: 38px;
    height: 38px;
    background: var(--y);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-ico svg {
    width: 22px;
    height: 22px;
}
.logo-txt .l1 {
    display: block;
    font-family: var(--fd);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.logo-txt .l2 {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--y);
    text-transform: uppercase;
}
/* Nav */
nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--tr);
    letter-spacing: 0.02em;
}
nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}
nav a.cta {
    background: var(--y);
    color: #0f1117;
    padding: 8px 20px;
    margin-left: 8px;
}
nav a.cta:hover {
    background: var(--yd);
}
/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 910;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--tr);
}
.burger.on span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.on span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.on span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 28px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 65% 80% at 80% 50%,
            rgba(245, 158, 11, 0.06) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 40% 40% at 10% 80%,
            rgba(245, 158, 11, 0.04) 0%,
            transparent 60%
        );
}
/* Líneas diagonales decorativas */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-lines::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -5%;
    width: 55%;
    height: 140%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 38px,
        rgba(245, 158, 11, 0.04) 38px,
        rgba(245, 158, 11, 0.04) 39px
    );
}
.hero-lines::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--y) 40%,
        var(--y) 60%,
        transparent
    );
}
.hero-in {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fu 0.6s 0.1s both;
}
.hero-h1 {
    font-family: var(--fd);
    font-size: clamp(4rem, 9vw, 7.5rem);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    animation: fu 0.7s 0.25s both;
}
.hero-h1 .acc {
    color: var(--y);
    position: relative;
    display: inline-block;
}
.hero-h1 .acc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: var(--y);
    border-radius: 2px;
}
.hero-p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    margin-bottom: 38px;
    line-height: 1.75;
    animation: fu 0.7s 0.4s both;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fu 0.7s 0.55s both;
}
/* Badge circular */
.badge {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    animation: fu 0.8s 0.8s both;
}
.badge-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--y);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 22s linear infinite;
}
.badge-c {
    text-align: center;
    animation: cspin 22s linear infinite;
}
.badge-n {
    display: block;
    font-family: var(--fd);
    font-size: 3.2rem;
    color: var(--y);
    line-height: 1;
}
.badge-t {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bob 2s infinite;
}
.scroll-hint::before {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--y));
}

/* ===== STATS BAR ===== */
#stats {
    background: var(--y);
    padding: 0;
}
.stats-in {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 44px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    flex: 1;
    min-width: 160px;
}
.stat:last-child {
    border-right: none;
}
.stat-n {
    font-family: var(--fd);
    font-size: 2.1rem;
    color: #0f1117;
    letter-spacing: 0.02em;
    line-height: 1;
}
.stat-l {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== NOSOTROS ===== */
#nosotros {
    background: var(--dark2);
    position: relative;
}
#nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--y) 50%,
        transparent
    );
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0 56px;
}
.mv-card {
    background: var(--card);
    border-radius: 16px;
    padding: 40px 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--tr),
        border-color var(--tr);
}
.mv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--y);
}
.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}
.mv-ico {
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.mv-lb {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mv-txt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
}
.mv-line {
    width: 44px;
    height: 3px;
    background: var(--y);
    border-radius: 2px;
    margin-top: 22px;
}
/* Valores */
.vals {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.val {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 22px 24px;
    min-width: 110px;
    transition: var(--tr);
    cursor: default;
}
.val:hover {
    border-color: var(--y);
    transform: translateY(-4px);
}
.val-i {
    font-size: 1.65rem;
}
.val-n {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

/* ===== PRODUCTOS / CARRUSEL ===== */
#productos {
    background: var(--dark);
    position: relative;
}
.car-wrap {
    position: relative;
    overflow: hidden;
    margin: 48px 0 36px;
    border-radius: 0;
}
.car-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
}
.slide-img {
    position: absolute;
    inset: 0;
}
.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.slide:hover .slide-img img {
    transform: scale(1.04);
}
.slide-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 12, 18, 0.88) 0%,
        rgba(10, 12, 18, 0.5) 45%,
        rgba(10, 12, 18, 0.1) 100%
    );
}
.slide-cnt {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 60px;
    z-index: 2;
}
.slide-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.5s 0.1s,
        transform 0.5s 0.1s;
}
.slide.on .slide-cat {
    opacity: 1;
    transform: none;
}
.slide-h {
    font-family: var(--fd);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    margin-bottom: 16px;
    color: var(--white);
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.5s 0.25s,
        transform 0.5s 0.25s;
}
.slide.on .slide-h {
    opacity: 1;
    transform: none;
}
.slide-p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.5s 0.4s,
        transform 0.5s 0.4s;
}
.slide.on .slide-p {
    opacity: 1;
    transform: none;
}
.slide .btn {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.5s 0.55s,
        transform 0.5s 0.55s,
        background 0.3s,
        box-shadow 0.3s;
}
.slide.on .btn {
    opacity: 1;
    transform: none;
}
/* Controles */
.car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 17, 23, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    z-index: 10;
    backdrop-filter: blur(8px);
}
.car-btn:hover {
    background: var(--y);
    border-color: var(--y);
    color: #0f1117;
    transform: translateY(-50%) scale(1.08);
}
.car-prev {
    left: 18px;
}
.car-next {
    right: 18px;
}
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 10;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--tr);
}
.dot.on {
    background: var(--y);
    width: 26px;
    border-radius: 5px;
}
/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.chip {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--tr);
    cursor: default;
}
.chip:hover {
    border-color: var(--y);
    color: var(--y);
    transform: translateY(-2px);
}

/* ===== UBICACIÓN ===== */
#ubicacion {
    background: var(--dark2);
}
.map-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    margin-top: 48px;
    min-height: 460px;
    border: 1px solid var(--border);
}
.map-side {
    background: var(--card);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.info-b {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.info-ico {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-b strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.info-b p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.map-btn {
    margin-top: auto;
}
.map-frame {
    position: relative;
    min-height: 300px;
}
.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8) contrast(1.05);
}

/* ===== CONTACTO ===== */
#contacto {
    background: var(--dark);
    position: relative;
}
#contacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 158, 11, 0.3),
        transparent
    );
}
.form-box {
    max-width: 640px;
    background: var(--dark3);
    border-radius: 18px;
    padding: 44px 40px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 48px;
}
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.fg label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}
.fg input,
.fg textarea {
    background: var(--dark2);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 13px 16px;
    color: var(--white);
    font-family: var(--fb);
    font-size: 0.95rem;
    transition:
        border-color var(--tr),
        box-shadow var(--tr);
    outline: none;
    resize: vertical;
    width: 100%;
}
.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}
.fg input:focus,
.fg textarea:focus {
    border-color: var(--y);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}
.fg input.err,
.fg textarea.err {
    border-color: #f87171;
}
.f-ok {
    display: none;
    margin-top: 14px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #4ade80;
    text-align: center;
}
.f-ok.show {
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding-top: 68px;
}
.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 44px;
    padding-bottom: 52px;
}
.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ft-tag {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    max-width: 260px;
}
.ft-dom {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--y);
}
.ft-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ft-col a,
.ft-col p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 8px;
    transition: color var(--tr);
    line-height: 1.6;
}
.ft-col a:hover {
    color: var(--white);
}
.ft-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
}
.ft-bot p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}
.top-btn {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--y);
    letter-spacing: 0.08em;
    transition: var(--tr);
}
.top-btn:hover {
    color: var(--yd);
}

/* ===== ANIMATIONS ===== */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes cspin {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes bob {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}
/* Reveal */
.rev {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.rev.vis {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }
    .badge {
        display: none;
    }
}
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark2);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 899;
    }
    nav.open {
        transform: translateY(0);
    }
    nav a {
        padding: 13px 6px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.75);
    }
    nav a.cta {
        margin: 12px 0 0;
        border-radius: 6px;
        padding: 13px;
        text-align: center;
    }
    .burger {
        display: flex;
    }
    .slide-cnt {
        width: 100%;
        padding: 36px 28px;
        justify-content: flex-end;
    }
    .slide {
        height: 420px;
    }
    .map-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 280px;
    }
    .f-row {
        grid-template-columns: 1fr;
    }
    .ft-grid {
        grid-template-columns: 1fr;
    }
    .hero-h1 {
        font-size: clamp(3rem, 11vw, 5rem);
    }
    .form-box {
        padding: 28px 22px;
    }
    .stat {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .section {
        padding: 72px 0;
    }
    .wrap {
        padding: 0 18px;
    }
}