/* ================================================================
   home.css — Homepage (CLEANED & CONSOLIDATED)
   All duplicates merged, media queries at bottom.
   ================================================================ */

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
    --hm-blue: #2563eb;
    --hm-blue-dark: #1e3a8a;
    --hm-navy: #0c1f3f;
    --hm-pink: #f04e6e;
    --hm-green: #10b981;
    --hm-amber: #f59e0b;
    --hm-ink: #0f172a;
    --hm-ink-2: #475569;
    --hm-ink-3: #94a3b8;
    --hm-line: #e2e8f0;
    --hm-paper: #f8fafc;

    --blue: #2563eb;
    --blue-dark: #1e3a8a;
    --indigo: #4f46e5;
    --navy: #0c1f3f;
    --amber: #f59e0b;
    --gold: #ffc94d;
    --green: #10b981;
    --mint: #12b886;
    --rose: #ef4444;
    --rose-2: #f04e6e;
    --ink: #0f172a;
    --ink-2: #475569;
    --ink-3: #94a3b8;
    --line: #e2e8f0;
    --paper: #f8fafc;
    --white: #fff;
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

a {
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
    border-radius: 6px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================================
   3. SCROLL REVEAL (shared)
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in,
.reveal.visible {
    opacity: 1;
    transform: none;
}
.rd1 {
    transition-delay: 0.05s;
}
.rd2 {
    transition-delay: 0.12s;
}
.rd3 {
    transition-delay: 0.19s;
}
.rd4 {
    transition-delay: 0.26s;
}
.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* ================================================================
   4. HERO (unified – combines .hero-section and .hero)
   ================================================================ */
.hero-section,
.hero {
    background: linear-gradient(120deg, #6366f1 0%, #7c3aed 55%, #9333ea 100%);
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
    position: relative;
    overflow: hidden;
}
.hero-section::before,
.hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -150px;
    right: -100px;
    filter: blur(2px);
}
.hero-section::after,
.hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 201, 77, 0.14);
    bottom: -110px;
    left: -80px;
    filter: blur(40px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 1.3rem;
}

.hero-pulse,
.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5eead4;
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.8);
    animation: hmPulse 2.4s infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 42ch;
    margin-bottom: 1.8rem;
}

.hero-ctas,
.hero-cta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* Hero art + floating stats */
.hero-art {
    position: relative;
}
.hero-art svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 44px rgba(30, 10, 70, 0.45));
}

.hero-fstat,
.fstat {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 11px 15px;
    box-shadow: 0 12px 30px -8px rgba(30, 10, 70, 0.45);
    display: flex;
    align-items: center;
    gap: 11px;
    animation: hmFloat 5s ease-in-out infinite;
}
@keyframes hmFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}
.hero-fstat b,
.fstat b {
    font-size: 1.02rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
    color: var(--hm-ink);
}
.hero-fstat small,
.fstat small {
    font-size: 0.7rem;
    color: var(--hm-ink-3);
    white-space: nowrap;
}
.hero-fstat .ic,
.fstat .ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.hero-fstat--1,
.fs-1 {
    top: 5%;
    left: -3%;
    animation-delay: 0s;
}
.hero-fstat--2,
.fs-2 {
    bottom: 11%;
    right: -2%;
    animation-delay: 1.6s;
}

/* Hero grid (for .hero variant) */
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ================================================================
   5. BUTTONS (unified)
   ================================================================ */
.btn-hero-primary,
.btn-amber {
    background: var(--hm-amber);
    color: #3a2400;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s, transform 0.12s;
}
.btn-hero-primary:active,
.btn-amber:active {
    transform: translateY(1px);
}
.btn-hero-primary:hover,
.btn-amber:hover {
    background: #e08c00;
    color: #3a2400;
}

.btn-hero-ghost,
.btn-glass {
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s, transform 0.12s;
}
.btn-hero-ghost:hover,
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.btn-soft {
    display: inline-block;
    padding: 0.72rem 1.6rem;
    border-radius: 11px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid #bfdbfe;
    background: #eff6ff;
    color: var(--blue);
    transition: background 0.15s, color 0.15s;
}
.btn-soft:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.svc-btn {
    display: block;
    text-align: center;
    padding: 0.72rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid;
    margin-top: auto;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

/* ================================================================
   6. SERVICES (unified .svc-grid, .svc-card, .svc)
   ================================================================ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

.svc-card,
.svc {
    background: #fff;
    border: 1px solid var(--hm-line);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover,
.svc:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px -18px rgba(15, 23, 42, 0.28);
}

/* tinted top: icon + tag + title + coloured tagline */
.svc-top {
    padding: 1.8rem 1.5rem 1.6rem;
    text-align: center;
}
.svc-top i {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 0.9rem;
}

.svc-tag,
.svc .tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hm-ink-3);
    margin-bottom: 0.6rem;
}

.svc-top h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}

.svc-sub,
.svc .sub {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
}

.svc-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-body > p {
    font-size: 0.9rem;
    color: var(--hm-ink-2);
    margin-bottom: 1.2rem;
}

.svc-price,
.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.2rem;
}
.svc-price b,
.price b {
    font-size: 1.32rem;
    font-weight: 800;
}
.svc-price span,
.price span {
    font-size: 0.82rem;
    color: var(--hm-ink-2);
}

.svc-list,
.svc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    flex: 1;
}
.svc-list li,
.svc ul li {
    font-size: 0.87rem;
    color: var(--hm-ink-2);
    padding: 9px 0 9px 26px;
    position: relative;
    border-top: 1px solid var(--hm-line);
}
.svc-list li i,
.svc ul li i {
    position: absolute;
    left: 1px;
    top: 12px;
    font-size: 0.88rem;
}

/* Colour variants (svc-1, svc-2, svc-3) */
.svc-1 .svc-top {
    background: #eff6ff;
}
.svc-1 .svc-top i {
    color: var(--hm-blue);
}
.svc-1 .svc-sub,
.svc-1 .sub {
    color: var(--hm-blue);
}
.svc-1 .svc-price,
.svc-1 .price {
    background: #eff6ff;
}
.svc-1 .svc-price b,
.svc-1 .price b {
    color: var(--hm-blue);
}
.svc-1 .svc-list li i,
.svc-1 ul li i {
    color: var(--hm-blue);
}
.svc-1 .svc-btn {
    color: var(--hm-blue);
    border-color: #bfdbfe;
    background: #eff6ff;
}
.svc-1 .svc-btn:hover {
    background: var(--hm-blue);
    color: #fff;
    border-color: var(--hm-blue);
}

.svc-2 .svc-top {
    background: #fff1f2;
}
.svc-2 .svc-top i {
    color: var(--hm-pink);
}
.svc-2 .svc-sub,
.svc-2 .sub {
    color: var(--hm-pink);
}
.svc-2 .svc-price,
.svc-2 .price {
    background: #fff1f2;
}
.svc-2 .svc-price b,
.svc-2 .price b {
    color: var(--hm-pink);
}
.svc-2 .svc-list li i,
.svc-2 ul li i {
    color: var(--hm-pink);
}
.svc-2 .svc-btn {
    color: var(--hm-pink);
    border-color: #fecdd3;
    background: #fff1f2;
}
.svc-2 .svc-btn:hover {
    background: var(--hm-pink);
    color: #fff;
    border-color: var(--hm-pink);
}

.svc-3 .svc-top {
    background: #ecfdf5;
}
.svc-3 .svc-top i {
    color: var(--hm-green);
}
.svc-3 .svc-sub,
.svc-3 .sub {
    color: var(--hm-green);
}
.svc-3 .svc-price,
.svc-3 .price {
    background: #ecfdf5;
}
.svc-3 .svc-price b,
.svc-3 .price b {
    color: var(--hm-green);
}
.svc-3 .svc-list li i,
.svc-3 ul li i {
    color: var(--hm-green);
}
.svc-3 .svc-btn {
    color: var(--hm-green);
    border-color: #a7f3d0;
    background: #ecfdf5;
}
.svc-3 .svc-btn:hover {
    background: var(--hm-green);
    color: #fff;
    border-color: var(--hm-green);
}

/* ================================================================
   7. WHY US (unified .why-card, .wcard)
   ================================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.why-card,
.wcard {
    background: #fff;
    border: 1px solid var(--hm-line);
    border-radius: 18px;
    padding: 1.6rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover,
.wcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -16px rgba(15, 23, 42, 0.25);
}

.why-icon,
.wicon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
}
.why-card h3,
.wcard h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.why-card p,
.wcard p {
    font-size: 0.89rem;
    color: var(--hm-ink-2);
    margin: 0;
}

/* ================================================================
   8. CALCULATORS (dark strip)
   ================================================================ */
.calc-strip {
    background: linear-gradient(160deg, var(--hm-navy), #132a52);
    color: #fff;
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.calc-strip .sec-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #c7d2fe;
}
.calc-strip .sec-head h2 {
    color: #fff;
}
.calc-strip .sec-head p {
    color: #94a8cc;
}

.calc-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.4rem;
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}
.calc-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
}
.calc-card--featured {
    border-color: var(--hm-amber);
    background: rgba(245, 158, 11, 0.1);
}

.calc-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
}
.calc-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.calc-card p {
    font-size: 0.82rem;
    color: #94a8cc;
    margin: 0;
}

.calc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--hm-amber);
    color: #3a2400;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Tools (alternative calculators section) */
.tools-sec {
    background: linear-gradient(160deg, var(--navy), #132a52);
    color: #fff;
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.tools-sec .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #c7d2fe;
}
.tools-sec .sec-head h2 {
    color: #fff;
}
.tools-sec .sec-head p {
    color: #94a8cc;
}

.tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.tool {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.4rem;
    display: block;
    position: relative;
    transition: transform 0.2s, background 0.2s;
}
.tool:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
}
.tool.hot {
    border-color: var(--amber);
    background: rgba(245, 158, 11, 0.1);
}
.tool .ic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
    color: #c7d2fe;
    font-size: 1.05rem;
}
.tool.hot .ic {
    background: rgba(245, 158, 11, 0.22);
    color: var(--amber);
}
.tool h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.tool p {
    font-size: 0.82rem;
    color: #94a8cc;
    margin: 0;
}
.hotpill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--amber);
    color: #3a2400;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ================================================================
   9. TESTIMONIALS
   ================================================================ */
.quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.3rem;
}

.quote-card,
.quote {
    background: #fff;
    border: 1px solid var(--hm-line);
    border-radius: 16px;
    padding: 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.quote-stars,
.stars {
    color: var(--hm-amber);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
}

.quote-card blockquote,
.quote blockquote {
    font-size: 0.92rem;
    color: var(--hm-ink-2);
    font-style: italic;
    margin: 0 0 1.3rem;
    flex: 1;
}

.quote-name,
.quote .who {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}
.quote-city,
.quote .where {
    font-size: 0.8rem;
    color: var(--hm-ink-3);
    margin: 0 0 0.8rem;
}

.quote-tag,
.qtag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    align-self: center;
}

/* Tag colour variants (nth-child) */
.quote:nth-child(1) .qtag,
.quote-card:nth-child(1) .qtag {
    background: #eff6ff;
    color: var(--blue);
}
.quote:nth-child(2) .qtag,
.quote-card:nth-child(2) .qtag {
    background: #ecfdf5;
    color: var(--green);
}
.quote:nth-child(3) .qtag,
.quote-card:nth-child(3) .qtag {
    background: #fffbeb;
    color: #b45309;
}

/* ================================================================
   10. PARTNERS
   ================================================================ */
.partners-row,
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.4rem;
}
.partners-row img,
.partners img {
    height: 52px;
    width: auto;
    opacity: 0.85;
    border-radius: 9px;
    transition: opacity 0.2s, transform 0.2s;
}
.partners-row img:hover,
.partners img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-pill,
.partner-pill-new {
    border: 1px solid var(--hm-line);
    background: #fff;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 0.84rem;
    color: var(--hm-ink-2);
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.partner-pill:hover,
.partner-pill-new:hover {
    background: #e2e8f0;
    color: var(--ink);
}

/* ================================================================
   11. BLOG
   ================================================================ */
.blog-card,
.post {
    background: #fff;
    border: 1px solid var(--hm-line);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover,
.post:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.25);
}

.blog-img,
.post img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.blog-img-fallback,
.post-img-fallback {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.4rem;
}

.blog-card .card-body,
.post .body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-cat,
.post .cat {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}

.blog-card h3,
.post h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-card h3 a {
    color: var(--hm-ink);
    text-decoration: none;
}
.blog-card h3 a:hover {
    color: var(--hm-blue);
}

.blog-card > .card-body > p,
.post .excerpt {
    font-size: 0.86rem;
    color: var(--hm-ink-2);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-meta,
.post .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.79rem;
    color: var(--hm-ink-3);
    border-top: 1px solid var(--hm-line);
    padding-top: 0.9rem;
}

.blog-read {
    color: var(--hm-blue);
    font-weight: 600;
    text-decoration: none;
}

/* Category colour variants */
.post:nth-child(1) .cat,
.blog-card:nth-child(1) .blog-cat {
    background: #fef2f2;
    color: var(--rose);
}
.post:nth-child(2) .cat,
.blog-card:nth-child(2) .blog-cat {
    background: #ecfdf5;
    color: var(--green);
}
.post:nth-child(3) .cat,
.blog-card:nth-child(3) .blog-cat {
    background: #eff6ff;
    color: var(--blue);
}

/* ================================================================
   12. FINAL CTA
   ================================================================ */
.final-cta,
.final {
    background: linear-gradient(100deg, #1d4ed8, #0891b2);
    color: #fff;
    padding: clamp(3rem, 7vw, 4.5rem) 0;
    text-align: center;
}
.final-cta h2,
.final h2 {
    font-size: clamp(1.7rem, 4.3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.7rem;
    color: #fff;
}
.final-cta p,
.final p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 46ch;
    margin: 0 auto 1.8rem;
}
.final-cta .hero-ctas,
.final .hero-cta {
    justify-content: center;
}

/* ================================================================
   13. SECTION UTILITIES (shared)
   ================================================================ */
.sec {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.sec-paper {
    background: var(--paper);
}
.sec-head {
    text-align: center;
    max-width: 56ch;
    margin: 0 auto 2.8rem;
}
.sec-head h2 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    margin-bottom: 0.6rem;
}
.sec-head p {
    color: var(--ink-2);
    margin: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue);
    background: #eff6ff;
    padding: 6px 15px;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ================================================================
   14. STICKY CTA + BACK-TO-TOP (overlap fix)
   ================================================================ */
.sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 74px;
    z-index: 1035;
    background: var(--hm-amber);
    color: #3a2400;
    font-weight: 600;
    font-size: 0.87rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 6px 20px -5px rgba(245, 158, 11, 0.6);
    white-space: nowrap;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}
.sticky-cta:hover {
    background: #e08c00;
    color: #3a2400;
}

.to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 6px 18px -6px rgba(15, 23, 42, 0.35);
    display: grid;
    place-items: center;
    color: var(--hm-blue);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    cursor: pointer;
}
.to-top.show {
    opacity: 1;
    visibility: visible;
}

.float-stack {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    transition: bottom 0.25s;
}

.float-cta {
    background: var(--amber);
    color: #3a2400;
    font-weight: 600;
    font-size: 0.87rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 6px 20px -5px rgba(245, 158, 11, 0.6);
    white-space: nowrap;
}
.float-cta:hover {
    background: #e08c00;
    color: #3a2400;
}

/* ================================================================
   15. COOKIE BANNER
   ================================================================ */
.cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px -8px rgba(15, 23, 42, 0.2);
    padding: 1rem;
    display: none;
}
.cookie.show {
    display: block;
}
.cookie .inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie p {
    margin: 0;
    font-size: 0.87rem;
    color: var(--ink-2);
}
.cookie .acts {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}
.cookie .acts a {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 500;
}
.cookie button {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.87rem;
    cursor: pointer;
}

/* ================================================================
   16. FOOTER
   ================================================================ */
footer {
    background: #0b1628;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
    font-size: 0.88rem;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

footer h4 {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

footer a {
    color: #94a3b8;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}
footer a:hover {
    color: #fff;
}

.f-news {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.f-news form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin: 1rem auto 0.8rem;
    flex-wrap: wrap;
}
.f-news input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.f-news input::placeholder {
    color: #64748b;
}
.f-news button {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.4rem;
    border-radius: 9px;
    font-weight: 600;
    cursor: pointer;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.81rem;
}

.f-note {
    color: #475569;
    font-size: 0.75rem;
    margin-top: 1rem;
    max-width: 64ch;
    padding-bottom: 1rem;
}

/* ================================================================
   17. ANIMATIONS (all @keyframes)
   ================================================================ */
@keyframes hmPulse {
    70% {
        box-shadow: 0 0 0 9px rgba(94, 234, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(94, 234, 212, 0);
    }
}

@keyframes hmFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(94, 234, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(94, 234, 212, 0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* ================================================================
   18. RESPONSIVE (all media queries consolidated)
   ================================================================ */
@media (max-width: 991.98px) {
    .hero-subtitle {
        margin-inline: auto;
    }
    .hero-ctas,
    .hero-cta {
        justify-content: center;
    }
    .hero-section .row,
    .hero .row {
        text-align: center;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero > .container > .hero-grid > div > p {
        margin-inline: auto;
    }
}

@media (max-width: 940px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero > .container > .hero-grid > div > p {
        margin-inline: auto;
    }
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-fstat,
    .fstat {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .sticky-cta {
        right: 12px;
        bottom: 68px;
        font-size: 0.82rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 360px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-pulse,
    .pulse {
        animation: none;
    }
    .hero-fstat,
    .fstat {
        animation: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
}
