:root {
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
    --ink: #0b1b2b;
    --ink-2: #1f2a44;
    --muted: #5b6b82;
    --primary: #0ea5a4;
    --primary-dark: #0f766e;
    --secondary: #2563eb;
    --accent: #f59e0b;
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-2: #f0f4f8;
    --stroke: rgba(11,27,43,0.1);
    --shadow: 0 18px 50px rgba(11,27,43,0.12);
    --shadow-strong: 0 30px 80px rgba(11,27,43,0.18);
    --radius: 18px;
    --nav-ink: #13085d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: -20% -10% 0 -10%;
    background:
        radial-gradient(60% 40% at 12% 8%, rgba(14,165,164,0.22) 0%, transparent 60%),
        radial-gradient(45% 35% at 88% 12%, rgba(37,99,235,0.18) 0%, transparent 60%),
        radial-gradient(50% 35% at 50% 90%, rgba(245,158,11,0.2) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(14,165,164,0.05) 0%, rgba(37,99,235,0.06) 50%, rgba(245,158,11,0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: var(--surface);
    color: var(--ink);
    border-radius: 8px;
    z-index: 9999;
    box-shadow: var(--shadow);
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(180deg, rgba(118, 189, 228, 0.9), rgba(231, 230, 156, 0.7));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(14,165,164,0.08);
    box-shadow: 0 6px 16px rgba(14,165,164,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--nav-ink);
}

.brand img {
    height: 78px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text span {
    font-family: var(--font-display);
    font-size: 18px;
}

.brand-text small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 600;
    color: var(--nav-ink);
}

.nav-links a {
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: var(--surface);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 24px rgba(14,165,164,0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(14,165,164,0.28);
}

.btn-outline {
    background: var(--surface);
    border: 1px solid var(--stroke);
    color: var(--ink-2);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11,27,43,0.12);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(14,165,164,0.35);
    color: var(--primary-dark);
}

.hero {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--primary-dark);
    background: rgba(14,165,164,0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--ink);
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.metric-card strong {
    font-size: 20px;
    display: block;
}

.metric-card span {
    font-size: 12px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.visual-frame {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,244,248,0.9));
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--stroke);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #0b1b2b;
}

.hero-slider .slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.hero-slider .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-slider .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.hero-slider .prev {
    left: 12px;
}

.hero-slider .next {
    right: 12px;
}

.hero-slider .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
}

.hero-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.hero-slider .dot.active {
    background: #0ea5a4;
    box-shadow: 0 4px 12px rgba(14,165,164,0.4);
}

.floating-badge {
    position: absolute;
    right: -12px;
    bottom: -18px;
    background: var(--surface);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--ink-2);
}

section.section {
    padding: 40px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
}

.section-head p {
    color: var(--muted);
    max-width: 560px;
}

.trusted {
    padding: 40px 0;
}

.trusted .trusted-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--stroke);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    background: var(--surface-2);
}

.service-grid,
.feature-grid,
.steps-grid,
.testimonials-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

/* ── Service Cards — vibrant, animated ─────────────────── */
.service-card {
    --sc-accent:   #0ea5a4;
    --sc-accent-2: #2563eb;
    --sc-bg:       rgba(14,165,164,0.08);
    --sc-shadow:   rgba(14,165,164,0.22);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 22px 22px;
    border-radius: 22px;
    border: 1.5px solid rgba(255,255,255,0.72);
    background:
        linear-gradient(150deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 55%, rgba(255,255,255,0.46) 100%),
        linear-gradient(135deg, var(--sc-bg), transparent);
    box-shadow: 0 8px 28px var(--sc-shadow), 0 1px 0 rgba(255,255,255,0.9) inset;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.36s cubic-bezier(0.2,0.9,0.2,1),
                box-shadow 0.36s ease,
                border-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Animated top accent bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-accent), var(--sc-accent-2));
    border-radius: 999px 999px 0 0;
    transition: height 0.3s ease;
}

/* Shimmer / glow orb */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sc-accent) 0%, transparent 72%);
    opacity: 0.12;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 52px var(--sc-shadow), 0 1px 0 rgba(255,255,255,0.9) inset;
    border-color: rgba(255,255,255,0.95);
}

.service-card:hover::before {
    height: 6px;
}

.service-card:hover::after {
    opacity: 0.28;
    transform: scale(1.3) translate(-8px, -8px);
}

.service-card > * { position: relative; z-index: 2; }

/* Icon badge */
.service-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--sc-accent), var(--sc-accent-2));
    color: #fff;
    box-shadow: 0 12px 28px var(--sc-shadow);
    transition: transform 0.34s cubic-bezier(0.2,0.9,0.2,1), box-shadow 0.34s ease;
    position: relative;
    overflow: hidden;
}

.service-card .icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.44), rgba(255,255,255,0));
}

.service-card:hover .icon {
    transform: translateY(-5px) scale(1.1) rotate(-6deg);
    box-shadow: 0 20px 36px var(--sc-shadow);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0d1e30;
    line-height: 1.2;
    transition: color 0.25s ease;
}

.service-card:hover h3 { color: var(--sc-accent); }

.service-card p {
    color: #5b6b82;
    font-size: 13.5px;
    line-height: 1.55;
}

/* ── Per-card colour themes ────────────────────────────── */
.service-grid .service-card:nth-child(1) {
    --sc-accent: #0ea5a4; --sc-accent-2: #06b6d4;
    --sc-bg: rgba(14,165,164,0.09); --sc-shadow: rgba(14,165,164,0.24);
}
.service-grid .service-card:nth-child(2) {
    --sc-accent: #7c3aed; --sc-accent-2: #a855f7;
    --sc-bg: rgba(124,58,237,0.08); --sc-shadow: rgba(124,58,237,0.22);
}
.service-grid .service-card:nth-child(3) {
    --sc-accent: #2563eb; --sc-accent-2: #60a5fa;
    --sc-bg: rgba(37,99,235,0.08); --sc-shadow: rgba(37,99,235,0.22);
}
.service-grid .service-card:nth-child(4) {
    --sc-accent: #f59e0b; --sc-accent-2: #f97316;
    --sc-bg: rgba(245,158,11,0.08); --sc-shadow: rgba(245,158,11,0.22);
}
.service-grid .service-card:nth-child(5) {
    --sc-accent: #16a34a; --sc-accent-2: #22c55e;
    --sc-bg: rgba(22,163,74,0.08); --sc-shadow: rgba(22,163,74,0.2);
}
.service-grid .service-card:nth-child(6) {
    --sc-accent: #dc2626; --sc-accent-2: #f97316;
    --sc-bg: rgba(220,38,38,0.07); --sc-shadow: rgba(220,38,38,0.2);
}
.service-grid .service-card:nth-child(7) {
    --sc-accent: #0891b2; --sc-accent-2: #2563eb;
    --sc-bg: rgba(8,145,178,0.08); --sc-shadow: rgba(8,145,178,0.22);
}
.service-grid .service-card:nth-child(8) {
    --sc-accent: #db2777; --sc-accent-2: #f43f5e;
    --sc-bg: rgba(219,39,119,0.08); --sc-shadow: rgba(219,39,119,0.22);
}

/* ── Staggered entrance animation ──────────────────────── */
@keyframes sc-enter {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.service-card.in-view {
    animation: sc-enter 0.55s cubic-bezier(0.2,0.9,0.2,1) both;
}

.service-grid .service-card:nth-child(1).in-view { animation-delay: 0ms; }
.service-grid .service-card:nth-child(2).in-view { animation-delay: 70ms; }
.service-grid .service-card:nth-child(3).in-view { animation-delay: 140ms; }
.service-grid .service-card:nth-child(4).in-view { animation-delay: 210ms; }
.service-grid .service-card:nth-child(5).in-view { animation-delay: 280ms; }
.service-grid .service-card:nth-child(6).in-view { animation-delay: 350ms; }
.service-grid .service-card:nth-child(7).in-view { animation-delay: 420ms; }
.service-grid .service-card:nth-child(8).in-view { animation-delay: 490ms; }

.feature-card {
    --feature-bg: #dbeafe;
    --feature-bg-2: #eff6ff;
    --feature-accent: #2563eb;
    --feature-accent-2: #7c3aed;
    --feature-shadow: rgba(59,130,246,0.18);
    position: relative;
    display: grid;
    gap: 14px;
    padding: 24px 24px 22px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.72);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,255,255,0.58) 42%, transparent 100%),
        linear-gradient(135deg, var(--feature-bg), var(--feature-bg-2));
    box-shadow: 0 20px 36px var(--feature-shadow);
    isolation: isolate;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--feature-accent), var(--feature-accent-2));
    box-shadow: 0 10px 24px var(--feature-shadow);
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.16) 42%, transparent 72%);
    transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    opacity: 0.88;
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-grid .feature-card:nth-child(1) {
    --feature-bg: #dbeafe;
    --feature-bg-2: #eef2ff;
    --feature-accent: #2563eb;
    --feature-accent-2: #06b6d4;
    --feature-shadow: rgba(37,99,235,0.2);
}

.feature-grid .feature-card:nth-child(2) {
    --feature-bg: #ede9fe;
    --feature-bg-2: #fae8ff;
    --feature-accent: #7c3aed;
    --feature-accent-2: #ec4899;
    --feature-shadow: rgba(124,58,237,0.18);
}

.feature-grid .feature-card:nth-child(3) {
    --feature-bg: #cffafe;
    --feature-bg-2: #e0f2fe;
    --feature-accent: #0891b2;
    --feature-accent-2: #2563eb;
    --feature-shadow: rgba(8,145,178,0.18);
}

.feature-grid .feature-card:nth-child(4) {
    --feature-bg: #dcfce7;
    --feature-bg-2: #fef3c7;
    --feature-accent: #16a34a;
    --feature-accent-2: #f59e0b;
    --feature-shadow: rgba(34,197,94,0.18);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--feature-accent), var(--feature-accent-2));
    color: #fff;
    font-size: 22px;
    box-shadow: 0 16px 30px var(--feature-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.34s ease, filter 0.34s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0));
    opacity: 0.9;
}

.feature-card strong {
    font-size: 18px;
    line-height: 1.2;
    color: #14263a;
}

.feature-card span {
    color: #52647c;
    font-size: 15px;
    line-height: 1.55;
    max-width: 23ch;
}

.steps-card {
    --step-bg: #dbeafe;
    --step-bg-2: #eff6ff;
    --step-accent: #2563eb;
    --step-accent-2: #06b6d4;
    --step-shadow: rgba(37,99,235,0.18);
    position: relative;
    display: grid;
    gap: 9px;
    padding: 13px 13px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.76);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.97), rgba(255,255,255,0.72) 42%, transparent 100%),
        linear-gradient(135deg, var(--step-bg), var(--step-bg-2));
    box-shadow: 0 12px 24px var(--step-shadow);
    overflow: hidden;
    isolation: isolate;
}

.steps-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--step-accent), var(--step-accent-2));
    opacity: 0.95;
    z-index: 1;
}

.steps-card::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.1) 44%, transparent 74%);
    transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    opacity: 0.75;
    z-index: 0;
}

.steps-card > * {
    position: relative;
    z-index: 2;
}

.steps-grid .steps-card:nth-child(1) {
    --step-bg: #dcfce7;
    --step-bg-2: #cffafe;
    --step-accent: #16a34a;
    --step-accent-2: #06b6d4;
    --step-shadow: rgba(22,163,74,0.18);
}

.steps-grid .steps-card:nth-child(2) {
    --step-bg: #dbeafe;
    --step-bg-2: #e9d5ff;
    --step-accent: #2563eb;
    --step-accent-2: #7c3aed;
    --step-shadow: rgba(37,99,235,0.18);
}

.steps-grid .steps-card:nth-child(3) {
    --step-bg: #fde68a;
    --step-bg-2: #fed7aa;
    --step-accent: #f97316;
    --step-accent-2: #f59e0b;
    --step-shadow: rgba(249,115,22,0.2);
}

.steps-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(2,8,23,0.1);
    min-height: 168px;
}

.steps-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,15,29,0.08) 0%, rgba(8,15,29,0) 38%, rgba(8,15,29,0.12) 100%);
    z-index: 1;
    pointer-events: none;
}

.steps-media::after {
    content: '';
    position: absolute;
    inset: auto 8px 8px auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.01));
    backdrop-filter: blur(6px);
    opacity: 0.66;
    transition: transform 0.36s ease, opacity 0.36s ease;
    z-index: 2;
}

.steps-card img {
    width: 100%;
    display: block;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
    border-radius: 14px;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.36s ease;
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.step-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    color: var(--step-accent);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 18px rgba(15,23,42,0.05);
}

.step-badge {
    position: static;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--step-accent), var(--step-accent-2));
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 16px var(--step-shadow);
    transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.34s ease, filter 0.34s ease;
}

.steps-copy {
    padding: 0 1px;
}

.steps-card h3 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 3px;
    color: #14263a;
}

.steps-card p {
    color: #5b6f89;
    font-size: 11px;
    line-height: 1.45;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

.about-copy .section-head {
    margin-bottom: 26px;
}

.about-copy .about-card {
    max-width: 560px;
}

.about-grid > .about-card {
    width: 100%;
    max-width: 590px;
    justify-self: end;
}

.about-card {
    --about-bg: #dbeafe;
    --about-bg-2: #f0fdf4;
    --about-accent: #0f766e;
    --about-accent-2: #2563eb;
    --about-shadow: rgba(37,99,235,0.18);
    position: relative;
    display: grid;
    gap: 14px;
    padding: 20px 20px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.74);
    background:
        linear-gradient(158deg, rgba(255,255,255,0.96), rgba(255,255,255,0.62) 42%, transparent 100%),
        linear-gradient(135deg, var(--about-bg), var(--about-bg-2));
    box-shadow: 0 22px 44px var(--about-shadow);
    overflow: hidden;
    isolation: isolate;
}

.about-card::before {
    content: '';
    position: absolute;
    right: -36px;
    bottom: -42px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.18) 42%, transparent 74%);
    opacity: 0.92;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    z-index: 0;
}

.about-card > * {
    position: relative;
    z-index: 2;
}

.about-card--retail {
    --about-bg: #c7f9ff;
    --about-bg-2: #dbeafe;
    --about-accent: #0f766e;
    --about-accent-2: #2563eb;
    --about-shadow: rgba(14,165,164,0.18);
}

.about-card--trust {
    --about-bg: #fef3c7;
    --about-bg-2: #ede9fe;
    --about-accent: #7c3aed;
    --about-accent-2: #f59e0b;
    --about-shadow: rgba(124,58,237,0.16);
}

.about-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.58);
    color: var(--about-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(15,23,42,0.06);
}

.about-score {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--about-accent), var(--about-accent-2));
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 14px 26px var(--about-shadow);
}

.about-card-title {
    font-size: 16px;
    line-height: 1.2;
    color: #122438;
    margin: 0;
}

.about-card-copy {
    color: #5b6f89;
    font-size: 14px;
    line-height: 1.58;
    margin: 0;
}

.about-card ul,
.about-card .about-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
}

.about-card li,
.about-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #20344a;
    line-height: 1.5;
}

.about-point-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--about-accent), var(--about-accent-2));
    color: #fff;
    box-shadow: 0 12px 22px var(--about-shadow);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.36s ease, filter 0.36s ease;
}

.about-point-icon i {
    font-size: 13px;
}

.about-point-text strong {
    display: block;
    font-size: 14px;
    color: #16293d;
}

.about-point-text span {
    display: block;
    color: #5b6f89;
    font-size: 12px;
    margin-top: 2px;
}

.about-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(255,255,255,0.54);
    color: #35506f;
    font-size: 11px;
    font-weight: 700;
}

.about-chip i {
    color: var(--about-accent);
}

.about-card.interactive.in-view {
    animation-duration: 860ms;
}

.about-card:hover {
    border-color: rgba(255,255,255,0.94);
    filter: saturate(1.06);
    box-shadow: 0 30px 60px var(--about-shadow);
}

.about-card:hover::before {
    transform: translate3d(-10px, -14px, 0) scale(1.08);
    opacity: 1;
}

.about-card:hover .about-point-icon,
.about-card:hover .about-score {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 30px var(--about-shadow);
    filter: saturate(1.08);
}

.about-card:hover .about-card-title {
    color: #0f172a;
}

.about-card:hover .about-card-copy,
.about-card:hover .about-point-text span {
    color: #495d76;
}

.testimonial-card {
    --testimonial-bg: #dbeafe;
    --testimonial-bg-2: #eef2ff;
    --testimonial-accent: #2563eb;
    --testimonial-accent-2: #7c3aed;
    --testimonial-shadow: rgba(37,99,235,0.18);
    position: relative;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.74);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6) 42%, transparent 100%),
        linear-gradient(135deg, var(--testimonial-bg), var(--testimonial-bg-2));
    box-shadow: 0 20px 38px var(--testimonial-shadow);
    overflow: hidden;
    isolation: isolate;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--testimonial-accent), var(--testimonial-accent-2));
    border-radius: 999px;
    box-shadow: 0 12px 26px var(--testimonial-shadow);
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.16) 42%, transparent 72%);
    transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    opacity: 0.88;
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonials-grid .testimonial-card:nth-child(1) {
    --testimonial-bg: #dbeafe;
    --testimonial-bg-2: #eef2ff;
    --testimonial-accent: #2563eb;
    --testimonial-accent-2: #4f46e5;
    --testimonial-shadow: rgba(37,99,235,0.18);
}

.testimonials-grid .testimonial-card:nth-child(2) {
    --testimonial-bg: #ede9fe;
    --testimonial-bg-2: #fae8ff;
    --testimonial-accent: #7c3aed;
    --testimonial-accent-2: #ec4899;
    --testimonial-shadow: rgba(124,58,237,0.18);
}

.testimonials-grid .testimonial-card:nth-child(3) {
    --testimonial-bg: #cffafe;
    --testimonial-bg-2: #e0f2fe;
    --testimonial-accent: #0891b2;
    --testimonial-accent-2: #2563eb;
    --testimonial-shadow: rgba(8,145,178,0.18);
}

.testimonial-header {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.testimonial-person {
    display: flex;
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 14px 28px rgba(15,23,42,0.08);
    padding: 6px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #14263a;
}

.testimonial-sub {
    font-size: 13px;
    color: #607089;
    margin-top: 2px;
}

.testimonial-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: var(--testimonial-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.testimonial-quote {
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-quote-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--testimonial-accent), var(--testimonial-accent-2));
    color: #fff;
    font-size: 18px;
    box-shadow: 0 16px 30px var(--testimonial-shadow);
    transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.34s ease, filter 0.34s ease;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 24px;
    align-items: start;
    justify-content: space-between;
}

.contact-card {
    --contact-bg: #dbeafe;
    --contact-bg-2: #eef2ff;
    --contact-accent: #2563eb;
    --contact-accent-2: #06b6d4;
    --contact-shadow: rgba(37,99,235,0.18);
    position: relative;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.96), rgba(255,255,255,0.58) 42%, transparent 100%),
        linear-gradient(135deg, var(--contact-bg), var(--contact-bg-2));
    border: 1px solid rgba(255,255,255,0.76);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 34px var(--contact-shadow);
    overflow: hidden;
    isolation: isolate;
    align-self: start;
    height: auto;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--contact-accent), var(--contact-accent-2));
    box-shadow: 0 12px 30px var(--contact-shadow);
    z-index: 1;
}

.contact-card::after {
    content: '';
    position: absolute;
    right: -48px;
    bottom: -56px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.16) 42%, transparent 72%);
    transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    opacity: 0.92;
    z-index: 0;
}

.contact-card > * {
    position: relative;
    z-index: 2;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    color: #586980;
    font-size: 14px;
}

.contact-form {
    --contact-bg: #dff6ff;
    --contact-bg-2: #e9f7ef;
    --contact-accent: #0ea5a4;
    --contact-accent-2: #2563eb;
    --contact-shadow: rgba(14,165,164,0.18);
    width: 100%;
    max-width: 520px;
    justify-self: end;
}

.contact-grid .contact-card:first-child {
    --contact-bg: #e0f2fe;
    --contact-bg-2: #eef2ff;
    --contact-accent: #2563eb;
    --contact-accent-2: #7c3aed;
    --contact-shadow: rgba(59,130,246,0.18);
}

.contact-lead {
    font-size: 14px;
    line-height: 1.55;
    max-width: 34ch;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    color: var(--contact-accent);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.contact-list {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 10px 22px rgba(15,23,42,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-item i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(15,23,42,0.1);
    flex-shrink: 0;
}

.contact-item:nth-child(1) i {
    background: linear-gradient(135deg, #0ea5a4, #06b6d4);
}

.contact-item:nth-child(2) i {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.contact-item:nth-child(3) i {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.contact-item strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 3px;
}

.contact-item span {
    color: #1e293b;
    line-height: 1.45;
    font-size: 14px;
}

.contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form-glow {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    background: linear-gradient(135deg, var(--contact-accent), var(--contact-accent-2));
    box-shadow: 0 14px 26px var(--contact-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.34s ease, filter 0.34s ease;
}

.contact-form-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0));
    opacity: 0.9;
}

.contact-form-copy p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.82);
    font-size: 13px;
    font-family: var(--font-sans);
    background: rgba(255,255,255,0.8);
    box-shadow: 0 10px 20px rgba(15,23,42,0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(14,165,164,0.42);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 0 0 4px rgba(14,165,164,0.12), 0 14px 24px rgba(15,23,42,0.08);
    transform: translateY(-1px);
}

.form-stack {
    display: grid;
    gap: 12px;
}

.team-card {
    --team-bg: #dbeafe;
    --team-bg-2: #f5d0fe;
    --team-accent: #2563eb;
    --team-accent-2: #8b5cf6;
    --team-shadow: rgba(59,130,246,0.18);
    position: relative;
    text-align: center;
    padding: 28px 28px 26px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.78);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.96), rgba(255,255,255,0.62) 44%, transparent 100%),
        linear-gradient(135deg, var(--team-bg), var(--team-bg-2));
    box-shadow: 0 24px 46px var(--team-shadow);
    overflow: hidden;
    isolation: isolate;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--team-accent), var(--team-accent-2));
    box-shadow: 0 12px 28px var(--team-shadow);
    z-index: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    right: -48px;
    top: -38px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.12) 42%, transparent 72%);
    opacity: 0.92;
    transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.36s ease;
    z-index: 0;
}

.team-card > * {
    position: relative;
    z-index: 2;
}

.team-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    color: var(--team-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 22px rgba(15,23,42,0.06);
    margin-bottom: 14px;
}

.team-card h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #102338;
}

.team-card-copy {
    color: #5b6f89;
    font-size: 16px;
    line-height: 1.65;
    max-width: 54ch;
    margin: 0 auto 18px;
}

.team-pill-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.team-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.76);
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15,23,42,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.team-pill i {
    color: var(--team-accent);
}

.team-card .btn-outline {
    background: linear-gradient(135deg, var(--team-accent), var(--team-accent-2));
    color: #fff;
    border: none;
    min-width: 170px;
    padding: 13px 24px;
    box-shadow: 0 16px 32px var(--team-shadow);
}

.team-card .btn-outline:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 40px var(--team-shadow);
}

.team-card.reveal.in-view {
    animation: entro 860ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 54px var(--team-shadow);
    border-color: rgba(255,255,255,0.92);
    filter: saturate(1.08);
}

.team-card:hover::after {
    transform: translate3d(-16px, 10px, 0) scale(1.08);
    opacity: 1;
}

.team-card:hover .team-pill {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.84);
}

.site-footer {
    position: relative;
    margin-top: 72px;
    padding: 68px 0 32px;
    background:
        radial-gradient(circle at 12% 18%, rgba(37,99,235,0.2), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(14,165,164,0.18), transparent 26%),
        radial-gradient(circle at 52% 92%, rgba(245,158,11,0.16), transparent 30%),
        linear-gradient(180deg, #081423 0%, #06101c 100%);
    color: #cbd5e1;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 45%);
    pointer-events: none;
}

.footer-grid {
    margin: 0;
    padding: 0 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(190px, 1fr));
    gap: 34px;
    align-items: stretch;
}

.footer-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
}

.footer-card::after {
    display: none;
}

.footer-card:hover {
    transform: translateY(-3px);
}

.footer-card > * {
    position: relative;
    z-index: 2;
}

.footer-brand-card {
    padding-right: 22px;
}

.footer-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.footer-logo-shell img {
    width: 148px;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(15,23,42,0.16));
    position: relative;
    z-index: 2;
}

.footer-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(14,165,164,0.12));
    border: 1px solid rgba(125,211,252,0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8dd3ff;
}

.footer-brand-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    box-shadow: 0 0 0 6px rgba(56,189,248,0.12);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 0.96;
    color: #f8fbff;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 24px rgba(15,23,42,0.22);
}

.footer-brand-copy {
    color: #c3d3e7;
    font-size: 17px;
    line-height: 1.82;
    max-width: 33ch;
    text-wrap: balance;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #f8fbff;
    letter-spacing: -0.02em;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 13px;
    font-size: 16px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d7e2ef;
    line-height: 1.55;
    transition: transform 0.24s ease, color 0.24s ease, opacity 0.24s ease;
}

.footer-list li i {
    color: #69a7ff;
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 16px;
}

.footer-list a {
    color: inherit;
    transition: color 0.24s ease;
}

.footer-card:hover .footer-list li {
    color: #eef2ff;
}

.footer-card:hover .footer-list li:hover {
    transform: translateX(4px);
}

.footer-bottom {
    margin: 28px 0 0;
    padding: 0 48px;
    font-size: 14px;
    color: #a9bacf;
    border-top: 1px solid rgba(148,163,184,0.12);
    padding-top: 20px;
}

.footer-bottom-bar {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-bar strong {
    color: #e3eefc;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Section content fills full container width */

/* Hero padding unified to section.section — see line 239 */

.hero-copy {
    padding-right: 20px;
}

.hero h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 18px;
    max-width: 64ch;
}

.card.interactive {
    --card-tilt-x: 0deg;
    --card-tilt-y: 0deg;
    --card-lift: 0px;
    --card-scale: 1;
    position: relative;
    overflow: visible;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.36s ease, filter 0.36s ease, border-color 0.36s ease;
    transform: perspective(1000px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(calc(var(--card-lift) * -1)) scale(var(--card-scale));
    will-change: transform, box-shadow;
    cursor: pointer;
}

.card.interactive .card-inner {
    position: relative;
    z-index: 2;
}

.card.interactive::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 18px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
    box-shadow: 0 8px 20px rgba(2,8,23,0.04);
    pointer-events: none;
    transform: rotate(12deg);
    opacity: 0.6;
    transition: transform 0.36s ease, opacity 0.36s ease;
}

.card.interactive:hover {
    --card-lift: 12px;
    --card-scale: 1.025;
    box-shadow: 0 36px 90px rgba(11,27,43,0.14);
}

.card.interactive:hover::after {
    opacity: 0.92;
    transform: rotate(8deg) translateY(-3px);
}

.card.interactive:focus-within {
    outline: 3px solid rgba(14,165,164,0.14);
}

@keyframes floatSubtle {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero .metric-card {
    animation: floatSubtle 6s ease-in-out infinite;
}

@keyframes entro {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.995) rotateX(4deg);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01) rotateX(0deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

.interactive.in-view {
    animation: entro 720ms cubic-bezier(0.2, 0.9, 0.2, 1) var(--card-delay, 0ms) both;
}

.service-card.interactive.in-view {
    animation-duration: 860ms;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.95);
    filter: saturate(1.08);
}

.service-card:hover::before {
    transform: translate3d(-12px, -14px, 0) scale(1.08);
    opacity: 1;
}

.service-card:hover .icon {
    transform: translateY(-6px) scale(1.06) rotate(-4deg);
    box-shadow: 0 20px 34px var(--card-shadow);
    filter: saturate(1.08);
}

.service-card:hover h3 {
    color: #0f172a;
}

.service-card:hover p {
    color: #42546d;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   1280px → Large laptop / small desktop
   980px  → Tablet landscape / small laptop
   768px  → Tablet portrait
   480px  → Mobile
   360px  → Small mobile
══════════════════════════════════════════════════════════ */

/* ── 1280px: Large laptop ─────────────────────────────── */
@media (max-width: 1280px) {
    .container { padding: 0 36px; }
    .footer-grid,
    .footer-bottom { padding-left: 36px; padding-right: 36px; }
    .hero h1 { font-size: clamp(32px, 4vw, 54px); }
    /* service-grid stays 4 cols at 1280px */
}

/* ── 980px: Tablet landscape / small laptop ────────────── */
@media (max-width: 980px) {
    /* Container */
    .container { padding: 0 28px; }
    .footer-grid,
    .footer-bottom { padding-left: 28px; padding-right: 28px; }

    /* Sections */
    section.section { padding: 36px 0; }
    .hero { padding: 36px 0; }
    .trusted { padding: 28px 0; }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-copy { order: 1; padding-right: 0; }
    .hero-visual { order: 2; }
    .hero h1 { font-size: clamp(28px, 5vw, 46px); }
    .hero-slider { height: 360px; }
    .hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .floating-badge { right: 12px; bottom: 12px; font-size: 13px; }

    /* Grids */
    .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; } /* 3 cols on tablet-landscape */
    .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .steps-grid   { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-copy .about-card,
    .about-grid > .about-card { max-width: 100%; justify-self: stretch; }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form { max-width: 100%; justify-self: stretch; }

    /* Section headings */
    .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .section-head h2 { font-size: clamp(24px, 3.5vw, 36px); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .site-footer { margin-top: 48px; padding: 48px 0 24px; }
}

/* ── 860px: Navigation hamburger ──────────────────────── */
@media (max-width: 860px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        background: var(--surface);
        border: 1px solid var(--stroke);
        padding: 16px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        z-index: 300;
        gap: 6px;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: inline-flex; }
    .nav-actions { gap: 8px; }
    .nav-inner { padding: 8px 16px; }
    .brand img { height: 68px; }
}

/* ── 768px: Tablet portrait ───────────────────────────── */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 20px; }
    .footer-grid,
    .footer-bottom { padding-left: 20px; padding-right: 20px; }

    /* Sections */
    section.section { padding: 28px 0; }
    .hero { padding: 28px 0 20px; }
    .trusted { padding: 20px 0; }

    /* Hero */
    .hero h1 { font-size: clamp(26px, 6vw, 40px); }
    .hero p  { font-size: 16px; }
    .hero-slider { height: 300px; }
    .hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
    .metric-card { padding: 12px; }
    .metric-card strong { font-size: 17px; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; }
    .eyebrow { font-size: 11px; }

    /* Service grid — 2 columns on tablet portrait */
    .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
    .service-card { padding: 18px 16px; }
    .service-card .icon { width: 46px; height: 46px; font-size: 18px; }

    /* Feature grid — 2 columns */
    .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }

    /* Steps — 1 column on tablet portrait */
    .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* Testimonials — 1 column */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Section heading */
    .section-head h2 { font-size: clamp(22px, 5vw, 32px); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand-name { font-size: 36px; }
    .footer-title { font-size: 22px; }
    .footer-list { font-size: 14px; }
    .site-footer { margin-top: 36px; padding: 40px 0 20px; }

    /* Team card */
    .team-card { padding: 24px 20px; }
    .team-card h2 { font-size: clamp(28px, 5vw, 44px); }

    /* Trusted logos */
    .trusted .trusted-logos { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ── 480px: Mobile ─────────────────────────────────────── */
@media (max-width: 480px) {
    /* Container */
    .container { padding: 0 16px; }
    .footer-grid,
    .footer-bottom { padding-left: 16px; padding-right: 16px; }

    /* Sections */
    section.section { padding: 24px 0; }
    .hero { padding: 20px 0 16px; }
    .trusted { padding: 16px 0; }

    /* Nav */
    .brand img { height: 58px; }
    .nav-inner { padding: 6px 14px; }
    .nav-actions .btn { padding: 8px 12px; font-size: 12px; }
    .btn-primary, .btn-outline, .btn-ghost { font-size: 13px; }

    /* Hero */
    .hero h1 { font-size: clamp(22px, 7vw, 32px); line-height: 1.1; }
    .hero p  { font-size: 14px; max-width: 100%; }
    .hero-slider { height: 240px; }
    .hero-metrics { grid-template-columns: 1fr; gap: 8px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .floating-badge { display: none; }

    /* Section heading */
    .section-head { gap: 8px; margin-bottom: 20px; }
    .section-head h2 { font-size: clamp(20px, 6.5vw, 28px); }
    .section-head p  { font-size: 13px; }

    /* Service grid — 1 column */
    .service-grid { grid-template-columns: 1fr; gap: 12px; }
    .service-card { padding: 18px 16px; min-height: 0; flex-direction: row; align-items: center; gap: 14px; }
    .service-card .icon { flex-shrink: 0; width: 44px; height: 44px; font-size: 18px; border-radius: 14px; }
    .service-card > *:not(.icon) { flex: 1; }

    /* Feature grid — 1 column */
    .feature-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card { padding: 20px 16px 18px 22px; }

    /* Steps — 1 column, compact */
    .steps-grid { grid-template-columns: 1fr; max-width: 100%; }
    .steps-card { padding: 14px; border-radius: 18px; }
    .steps-media, .steps-card img { min-height: 160px; border-radius: 12px; }
    .step-badge { width: 28px; height: 28px; font-size: 12px; }
    .steps-card h3 { font-size: 13px; }
    .steps-card p  { font-size: 11px; }

    /* Testimonials — 1 column */
    .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
    .testimonial-card { padding: 20px 16px; }
    .testimonial-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .testimonial-chip { align-self: flex-start; }
    .testimonial-name { font-size: 16px; }
    .testimonial-quote { font-size: 13px; }

    /* About */
    .about-grid { gap: 16px; }
    .about-card { padding: 16px 16px 14px; }

    /* Contact */
    .contact-grid { gap: 16px; }
    .contact-card { padding: 18px 16px; border-radius: 20px; }
    .contact-form-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .contact-form-copy h3 { font-size: 17px; }
    .form-control { padding: 10px 12px; font-size: 13px; }

    /* Team */
    .team-card { padding: 20px 16px; border-radius: 22px; }
    .team-card h2 { font-size: 28px; }
    .team-card-copy { font-size: 14px; }
    .team-pill { font-size: 12px; padding: 8px 12px; }
    .team-pill-row { gap: 8px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .footer-brand-name { font-size: 32px; }
    .footer-brand-copy { font-size: 15px; }
    .footer-title { font-size: 20px; margin-bottom: 12px; }
    .footer-list { font-size: 13px; gap: 10px; }
    .footer-bottom { margin-top: 20px; padding-top: 16px; font-size: 12px; }
    .footer-bottom-bar { flex-direction: column; gap: 6px; text-align: center; }
    .site-footer { margin-top: 28px; padding: 32px 0 16px; }

    /* Trusted logos */
    .trusted .trusted-logos { grid-template-columns: repeat(2, minmax(0,1fr)); }

    /* Buttons full-width in hero */
    .btn { font-size: 14px; padding: 10px 16px; }

    /* Modal */
    .modal-overlay { padding: 16px; }
    .modal-box { padding: 20px 18px; }
}

/* ── 360px: Small mobile ───────────────────────────────── */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .footer-grid,
    .footer-bottom { padding-left: 12px; padding-right: 12px; }
    .hero h1 { font-size: 20px; }
    .section-head h2 { font-size: 18px; }
    .service-card { padding: 14px 12px; }
    .service-card .icon { width: 38px; height: 38px; font-size: 15px; }
    .nav-actions .btn:first-child { display: none; } /* hide Login on very small screens */
    .hero-slider { height: 200px; }
    .testimonial-name { font-size: 14px; }
    .feature-card { padding: 16px 12px 14px 18px; }
    .footer-brand-name { font-size: 28px; }
}

/* ── Accessibility: reduced motion ────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .card.interactive,
    .hero .metric-card,
    .service-card { animation: none !important; transition: none !important; }
    .reveal {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .service-card.in-view { animation: none; opacity: 1; }
}

.feature-card.interactive,
.steps-card.interactive,
.testimonial-card.interactive,
.metric-card.interactive,
.contact-card.interactive {
    --card-delay: 0ms;
    transition-delay: var(--card-delay);
}

.feature-card.interactive.in-view {
    animation-duration: 820ms;
}

.feature-card:hover {
    border-color: rgba(255,255,255,0.92);
    filter: saturate(1.08);
}

.feature-card:hover::after {
    transform: translate3d(-14px, -12px, 0) scale(1.08);
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-7px) scale(1.08) rotate(-5deg);
    box-shadow: 0 20px 36px var(--feature-shadow);
    filter: saturate(1.08);
}

.feature-card:hover strong {
    color: #0f172a;
}

.feature-card:hover span {
    color: #42546d;
}

.steps-card.interactive.in-view {
    animation-duration: 860ms;
}

.steps-card:hover {
    border-color: rgba(255,255,255,0.92);
    filter: saturate(1.08);
}

.steps-card:hover::after {
    transform: translate3d(-10px, 8px, 0) scale(1.06);
    opacity: 1;
}

.steps-card:hover .steps-media::after {
    transform: translateY(-3px) rotate(-6deg);
    opacity: 1;
}

.steps-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.04) contrast(1.02);
}

.steps-card:hover .step-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 20px var(--step-shadow);
    filter: saturate(1.08);
}

.steps-card:hover h3 {
    color: #0f172a;
}

.steps-card:hover p {
    color: #475569;
}

.testimonial-card.interactive.in-view {
    animation-duration: 860ms;
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.92);
    filter: saturate(1.08);
}

.testimonial-card:hover::after {
    transform: translate3d(-14px, -12px, 0) scale(1.08);
    opacity: 1;
}

.testimonial-card:hover .testimonial-quote-mark {
    transform: translateY(-6px) scale(1.08) rotate(-6deg);
    box-shadow: 0 20px 34px var(--testimonial-shadow);
    filter: saturate(1.08);
}

.testimonial-card:hover .testimonial-name {
    color: #0f172a;
}

.testimonial-card:hover .testimonial-quote {
    color: #1e293b;
}

.tilt-enabled {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Old media queries removed — replaced by the 5-breakpoint system above */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.75));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 28px;
}

.modal-box {
    background: linear-gradient(180deg, #ffffff, #f7fffe);
    color: #073040;
    border-radius: 14px;
    max-width: 680px;
    width: 100%;
    padding: 26px 28px;
    box-shadow: 0 30px 90px rgba(2,16,31,0.65);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-brand {
    position: absolute;
    right: 18px;
    top: 18px;
    opacity: 0.08;
    font-weight: 900;
    font-size: 36px;
    color: #0ea5a4;
}

.modal-check {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
}

.check-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, #0ea5a4, #2563eb);
    box-shadow: 0 10px 30px rgba(14,165,164,0.24);
}

.check-svg {
    width: 52px;
    height: 52px;
    stroke: #fff;
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw 420ms ease forwards 220ms;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.modal-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
    color: #073040;
}

.modal-body {
    color: #0b5460;
    margin-bottom: 18px;
    font-size: 16px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-modal-primary {
    background: linear-gradient(90deg, #0ea5a4, #2563eb);
    color: #fff;
    border: 0;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(14,165,164,0.18);
    cursor: pointer;
}

.btn-modal-secondary {
    background: transparent;
    border: 2px solid rgba(7,48,64,0.08);
    padding: 10px 16px;
    border-radius: 10px;
    color: #073040;
    cursor: pointer;
}

.close-x {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: 0;
    color: rgba(7,48,64,0.45);
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
}
