/* ── Variables ─────────────────────────────────────────── */
:root {
    --blue: #3b82f6;
    --blue-dark: #1e3a8a;
    --white: #ffffff;
    --gray: #9ca3af;
    --dark-bg: #111827;
    --darker-bg: #030712;
    --yellow: #f59e0b;
    --text: #f3f4f6;
    --font: 'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font);
    color: var(--text);
    background: var(--dark-bg);
    /* Soporte base para notch */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(1.25rem + env(safe-area-inset-top, 0px)) 3rem 1.25rem;
    z-index: 1000;
    transition: background .3s, backdrop-filter .3s;
}

.navbar.scrolled {
    background: rgba(3, 7, 18, .9);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
    transition: height 0.3s;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links ul li a {
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color .3s;
}

.nav-links ul li a:hover {
    color: var(--blue);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: .8rem 2.2rem;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
    border: none;
}

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

.btn-primary:hover {
    background: #e5e7eb;
}

.btn-secondary {
    background: rgba(0, 0, 0, .5);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--darker-bg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--darker-bg);
}

.btn-small {
    padding: .45rem 1.2rem;
    font-size: .8rem;
}

/* ── Fullscreen sections ─────────────────────────────────── */
.fullscreen {
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    min-height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg,
.bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    background-attachment: fixed;
}

.fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .78) 100%);
    z-index: -1;
}

.hero-content,
.content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.hero-content p,
.content p {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero tag */
.hero-tag,
.service-tag {
    display: inline-block;
    background: rgba(59, 130, 246, .2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, .4);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: .25rem .8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(3, 7, 18, .6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    z-index: 10;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.stat-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
}

/* ── Section labels ──────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: .75rem;
}

/* ── Padded sections ─────────────────────────────────────── */
.padded-section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.bg-dark {
    background: var(--dark-bg);
}

.bg-darkest {
    background: var(--darker-bg);
}

.bg-light {
    background: #1f2937;
}

/* ── Additional services grid ────────────────────────────── */
.services-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-extra-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color .3s, transform .3s;
}

.service-extra-card:hover {
    border-color: rgba(59, 130, 246, .4);
    transform: translateY(-4px);
}

.sec-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    margin-bottom: 1.25rem;
}

/* ── Why choose us ───────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.why-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color .3s, transform .3s;
}

.why-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.why-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(245, 158, 11, .3);
    line-height: 1;
    margin-bottom: .75rem;
}

.why-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .88rem;
    color: #94a3b8;
    margin: 0;
}

/* ── Trust Section (Clientes) ────────────────────────────── */
.trust-section {
    background: #f8fafc;
    padding: 6rem 2rem;
    color: #0f172a;
}

.trust-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #0f172a;
}

.trust-subtitle {
    font-size: 1.1rem;
    color: #475569;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.trust-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ── Nosotros ────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: #94a3b8;
}

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

.about-stat-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.ast-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: .25rem;
}

.ast-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

/* ── Vacancies grid ──────────────────────────────────────── */
.vacancies-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 3rem 1rem;
    color: #64748b;
    text-align: center;
}

.vacancies-spinner {
    width: 26px;
    height: 26px;
    border: 2px solid rgba(255, 255, 255, .1);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spinIt .7s linear infinite;
}

@keyframes spinIt {
    to {
        transform: rotate(360deg)
    }
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vacancy-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(8px);
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.vacancy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, .5);
    box-shadow: 0 12px 40px rgba(59, 130, 246, .12);
}

.vacancy-badge {
    display: inline-block;
    background: rgba(59, 130, 246, .15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, .3);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .2rem .65rem;
    border-radius: 20px;
}

.vacancy-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.vacancy-desc {
    font-size: .88rem;
    color: #94a3b8;
    flex: 1;
}

.vacancy-apply-btn {
    width: 100%;
    text-align: center;
    background: var(--white);
    color: var(--darker-bg);
    border: none;
    padding: .7rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.vacancy-apply-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

@keyframes card-reveal-anim {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.card-reveal {
    animation: card-reveal-anim .45s ease-out both;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.contact-detail-item svg {
    flex-shrink: 0;
    color: var(--blue);
}

.contact-detail-item a,
.contact-detail-item span {
    color: #94a3b8;
    font-size: .95rem;
    line-height: 1.5;
    transition: color .2s;
}

.contact-detail-item a:hover {
    color: var(--white);
}

.contact-qr {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: border-color 0.3s;
}

.contact-qr:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.qr-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    font-weight: 700;
}

.qr-image {
    width: 130px;
    height: 130px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

form {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1rem;
}

input,
textarea {
    width: 100%;
    padding: .9rem 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font);
    font-size: .95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

input:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .25);
}

textarea {
    resize: vertical;
}

.success-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    background: rgba(16, 185, 129, .12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, .3);
}

.hidden {
    display: none !important;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: #000;
    padding: 3rem 3rem 1.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.footer-logo img {
    height: 55px;
    width: auto;
    border-radius: 4px;
}

.footer-brand p {
    font-size: .85rem;
    color: #475569;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    font-size: .85rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: .8rem;
    color: #475569;
}

.admin-footer-link {
    color: rgba(255, 255, 255, .06);
    font-size: .5rem;
    transition: color .3s;
}

.admin-footer-link:hover {
    color: rgba(255, 255, 255, .25);
}

/* ── WhatsApp ────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    right: calc(30px + env(safe-area-inset-right, 0px));
    background: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
    z-index: 1000;
    transition: transform .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ── Application modal ───────────────────────────────────── */
.app-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, .88);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.app-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.app-modal-box {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
    transform: scale(.95) translateY(12px);
    transition: transform .25s;
}

.app-modal-overlay.open .app-modal-box {
    transform: scale(1) translateY(0);
}

.app-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.app-modal-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: .25rem;
}

.app-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.app-modal-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

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

.app-form-group {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1rem;
}

.app-form-group label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.app-form-group input {
    padding: .8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.app-submit-btn {
    width: 100%;
    position: relative;
    margin-top: .5rem;
    overflow: hidden;
}

.app-submit-btn.loading {
    pointer-events: none;
    opacity: .75;
}

.app-submit-btn.loading .btn-text {
    opacity: 0;
}

.app-submit-btn .btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, .2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spinIt .7s linear infinite;
    display: none;
}

.app-submit-btn.loading .btn-spinner {
    display: block;
}

.app-success {
    text-align: center;
    padding: 1.5rem 0 .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

.app-success h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.app-success p {
    font-size: .88rem;
    color: #94a3b8;
    margin: 0;
}

/* ── Fade-up animation ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Gallery ─────────────────────────────────────────────── */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ── Watermark Background ────────────────────────────────── */
.watermark-bg {
    position: fixed;
    bottom: 5%;
    right: -2%;
    width: 500px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    transition: opacity 0.5s ease;
}

.watermark-bg.scrolled {
    opacity: 0.04;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width:768px) {
    .navbar {
        padding: calc(1rem + env(safe-area-inset-top, 0px)) 1.25rem 1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 100vh;
        background: rgba(3, 7, 18, .97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        align-items: center;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links ul li a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .hero-stat-divider {
        height: 28px;
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }

    .trust-grid {
        gap: 1rem;
    }

    .trust-card {
        width: 160px;
        height: 100px;
        padding: 1rem;
    }

    .watermark-bg {
        width: 350px;
        bottom: 5%;
        right: -2%;
    }
}

@media (max-width:480px) {
    .padded-section {
        padding: 4rem 1.25rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: .75rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .fullscreen {
        padding-bottom: 100px;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-card {
        width: 100%;
        height: 90px;
        padding: 1rem;
    }
}