/* 
 * Primus Website - Custom Styles
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0a2540;
    --accent-orange: #e8472c;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
    padding-top: 85px; /* Space for fixed header */
    animation: fadeInPage 0.6s ease-out;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animations */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Sticky Header Custom States */
header.bg-white .nav-link {
    color: #1e293b !important;
}

header.bg-white #mobile-menu-btn {
    color: #1e293b !important;
}

/* Header services submenu */
.nav-dropdown {
    min-height: 64px;
}

.nav-dropdown-icon,
.mobile-submenu-icon {
    transition: transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown:focus-within .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 300px;
    transform: translate(-50%, 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-submenu-link {
    display: block;
    border-radius: 6px;
    padding: 10px 12px;
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.25;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-submenu-link:hover,
.nav-submenu-link:focus {
    color: #e8472c;
    background: rgba(232, 71, 44, 0.08);
    transform: translateX(2px);
    outline: none;
}

/* Form Styles */
.form-input {
    @apply w-full px-5 py-4 bg-white border-2 border-slate-200 rounded-xl text-slate-900 placeholder:text-slate-400 focus:outline-none focus:ring-4 focus:ring-primus-orange/10 focus:border-primus-orange transition-all duration-300 shadow-sm;
}

label {
    @apply text-slate-800 font-bold text-[15px] tracking-wide mb-3 block;
}

/* Utility Classes */
.section-padding {
    @apply py-32 md:py-40;
}

.heading-lg {
    @apply text-5xl md:text-6xl lg:text-7xl font-bold leading-[1.1];
}

.subheading {
    @apply text-primus-orange font-bold tracking-[0.2em] uppercase text-xs md:text-sm mb-6 flex items-center gap-4 before:content-[''] before:w-8 before:h-[2px] before:bg-primus-orange;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Page hero headings: 30% smaller than the original Tailwind sizes. */
main section h1.text-5xl.md\:text-8xl {
    font-size: 2.1rem !important;
}

main section h1.text-4xl.md\:text-7xl {
    font-size: 1.575rem !important;
}

@media (min-width: 768px) {
    main section h1.text-5xl.md\:text-8xl {
        font-size: 4.2rem !important;
    }

    main section h1.text-4xl.md\:text-7xl {
        font-size: 3.15rem !important;
    }
}

/* Inner page hero spacing. Home page uses .pic-hero and is not affected. */
main section.bg-primus-blue.pt-32.pb-24 {
    padding-top: 3.5rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 640px) {
    main section.bg-primus-blue.pt-32.pb-24 span.text-white\/80.text-sm.tracking-widest.uppercase {
        font-size: 0.75rem !important;
    }
}

/* Mobile menu redesign */
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    border-color: #e8472c;
    box-shadow: 0 8px 24px rgba(232, 71, 44, 0.2);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 999px;
    margin: 0 auto;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-btn.is-open {
    border-color: #e8472c;
    background: rgba(232, 71, 44, 0.08);
    box-shadow: 0 8px 26px rgba(232, 71, 44, 0.28);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 92px 28px 32px;
    transform: translateX(108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.3s ease;
    box-shadow: -24px 0 60px rgba(2, 6, 23, 0.45);
}

.mobile-menu-panel.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel .nav-link-mobile {
    color: #e2e8f0;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.mobile-services-group {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.mobile-menu-panel .mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.mobile-menu-panel .mobile-submenu-toggle,
.mobile-menu-panel .mobile-submenu-link {
    border-bottom: 0;
}

.mobile-submenu-toggle.is-open .mobile-submenu-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding: 2px 0 10px;
}

.mobile-submenu.is-open {
    display: block;
}

.mobile-menu-panel .mobile-submenu-link {
    display: block;
    margin-left: 12px;
    padding: 8px 4px 8px 14px;
    border-left: 2px solid rgba(232, 71, 44, 0.35);
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.25);
    background: rgba(15, 23, 42, 0.3);
    color: #f8fafc;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.mobile-menu-close:hover {
    border-color: #e8472c;
    color: #ffb7ad;
    background: rgba(232, 71, 44, 0.12);
}

/* Shared CTA */
.pic-cta-section {
    padding: 88px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pic-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.pic-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 88% 8%, rgba(232, 71, 44, 0.36) 0%, rgba(232, 71, 44, 0.14) 30%, transparent 58%),
        radial-gradient(circle at 8% 88%, rgba(37, 99, 235, 0.24) 0%, transparent 48%),
        linear-gradient(135deg, #0f172a 0%, #172033 48%, #271715 100%);
}

.pic-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.pic-cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 40px;
    align-items: center;
    padding: 56px;
}

.pic-cta-copy {
    max-width: 760px;
}

.pic-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #fed7d1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pic-cta-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #e8472c;
    box-shadow: 0 0 0 7px rgba(232, 71, 44, 0.14);
}

.pic-cta-title {
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.12;
    font-weight: 900;
}

.pic-cta-text {
    max-width: 660px;
    margin-top: 22px;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.85;
}

.pic-cta-panel {
    display: flex;
    justify-content: flex-end;
}

.pic-cta-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.pic-cta-proof div {
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.pic-cta-proof strong {
    display: block;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.pic-cta-proof span {
    display: block;
    margin-top: 7px;
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.4;
}

.pic-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.pic-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.pic-cta-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #e8472c 0%, #c93422 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(232, 71, 44, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.pic-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(232, 71, 44, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.pic-cta-btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.pic-cta-btn-secondary:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(232, 71, 44, 0.5);
    background: rgba(232, 71, 44, 0.14);
}

.pic-cta-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.pic-cta-btn-primary:hover .pic-cta-btn-icon {
    transform: translateX(3px);
}

/* ─── HERO — premium redesign ─────────────────────────────────── */

/* Base */
.pic-hero {
    background: #111827;
    min-height: 820px;
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

/* Deep layered gradient bg */
.pic-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 760px 520px at 72% 34%, rgba(37,99,235,0.18) 0%, rgba(37,99,235,0.07) 36%, transparent 68%),
        radial-gradient(ellipse 620px 430px at 18% 78%, rgba(37,99,235,0.16) 0%, transparent 62%),
        linear-gradient(155deg, #0f172a 0%, #1f2937 46%, #111827 100%);
}

/* Subtle noise texture */
.pic-hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Grid lines */
.pic-hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148,163,184,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
}

/* Floating orbs */
.pic-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite;
    filter: blur(1px);
}
.pic-hero-orb-1 {
    width: 520px; height: 520px;
    top: -160px; right: -80px;
    background: rgba(37,99,235,0.1);
    animation-delay: 0s;
}
.pic-hero-orb-2 {
    width: 400px; height: 400px;
    bottom: -120px; left: -80px;
    background: rgba(37,99,235,0.1);
    animation-delay: -4s;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.12); opacity: 1; }
}

/* ── LEFT COPY ────────────────────────────────────────────────── */

.pic-hero-copy {
    max-width: 680px;
}

/* Kicker badge row */
.pic-hero-kicker-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(232,71,44,0.36);
    background: rgba(232,71,44,0.08);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}
.pic-hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8472c;
    box-shadow: 0 0 0 4px rgba(232,71,44,0.28);
    flex-shrink: 0;
    animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(232,71,44,0.28); }
    50% { box-shadow: 0 0 0 8px rgba(232,71,44,0.12); }
}
.pic-hero-kicker-text {
    color: #ffb7ad;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Headline */
.pic-hero-title {
    color: #f8fafc;
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-wrap: balance;
    font-family: 'Outfit', sans-serif;
}
.pic-hero-title-accent {
    display: block;
    margin-top: 4px;
    color: #f8fafc;
    font-weight: 800;
}
.pic-hero-title-highlight {
    display: block;
    margin-top: 4px;
    color: #e8472c;
    font-weight: 900;
}
.pic-hero-title-accent .pic-hero-title-highlight {
    display: inline;
    margin-top: 0;
}

/* Lead */
.pic-hero-lead {
    margin-top: 24px;
    color: #bdd8ff;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.9;
    max-width: 600px;
}

/* CTA row */
.pic-hero-cta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pic-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}
.pic-hero-btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.22s ease;
    flex-shrink: 0;
}
.pic-hero-btn-primary {
    background: #e8472c;
    color: #fff;
    box-shadow: 0 12px 28px rgba(232,71,44,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
    border: 1px solid rgba(232,71,44,0.5);
}
.pic-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(232,71,44,0.48), inset 0 1px 0 rgba(255,255,255,0.22);
}
.pic-hero-btn-primary:hover .pic-hero-btn-icon {
    transform: translateX(3px);
}
.pic-hero-btn-ghost {
    color: #e2e8f0;
    border: 1px solid rgba(148,163,184,0.3);
    background: rgba(15,23,42,0.45);
    backdrop-filter: blur(8px);
}
.pic-hero-btn-ghost:hover {
    transform: translateY(-3px);
    border-color: rgba(232,71,44,0.5);
    background: rgba(232,71,44,0.1);
    color: #ffb7ad;
}

/* Trust strip */
.pic-hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 36px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(148,163,184,0.14);
}
.pic-hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 128px;
    width: 100%;
    text-align: center;
}
.pic-hero-trust-num {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    text-align: center;
}
.pic-hero-trust-label {
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #bdd8ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    text-align: center;
}
.pic-hero-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(148,163,184,0.18);
    flex-shrink: 0;
}

/* ── RIGHT PANEL ──────────────────────────────────────────────── */

.pic-hero-visual {
    position: relative;
}

.pic-hero-panel {
    width: min(580px, 100%);
    border-radius: 28px;
    padding: 36px 32px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 40px 80px rgba(2,8,24,0.6),
        0 0 120px rgba(232,71,44,0.08);
    position: relative;
    overflow: hidden;
}

/* decorative corner accent */
.pic-hero-panel::after {
    content: '';
    position: absolute;
    top: -1px; right: -1px;
    width: 120px; height: 120px;
    background: linear-gradient(225deg, rgba(37,99,235,0.16) 0%, transparent 65%);
    border-radius: 0 28px 0 0;
    pointer-events: none;
}

.pic-hero-panel-header {
    margin-bottom: 28px;
}

.pic-hero-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.32);
    color: #93c5fd;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.pic-hero-panel-tag-icon {
    width: 13px; height: 13px;
    opacity: 0.85;
}

.pic-hero-panel-title {
    color: #f8fafc;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
}

.pic-hero-panel-sub {
    color: #bdd8ff;
    font-size: 0.9rem;
    margin: 0;
}

/* Steps list */
.pic-hero-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pic-hero-step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--sg);
    border: 1px solid color-mix(in srgb, var(--s) 22%, transparent);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.pic-hero-step-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--s);
    border-radius: 3px 0 0 3px;
}
.pic-hero-step-card:hover {
    transform: translateX(5px);
    border-color: color-mix(in srgb, var(--s) 48%, transparent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pic-hero-step-num-wrap {
    width: 46px; height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--s) 30%, transparent);
}
.pic-hero-step-num {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    font-family: 'Outfit', sans-serif;
}

.pic-hero-step-body {
    flex: 1;
    min-width: 0;
}
.pic-hero-step-name {
    display: block;
    color: #f1f5f9;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    font-family: 'Outfit', sans-serif;
}
.pic-hero-step-desc {
    display: block;
    margin-top: 4px;
    color:#bdd8ff;
    font-size: 0.83rem;
    line-height: 1.45;
}

.pic-hero-step-chevron {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    color: color-mix(in srgb, var(--s) 90%, white);
    flex-shrink: 0;
    transition: background 0.22s ease;
}
.pic-hero-step-card:hover .pic-hero-step-chevron {
    background: color-mix(in srgb, var(--s) 22%, transparent);
}
.pic-hero-step-chevron svg {
    width: 16px; height: 16px;
}

/* Panel footer */
.pic-hero-panel-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(148,163,184,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.pic-hero-panel-footer-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

/* Scroll cue */
.pic-hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.pic-hero-scroll-cue svg {
    width: 22px; height: 22px;
    color: rgba(255,255,255,0.3);
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .pic-hero-cta { justify-content: flex-start; }
    .pic-hero-scroll-cue { display: flex; }
}

@media (max-width: 1279px) {
    .pic-hero-title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
    .pic-hero-panel { padding: 28px 26px; }
    .pic-hero-panel-title { font-size: 1.35rem; }
}

@media (max-width: 1023px) {
    .pic-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 42px 30px;
    }
    .pic-cta-copy {
        text-align: center;
        margin: 0 auto;
    }
    .pic-cta-title,
    .pic-cta-text {
        margin-left: auto;
        margin-right: auto;
    }
    .pic-cta-panel {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }
    .pic-cta-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pic-hero { min-height: 0; }
    .pic-hero-trust-strip {
        justify-content: center;
        gap: 22px;
    }
    .pic-hero-cta { justify-content: center; }
}

@media (max-width: 640px) {
    .pic-cta-section {
        padding: 64px 0;
    }
    .pic-cta {
        border-radius: 20px;
    }
    .pic-cta-content {
        padding: 34px 20px;
    }
    .pic-cta-eyebrow {
        justify-content: center;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
    .pic-cta-title {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
        line-height: 1.14;
    }
    .pic-cta-text {
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.72;
    }
    .pic-cta-panel {
        max-width: none;
    }
    .pic-cta-proof {
        grid-template-columns: 1fr;
    }
    .pic-cta-btn {
        width: 100%;
        min-height: 52px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .pic-hero-kicker-text { font-size: 10px; letter-spacing: 0.12em; }
    .pic-hero-btn { width: 100%; justify-content: center; }
    .pic-hero-trust-strip { flex-wrap: wrap; justify-content: center; }
    .pic-hero-trust-item { min-width: 118px; }
    .pic-hero-trust-divider { display: none; }
}

/* Service Cards */
.service-card {
    transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-image {
    opacity: 1;
    transform: scale(1);
    transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(11, 28, 57, 0.2), rgba(11, 28, 57, 0.8));
    transition: all 800ms ease;
}

.service-arrow {
    background: #e8472c;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-number {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    transition: all 500ms ease;
}

.service-title {
    color: #fff;
    max-width: 340px;
    font-family: 'Outfit', sans-serif;
    transition: all 500ms ease;
}

.service-card.active .service-image {
    opacity: 1;
    transform: scale(1);
}

.service-card.active .service-overlay {
    opacity: 1;
}

.service-card.active .service-arrow {
    background: #e8472c;
    color: #fff;
    transform: scale(1.1);
}

.service-card.active .service-number {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.active .service-title {
    color: #fff;
    max-width: 340px;
}

.service-card:not(.active):hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-wrapper {
        gap: 18px;
    }

    .service-title {
        max-width: 100%;
    }

    .service-card:not(.active):hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pic-hero-orb,
    .pic-hero-kicker-dot,
    .pic-hero-scroll-cue,
    .pic-hero-btn,
    .pic-cta-btn,
    .pic-cta-btn-icon {
        animation: none !important;
        transition: none !important;
    }
}
