/* Hero + trust bar — CSS estático (carga directa, no depende del bundle SCSS) */
.ft-hero {
    --ft-hero-grad-1: #0f172a;
    --ft-hero-grad-2: #1e3a5f;
    --ft-hero-grad-3: #1e40af;
    --ft-hero-overlay-1: rgba(15, 23, 42, 0.88);
    --ft-hero-overlay-2: rgba(30, 58, 95, 0.82);
    --ft-hero-overlay-3: rgba(30, 64, 175, 0.78);
    --ft-hero-overlay-bg-1: rgba(15, 23, 42, 0.92);
    --ft-hero-overlay-bg-2: rgba(15, 23, 42, 0.78);
    --ft-hero-overlay-bg-3: rgba(30, 58, 95, 0.72);
    --ft-hero-overlay-bg-4: rgba(30, 64, 175, 0.65);
    --ft-hero-img-filter: blur(2px) brightness(0.55) saturate(0.85);
    --ft-hero-glow-1: rgba(59, 130, 246, 0.15);
    --ft-hero-glow-2: rgba(245, 158, 11, 0.1);
    --ft-hero-accent: #f59e0b;
    --ft-hero-accent-light: #fbbf24;
    --ft-hero-badge-border: rgba(245, 158, 11, 0.35);
    --ft-hero-badge-bg: rgba(245, 158, 11, 0.15);
    --ft-hero-badge-text: #f59e0b;
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, var(--ft-hero-grad-1) 0%, var(--ft-hero-grad-2) 40%, var(--ft-hero-grad-3) 100%);
    color: #fff;
}

.ft-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
    filter: var(--ft-hero-img-filter);
}

.ft-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        var(--ft-hero-overlay-1) 0%,
        var(--ft-hero-overlay-2) 45%,
        var(--ft-hero-overlay-3) 100%
    );
}

.ft-hero--has-bg .ft-hero__overlay {
    background: linear-gradient(
        105deg,
        var(--ft-hero-overlay-bg-1) 0%,
        var(--ft-hero-overlay-bg-2) 42%,
        var(--ft-hero-overlay-bg-3) 68%,
        var(--ft-hero-overlay-bg-4) 100%
    );
}

.ft-hero__glow {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
}

.ft-hero__glow--blue {
    top: -50%;
    right: -15%;
    width: min(50rem, 90vw);
    height: min(50rem, 90vw);
    background: radial-gradient(circle, var(--ft-hero-glow-1) 0%, transparent 70%);
}

.ft-hero__glow--amber {
    bottom: -35%;
    left: -8%;
    width: min(38rem, 75vw);
    height: min(38rem, 75vw);
    background: radial-gradient(circle, var(--ft-hero-glow-2) 0%, transparent 70%);
}

.ft-hero__inner {
    position: relative;
    z-index: 1;
}

.ft-hero__content {
    text-align: left;
}

.ft-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
}

.ft-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--ft-hero-badge-border);
    border-radius: 50px;
    background: var(--ft-hero-badge-bg);
    color: var(--ft-hero-badge-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ft-hero__title {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ft-hero__title-highlight {
    background: linear-gradient(135deg, var(--ft-hero-accent), var(--ft-hero-accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ft-hero__subtitle {
    max-width: 34rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.65;
}

.ft-hero__meta {
    max-width: 34rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

.ft-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.ft-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border: none;
    border-radius: 0.65rem;
    background: var(--ft-hero-accent);
    color: #0f172a !important;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ft-hero__btn-primary:hover,
.ft-hero__btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--ft-hero-accent) 30%, transparent);
    color: #0f172a !important;
}

.ft-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ft-hero__btn-secondary:hover,
.ft-hero__btn-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff !important;
}

.ft-hero__fundae {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 36rem;
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ft-hero__fundae .fa {
    margin-top: 0.15rem;
    color: #34d399;
    font-size: 1.25rem;
}

.ft-hero__fundae strong {
    color: #a7f3d0;
}

.ft-hero__card {
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    color: #fff;
}

.ft-hero__card-title {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
}

.ft-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.ft-hero__stat {
    padding: 1rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.ft-hero__stat-num {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ft-hero-accent);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.ft-hero__stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ft-hero__features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft-hero__features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
}

.ft-hero__features li:last-child {
    border-bottom: none;
}

.ft-hero__features li .fa {
    flex-shrink: 0;
    color: #10b981;
}

.ft-trust-bar {
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.ft-trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ft-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-right: 1px solid #e2e8f0;
}

.ft-trust-bar__item:last-child {
    border-right: none;
}

.ft-trust-bar__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 0.85rem;
    font-size: 1.35rem;
}

.ft-trust-bar__icon--blue { background: #eff6ff; color: #1e40af; }
.ft-trust-bar__icon--green { background: #ecfdf5; color: #059669; }
.ft-trust-bar__icon--amber { background: #fffbeb; color: #d97706; }
.ft-trust-bar__icon--purple { background: #f5f3ff; color: #7c3aed; }

.ft-trust-bar__num {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
}

.ft-trust-bar__label {
    margin-top: 0.15rem;
    color: #64748b;
    font-size: 0.8rem;
}

/* Temas de color por curso (ft_hero_theme) */
.ft-hero--theme-mercancias {
    --ft-hero-grad-1: #0c1222;
    --ft-hero-grad-2: #1e3a5f;
    --ft-hero-grad-3: #1d4ed8;
    --ft-hero-overlay-bg-4: rgba(29, 78, 216, 0.62);
    --ft-hero-img-filter: blur(2px) brightness(0.52) saturate(1.05) hue-rotate(-8deg);
    --ft-hero-glow-1: rgba(59, 130, 246, 0.2);
    --ft-hero-glow-2: rgba(245, 158, 11, 0.12);
}

.ft-hero--theme-viajeros {
    --ft-hero-grad-1: #042f2e;
    --ft-hero-grad-2: #115e59;
    --ft-hero-grad-3: #0d9488;
    --ft-hero-overlay-2: rgba(17, 94, 89, 0.84);
    --ft-hero-overlay-3: rgba(13, 148, 136, 0.78);
    --ft-hero-overlay-bg-3: rgba(17, 94, 89, 0.74);
    --ft-hero-overlay-bg-4: rgba(13, 148, 136, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.5) saturate(1.15) hue-rotate(145deg);
    --ft-hero-glow-1: rgba(45, 212, 191, 0.18);
    --ft-hero-glow-2: rgba(251, 191, 36, 0.1);
    --ft-hero-accent: #2dd4bf;
    --ft-hero-accent-light: #5eead4;
    --ft-hero-badge-border: rgba(45, 212, 191, 0.35);
    --ft-hero-badge-bg: rgba(45, 212, 191, 0.14);
    --ft-hero-badge-text: #5eead4;
}

.ft-hero--theme-agencia {
    --ft-hero-grad-1: #1e1033;
    --ft-hero-grad-2: #4c1d95;
    --ft-hero-grad-3: #6d28d9;
    --ft-hero-overlay-2: rgba(76, 29, 149, 0.84);
    --ft-hero-overlay-3: rgba(109, 40, 217, 0.76);
    --ft-hero-overlay-bg-3: rgba(76, 29, 149, 0.72);
    --ft-hero-overlay-bg-4: rgba(109, 40, 217, 0.66);
    --ft-hero-img-filter: blur(2px) brightness(0.48) saturate(1.2) hue-rotate(260deg);
    --ft-hero-glow-1: rgba(167, 139, 250, 0.2);
    --ft-hero-glow-2: rgba(244, 114, 182, 0.1);
    --ft-hero-accent: #c4b5fd;
    --ft-hero-accent-light: #e9d5ff;
    --ft-hero-badge-border: rgba(196, 181, 253, 0.35);
    --ft-hero-badge-bg: rgba(139, 92, 246, 0.18);
    --ft-hero-badge-text: #ddd6fe;
}

.ft-hero--theme-alcoholemia {
    --ft-hero-grad-1: #2a0a12;
    --ft-hero-grad-2: #7f1d1d;
    --ft-hero-grad-3: #b91c1c;
    --ft-hero-overlay-2: rgba(127, 29, 29, 0.86);
    --ft-hero-overlay-3: rgba(185, 28, 28, 0.78);
    --ft-hero-overlay-bg-3: rgba(127, 29, 29, 0.74);
    --ft-hero-overlay-bg-4: rgba(185, 28, 28, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.45) saturate(1.25) hue-rotate(330deg);
    --ft-hero-glow-1: rgba(248, 113, 113, 0.18);
    --ft-hero-glow-2: rgba(251, 191, 36, 0.08);
    --ft-hero-accent: #fca5a5;
    --ft-hero-accent-light: #fecaca;
    --ft-hero-badge-border: rgba(252, 165, 165, 0.35);
    --ft-hero-badge-bg: rgba(239, 68, 68, 0.16);
    --ft-hero-badge-text: #fecaca;
}

.ft-hero--theme-regional {
    --ft-hero-grad-1: #052e16;
    --ft-hero-grad-2: #14532d;
    --ft-hero-grad-3: #15803d;
    --ft-hero-overlay-2: rgba(20, 83, 45, 0.85);
    --ft-hero-overlay-3: rgba(21, 128, 61, 0.78);
    --ft-hero-overlay-bg-3: rgba(20, 83, 45, 0.72);
    --ft-hero-overlay-bg-4: rgba(21, 128, 61, 0.66);
    --ft-hero-img-filter: blur(2px) brightness(0.5) saturate(1.1) hue-rotate(95deg);
    --ft-hero-glow-1: rgba(74, 222, 128, 0.18);
    --ft-hero-glow-2: rgba(250, 204, 21, 0.1);
    --ft-hero-accent: #4ade80;
    --ft-hero-accent-light: #86efac;
    --ft-hero-badge-border: rgba(74, 222, 128, 0.35);
    --ft-hero-badge-bg: rgba(34, 197, 94, 0.15);
    --ft-hero-badge-text: #86efac;
}

.ft-hero--theme-economica {
    --ft-hero-grad-1: #0a1f0f;
    --ft-hero-grad-2: #166534;
    --ft-hero-grad-3: #059669;
    --ft-hero-overlay-2: rgba(22, 101, 52, 0.84);
    --ft-hero-overlay-3: rgba(5, 150, 105, 0.78);
    --ft-hero-overlay-bg-3: rgba(22, 101, 52, 0.72);
    --ft-hero-overlay-bg-4: rgba(5, 150, 105, 0.65);
    --ft-hero-img-filter: blur(2px) brightness(0.52) saturate(1.2) hue-rotate(75deg);
    --ft-hero-glow-1: rgba(52, 211, 153, 0.2);
    --ft-hero-glow-2: rgba(163, 230, 53, 0.1);
    --ft-hero-accent: #a3e635;
    --ft-hero-accent-light: #bef264;
    --ft-hero-badge-border: rgba(163, 230, 53, 0.35);
    --ft-hero-badge-bg: rgba(34, 197, 94, 0.14);
    --ft-hero-badge-text: #bef264;
}

.ft-hero--theme-legislacion {
    --ft-hero-grad-1: #0f172a;
    --ft-hero-grad-2: #334155;
    --ft-hero-grad-3: #475569;
    --ft-hero-overlay-2: rgba(51, 65, 85, 0.86);
    --ft-hero-overlay-3: rgba(71, 85, 105, 0.8);
    --ft-hero-overlay-bg-3: rgba(51, 65, 85, 0.74);
    --ft-hero-overlay-bg-4: rgba(71, 85, 105, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.48) saturate(0.75) hue-rotate(195deg);
    --ft-hero-glow-1: rgba(148, 163, 184, 0.2);
    --ft-hero-glow-2: rgba(96, 165, 250, 0.1);
    --ft-hero-accent: #94a3b8;
    --ft-hero-accent-light: #cbd5e1;
    --ft-hero-badge-border: rgba(148, 163, 184, 0.35);
    --ft-hero-badge-bg: rgba(100, 116, 139, 0.2);
    --ft-hero-badge-text: #cbd5e1;
}

.ft-hero--theme-logistica {
    --ft-hero-grad-1: #1c1008;
    --ft-hero-grad-2: #9a3412;
    --ft-hero-grad-3: #c2410c;
    --ft-hero-overlay-2: rgba(154, 52, 18, 0.85);
    --ft-hero-overlay-3: rgba(194, 65, 12, 0.78);
    --ft-hero-overlay-bg-3: rgba(154, 52, 18, 0.72);
    --ft-hero-overlay-bg-4: rgba(194, 65, 12, 0.66);
    --ft-hero-img-filter: blur(2px) brightness(0.5) saturate(1.3) hue-rotate(25deg);
    --ft-hero-glow-1: rgba(251, 146, 60, 0.2);
    --ft-hero-glow-2: rgba(250, 204, 21, 0.12);
    --ft-hero-accent: #fb923c;
    --ft-hero-accent-light: #fdba74;
    --ft-hero-badge-border: rgba(251, 146, 60, 0.35);
    --ft-hero-badge-bg: rgba(234, 88, 12, 0.16);
    --ft-hero-badge-text: #fdba74;
}

.ft-hero--theme-prevencion {
    --ft-hero-grad-1: #2a1205;
    --ft-hero-grad-2: #9a3412;
    --ft-hero-grad-3: #ea580c;
    --ft-hero-overlay-2: rgba(154, 52, 18, 0.84);
    --ft-hero-overlay-3: rgba(234, 88, 12, 0.78);
    --ft-hero-overlay-bg-3: rgba(154, 52, 18, 0.72);
    --ft-hero-overlay-bg-4: rgba(234, 88, 12, 0.65);
    --ft-hero-img-filter: blur(2px) brightness(0.46) saturate(1.35) hue-rotate(15deg);
    --ft-hero-glow-1: rgba(251, 146, 60, 0.22);
    --ft-hero-glow-2: rgba(248, 113, 113, 0.1);
    --ft-hero-accent: #f97316;
    --ft-hero-accent-light: #fb923c;
    --ft-hero-badge-border: rgba(249, 115, 22, 0.35);
    --ft-hero-badge-bg: rgba(234, 88, 12, 0.16);
    --ft-hero-badge-text: #fdba74;
}

.ft-hero--theme-tacografo {
    --ft-hero-grad-1: #0f1029;
    --ft-hero-grad-2: #312e81;
    --ft-hero-grad-3: #4338ca;
    --ft-hero-overlay-2: rgba(49, 46, 129, 0.86);
    --ft-hero-overlay-3: rgba(67, 56, 202, 0.78);
    --ft-hero-overlay-bg-3: rgba(49, 46, 129, 0.74);
    --ft-hero-overlay-bg-4: rgba(67, 56, 202, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.48) saturate(1.1) hue-rotate(220deg);
    --ft-hero-glow-1: rgba(129, 140, 248, 0.2);
    --ft-hero-glow-2: rgba(56, 189, 248, 0.1);
    --ft-hero-accent: #818cf8;
    --ft-hero-accent-light: #a5b4fc;
    --ft-hero-badge-border: rgba(129, 140, 248, 0.35);
    --ft-hero-badge-bg: rgba(99, 102, 241, 0.16);
    --ft-hero-badge-text: #c7d2fe;
}

.ft-hero--theme-tacografo-fundae {
    --ft-hero-grad-1: #1a0b2e;
    --ft-hero-grad-2: #5b21b6;
    --ft-hero-grad-3: #7c3aed;
    --ft-hero-overlay-2: rgba(91, 33, 182, 0.86);
    --ft-hero-overlay-3: rgba(124, 58, 237, 0.78);
    --ft-hero-overlay-bg-3: rgba(91, 33, 182, 0.74);
    --ft-hero-overlay-bg-4: rgba(124, 58, 237, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.47) saturate(1.15) hue-rotate(250deg);
    --ft-hero-glow-1: rgba(167, 139, 250, 0.22);
    --ft-hero-glow-2: rgba(52, 211, 153, 0.1);
    --ft-hero-accent: #a78bfa;
    --ft-hero-accent-light: #c4b5fd;
    --ft-hero-badge-border: rgba(167, 139, 250, 0.35);
    --ft-hero-badge-bg: rgba(124, 58, 237, 0.16);
    --ft-hero-badge-text: #ddd6fe;
}

.ft-hero--theme-tacografo-online {
    --ft-hero-grad-1: #0c1929;
    --ft-hero-grad-2: #1e3a8a;
    --ft-hero-grad-3: #2563eb;
    --ft-hero-overlay-2: rgba(30, 58, 138, 0.86);
    --ft-hero-overlay-3: rgba(37, 99, 235, 0.78);
    --ft-hero-overlay-bg-3: rgba(30, 58, 138, 0.74);
    --ft-hero-overlay-bg-4: rgba(37, 99, 235, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.5) saturate(1.05) hue-rotate(200deg);
    --ft-hero-glow-1: rgba(96, 165, 250, 0.2);
    --ft-hero-glow-2: rgba(129, 140, 248, 0.1);
    --ft-hero-accent: #60a5fa;
    --ft-hero-accent-light: #93c5fd;
    --ft-hero-badge-border: rgba(96, 165, 250, 0.35);
    --ft-hero-badge-bg: rgba(37, 99, 235, 0.16);
    --ft-hero-badge-text: #bfdbfe;
}

.ft-hero--theme-tacografo-night {
    --ft-hero-grad-1: #020617;
    --ft-hero-grad-2: #1e1b4b;
    --ft-hero-grad-3: #3730a3;
    --ft-hero-overlay-2: rgba(30, 27, 75, 0.88);
    --ft-hero-overlay-3: rgba(55, 48, 163, 0.8);
    --ft-hero-overlay-bg-3: rgba(30, 27, 75, 0.76);
    --ft-hero-overlay-bg-4: rgba(55, 48, 163, 0.7);
    --ft-hero-img-filter: blur(3px) brightness(0.42) saturate(0.95) hue-rotate(235deg);
    --ft-hero-glow-1: rgba(99, 102, 241, 0.18);
    --ft-hero-glow-2: rgba(14, 165, 233, 0.1);
    --ft-hero-accent: #6366f1;
    --ft-hero-accent-light: #818cf8;
    --ft-hero-badge-border: rgba(99, 102, 241, 0.35);
    --ft-hero-badge-bg: rgba(67, 56, 202, 0.18);
    --ft-hero-badge-text: #a5b4fc;
}

.ft-hero--theme-tiempos {
    --ft-hero-grad-1: #042f3a;
    --ft-hero-grad-2: #0e7490;
    --ft-hero-grad-3: #0891b2;
    --ft-hero-overlay-2: rgba(14, 116, 144, 0.86);
    --ft-hero-overlay-3: rgba(8, 145, 178, 0.78);
    --ft-hero-overlay-bg-3: rgba(14, 116, 144, 0.74);
    --ft-hero-overlay-bg-4: rgba(8, 145, 178, 0.68);
    --ft-hero-img-filter: blur(2px) brightness(0.48) saturate(1.2) hue-rotate(170deg);
    --ft-hero-glow-1: rgba(34, 211, 238, 0.2);
    --ft-hero-glow-2: rgba(59, 130, 246, 0.1);
    --ft-hero-accent: #22d3ee;
    --ft-hero-accent-light: #67e8f9;
    --ft-hero-badge-border: rgba(34, 211, 238, 0.35);
    --ft-hero-badge-bg: rgba(8, 145, 178, 0.16);
    --ft-hero-badge-text: #a5f3fc;
}

.ft-hero--theme-transportista {
    --ft-hero-grad-1: #0a1628;
    --ft-hero-grad-2: #1e3a8a;
    --ft-hero-grad-3: #1e40af;
    --ft-hero-overlay-2: rgba(30, 58, 138, 0.85);
    --ft-hero-overlay-3: rgba(30, 64, 175, 0.78);
    --ft-hero-overlay-bg-3: rgba(30, 58, 138, 0.72);
    --ft-hero-overlay-bg-4: rgba(30, 64, 175, 0.66);
    --ft-hero-img-filter: blur(2px) brightness(0.54) saturate(0.9) hue-rotate(-15deg);
    --ft-hero-glow-1: rgba(59, 130, 246, 0.18);
    --ft-hero-glow-2: rgba(234, 179, 8, 0.12);
}

@media (max-width: 991px) {
    .ft-hero__card {
        max-width: 28rem;
        margin: 0 auto;
    }

    .ft-trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-trust-bar__item:nth-child(2) {
        border-right: none;
    }

    .ft-trust-bar__item:nth-child(1),
    .ft-trust-bar__item:nth-child(2) {
        border-bottom: 1px solid #e2e8f0;
    }
}

@media (max-width: 576px) {
    .ft-hero {
        padding: 4.5rem 0 3rem;
    }

    .ft-hero__buttons {
        flex-direction: column;
    }

    .ft-hero__btn-primary,
    .ft-hero__btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .ft-trust-bar__inner {
        grid-template-columns: 1fr;
    }

    .ft-trust-bar__item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .ft-trust-bar__item:last-child {
        border-bottom: none;
    }
}
