:root {
    --bg: #080A0C;
    --bg2: #060810;
    --card: rgba(104,144,176,.04);
    --card-border: rgba(104,144,176,.08);
    --card-hover: rgba(104,144,176,.12);
    --text: #DCE0E8;
    --text-bright: #F0F2F6;
    --muted: rgba(220,224,232,.55);
    --muted2: rgba(220,224,232,.35);
    --accent: #6890B0;
    --accent-light: #B0D8F0;
    --accent-glow: rgba(104,144,176,.15);
    --border: rgba(104,144,176,.10);
    --border-hover: rgba(104,144,176,.25);
    --shadow: 0 12px 40px rgba(0,0,0,.4);
    --radius: 16px;
    --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Atmospheric background ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 900px 500px at 10% -5%, rgba(104,144,176,.14), transparent 60%),
        radial-gradient(ellipse 700px 400px at 85% 8%, rgba(176,216,240,.08), transparent 55%),
        radial-gradient(ellipse 500px 600px at 50% 60%, rgba(104,144,176,.04), transparent 50%),
        linear-gradient(180deg, var(--bg), var(--bg2) 30%, var(--bg));
    pointer-events: none;
}

/* Subtle noise texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
}

/* ── Canvas ── */
#techCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    background: rgba(8,10,12,.7);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.brand {
    display: flex;
    align-items: center;
    transition: opacity .2s, transform .2s;
}

.header .brand { opacity: .85; }
.header .brand:hover { opacity: 1; transform: translateY(-1px); }

.brand__logo {
    display: block;
    width: 200px;
    height: auto;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; }

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.05);
    color: var(--text);
    cursor: pointer;
}

.nav__burger {
    width: 18px; height: 2px;
    background: var(--text);
    display: block; margin: 0 auto;
    position: relative;
}

.nav__burger::before, .nav__burger::after {
    content: ''; position: absolute; left: 0;
    width: 18px; height: 2px; background: var(--text);
}
.nav__burger::before { top: -6px; }
.nav__burger::after { top: 6px; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__menu a, .nav__dropdown-trigger {
    color: var(--muted);
    font-weight: 650;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: color .2s, background .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    opacity: .85;
}

.nav__menu a:hover, .nav__dropdown-trigger:hover {
    color: var(--text);
    background: rgba(104,144,176,.06);
    opacity: 1;
}

.nav__menu a.is-active {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-trigger.is-active {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.nav__dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-bottom: 2px;
    transition: transform .2s ease;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    padding: 10px;
    background: rgba(8,10,12,.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 4px;
    z-index: 60;
}

.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }

@media (min-width: 981px) {
    .nav__dropdown:hover .nav__dropdown-menu { display: flex; }
}

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0; right: 0;
    height: 10px;
}

.nav__dropdown-menu a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.nav__dropdown-menu a:hover {
    background: rgba(104,144,176,.08);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(104,144,176,.2);
    background: var(--accent);
    color: var(--bg);
    font-weight: 900;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 2px 12px rgba(104,144,176,.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(104,144,176,.3);
    background: #7AA0C0;
    opacity: 1;
}

.btn:active { transform: translateY(0); }

.btn--ghost {
    background: rgba(104,144,176,.06);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn--ghost:hover {
    background: rgba(104,144,176,.12);
    border-color: var(--border-hover);
    box-shadow: none;
}

.btn--small {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.05);
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 750;
    font-size: 13px;
}

/* ── Accent text ── */
.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Scroll reveal ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.grid .reveal:nth-child(2) { transition-delay: .1s; }
.grid .reveal:nth-child(3) { transition-delay: .2s; }
.grid .reveal:nth-child(4) { transition-delay: .3s; }

/* ── Cards ── */
.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 22px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 0 40px rgba(104,144,176,.08), 0 8px 32px rgba(0,0,0,.25);
}

/* Shimmer line on hover */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(104,144,176,.06) 45%, rgba(176,216,240,.04) 55%, transparent 60%);
    transition: opacity .3s ease;
    pointer-events: none;
}

.card:hover::before { opacity: 1; }

.card h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0 0 8px;
    color: var(--text-bright);
}

.card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 12px;
}

/* ── Custom card hover (subpage cards) ── */
.sv-card,
.fb-card,
.fl-card,
.ws-card,
.pricing-card,
.fb-price-card,
.ws-price-card {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sv-card:hover,
.fb-card:hover,
.fl-card:hover,
.ws-card:hover,
.pricing-card:hover,
.fb-price-card:hover,
.ws-price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 0 30px rgba(104,144,176,.08), 0 8px 32px rgba(0,0,0,.25);
}

/* Stagger reveals in custom grids */
.sv-grid .reveal:nth-child(2),
.fb-grid .reveal:nth-child(2),
.fl-grid .reveal:nth-child(2),
.ws-grid .reveal:nth-child(2) { transition-delay: .08s; }

.sv-grid .reveal:nth-child(3),
.fb-grid .reveal:nth-child(3),
.fl-grid .reveal:nth-child(3),
.ws-grid .reveal:nth-child(3) { transition-delay: .16s; }

/* ── Strip / chips ── */
.strip {
    padding: 24px 0 40px;
}

.strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    background: rgba(104,144,176,.02);
}

.strip__text {
    margin: 0;
    color: var(--muted2);
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.strip__logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.04);
    color: var(--muted);
    font-weight: 750;
    font-size: 12px;
    transition: transform .2s, border-color .2s, color .2s;
}

.chip:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    color: var(--accent-light);
}

/* ── Sections ── */
.section {
    padding: 72px 0;
    position: relative;
}

.section--tight { padding: 48px 0; }

.section--alt {
    background: rgba(104,144,176,.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section__head {
    margin-bottom: 28px;
}

.section__head h2 {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 10px;
}

.section__head p {
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
    font-size: 16px;
}

.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

/* ── Section divider ── */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(104,144,176,.15) 30%, rgba(176,216,240,.1) 70%, transparent);
    border: none;
    margin: 0;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list li { margin: 6px 0; }

/* Timeline */
.timeline { display: grid; gap: 12px; }

.step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(104,144,176,.03);
}

.step__num {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(104,144,176,.06);
    border: 1px solid var(--border);
    font-weight: 950;
}

.step__body h3 { margin: 0 0 6px; }
.step__body p { margin: 0; color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 10px; }

.faq__item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(104,144,176,.03);
    padding: 14px;
}

.faq__item summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--text);
}

.faq__item p { margin: 10px 0 0; color: var(--muted); }

/* ── Hero ── */
.page-hero {
    padding: 80px 0 24px;
    position: relative;
}

.page-hero h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    max-width: 720px;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 600px;
    font-size: 17px;
    line-height: 1.65;
}

/* Hero entrance animation */
.page-hero h1,
.page-hero p,
.page-hero .btn,
.sv-hero h1,
.sv-hero p,
.sv-hero .btn,
.pricing-hero h1,
.pricing-hero p,
.fb-hero h1,
.fb-hero p,
.fb-hero .btn,
.fl-hero h1,
.fl-hero p,
.fl-hero .btn,
.ws-hero h1,
.ws-hero p,
.ws-hero .btn {
    animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) both;
}

.page-hero p,
.sv-hero p,
.pricing-hero p,
.fb-hero p,
.fl-hero p,
.ws-hero p       { animation-delay: .1s; }

.page-hero .btn,
.sv-hero .btn,
.fb-hero .btn,
.fl-hero .btn,
.ws-hero .btn    { animation-delay: .2s; }

/* ── Screenshot frame ── */
.screenshot-frame {
    max-width: 960px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.screenshot-frame__inner {
    background: rgba(104,144,176,.20);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
}

.screenshot-frame__inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
    opacity: .3;
}

.screenshot-frame__inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ── Contact ── */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.contact__bullets {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.03);
    color: var(--muted);
    font-weight: 700;
}

.bullet__icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.05);
    color: var(--text);
    font-weight: 950;
}

.contact__note {
    margin-top: 14px;
    color: var(--muted2);
}

.contact__note a { text-decoration: underline; }

.contact-details {
    font-size: clamp(12px, 3.5vw, 22px);
}

/* Forms */
.form.card {
    overflow: visible;
}

.form label {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,.25);
    color: var(--text);
    outline: none;
    font-family: inherit;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%236890B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

select option {
    background: #0d1520;
    color: var(--text);
    padding: 8px;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}
.form-field__label {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

/* Custom dropdown */
.custom-select {
    position: relative;
}
.custom-select__trigger {
    width: 100%;
    padding: 12px;
    padding-right: 36px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,.25);
    color: var(--text);
    outline: none;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    position: relative;
}
.custom-select__trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #6890B0;
    transition: transform .2s;
}
.custom-select.open .custom-select__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}
.custom-select__trigger:focus,
.custom-select.open .custom-select__trigger {
    border-color: rgba(104,144,176,.5);
}
.custom-select__trigger .placeholder {
    color: var(--muted2);
}
.custom-select__list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #0d1520;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    padding: 4px;
}
.custom-select.open .custom-select__list {
    display: block;
}
.custom-select__item {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
    transition: background .15s;
}
.custom-select__item:hover {
    background: rgba(104,144,176,.12);
}
.custom-select__item.selected {
    background: rgba(104,144,176,.18);
    color: var(--accent-light);
}
.custom-select__list::-webkit-scrollbar {
    width: 6px;
}
.custom-select__list::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select__list::-webkit-scrollbar-thumb {
    background: rgba(104,144,176,.2);
    border-radius: 3px;
}
.custom-select__list {
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 980px) {
    .custom-select__list {
        max-height: 180px;
    }
    .custom-select__item {
        padding: 12px;
    }
}

input:focus, textarea:focus, select:focus {
    border-color: rgba(104,144,176,.5);
}

.form__note {
    margin: 10px 0 0;
    color: var(--muted2);
    font-size: 12px;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    background: rgba(8,10,12,.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 56px 0 28px;
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 200px;
}

.footer__tagline {
    margin: 0;
    color: var(--muted2);
    font-size: 13px;
    font-weight: 600;
    max-width: 220px;
    line-height: 1.45;
}

.footer__col { display: flex; flex-direction: column; }

.footer__col nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__heading {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer__nav,
.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer a {
    color: var(--text);
    text-decoration: none;
    opacity: .65;
    padding: 4px 0;
    font-weight: 600;
    font-size: 13px;
    transition: opacity .2s, transform .2s;
}

.footer a:hover {
    opacity: 1;
    transform: translateX(2px);
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted2);
    font-size: 12px;
    text-align: center;
}

/* Ensure content above canvas */
.header { position: sticky; z-index: 50; }
main    { position: relative; z-index: 1; }
.footer { position: relative; z-index: 1; }

/* ── Hide helpers ── */
@media (max-width: 980px) {
    .hide_mobile { display: none !important; }
}

@media (min-width: 981px) {
    .hide_pc { display: none !important; }
}

/* ── Mobile reveal tweaks ── */
@media (max-width: 980px) {
    .reveal {
        transform: translateY(32px);
        transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
    }
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .page-hero { padding: 56px 0 16px; }
    .page-hero h1 { max-width: 100%; }

    .brand__logo { width: 150px; }

    .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }

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

    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        display: none;
        position: absolute;
        right: 24px;
        top: 68px;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: rgba(8,10,12,.95);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow);
        min-width: 220px;
    }

    .nav__menu.is-open { display: flex; }

    .nav__dropdown { position: static; }

    .nav__dropdown-trigger { width: 100%; text-align: left; }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        background: none;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 4px 0 0 16px;
        min-width: auto;
        border-radius: 0;
        gap: 8px;
    }

    .nav__dropdown.is-open .nav__dropdown-trigger::after {
        transform: rotate(-135deg);
        margin-bottom: -2px;
    }

    .strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip__logos { justify-content: flex-start; }

    .header__left { min-width: unset; }

    .footer {
        padding: 40px 0 22px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    .footer__left {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .footer__tagline { max-width: none; text-align: center; }

    .footer__col nav { align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 32px); }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__col { align-items: center; }
    .footer__col nav { align-items: center; }
}

/* Hide Call Us on desktop */
@media (min-width: 981px) {
    .call-only { display: none !important; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    #techCanvas { display: none; }
}

/* ══════════════════════════════════════════════════
   HOMEPAGE LAYOUTS
   ══════════════════════════════════════════════════ */

/* ── Home Hero (taller, badge, larger type) ── */
.page-hero--home {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(104,144,176,.15);
    background: rgba(104,144,176,.06);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) both;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.page-hero--home h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    letter-spacing: -0.035em;
    max-width: 680px;
}

.page-hero--home p {
    font-size: 18px;
    max-width: 540px;
}

/* ── Showcase (alternating image + text rows) ── */
.showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0;
}

.showcase + .showcase {
    margin-top: 0.5rem;
}

.showcase--reverse {
    grid-template-columns: 1fr 1.1fr;
}

.showcase--reverse .showcase__media { order: 2; }
.showcase--reverse .showcase__content { order: 1; }

.showcase__media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(104,144,176,.20);
    padding: 12px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.showcase:hover .showcase__media {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 30px rgba(104,144,176,.06);
}

.showcase__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.showcase__content { padding: 0.5rem 0; }

.showcase__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(104,144,176,.08);
    border: 1px solid rgba(104,144,176,.12);
}

.showcase__content h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-bright);
}

.showcase__content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 15px;
}

/* ── Value Strip (compact horizontal features) ── */
.value-strip-section {
    padding: 32px 0;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(104,144,176,.02);
    overflow: hidden;
}

.value-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 18px;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.value-strip__item:last-child { border-right: none; }
.value-strip__item:hover { background: rgba(104,144,176,.04); }

.value-strip__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: rgba(104,144,176,.08);
    border: 1px solid var(--border);
    color: var(--accent-light);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.value-strip__text strong {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 2px;
}

.value-strip__text span {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45;
}

/* ── Flow Steps (connected horizontal pipeline) ── */
.flow-steps {
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
}

.flow-steps__step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.flow-steps__num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: rgba(104,144,176,.08);
    border: 1px solid rgba(104,144,176,.15);
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--accent-light);
    margin-bottom: 16px;
    transition: background .25s, border-color .25s;
}

.flow-steps__step:hover .flow-steps__num {
    background: rgba(104,144,176,.14);
    border-color: rgba(104,144,176,.25);
}

.flow-steps__step h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-bright);
}

.flow-steps__step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.flow-steps__connector {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, rgba(104,144,176,.15), rgba(176,216,240,.25));
    margin-top: 23px;
    flex-shrink: 0;
    position: relative;
}

.flow-steps__connector::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(176,216,240,.35);
    border-bottom: 1.5px solid rgba(176,216,240,.35);
    transform: rotate(-45deg);
}

/* ── CTA Section ── */
.cta-section {
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(104,144,176,.2), transparent);
}

.cta-section h2 {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.65;
}

.cta-section__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Homepage responsive ── */
@media (max-width: 980px) {
    .page-hero--home {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .page-hero--home h1 {
        max-width: 100%;
    }

    .showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase--reverse .showcase__media,
    .showcase--reverse .showcase__content {
        order: unset;
    }

    .value-strip {
        grid-template-columns: 1fr 1fr;
    }

    .value-strip__item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .value-strip__item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .value-strip__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .flow-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .flow-steps__step {
        text-align: left;
        display: flex;
        gap: 16px;
        padding: 0;
        align-items: flex-start;
    }

    .flow-steps__num {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .flow-steps__connector {
        width: 2px;
        height: 24px;
        margin: 0 0 0 23px;
        background: linear-gradient(180deg, rgba(104,144,176,.15), rgba(176,216,240,.25));
    }

    .flow-steps__connector::after {
        right: auto;
        top: auto;
        bottom: -2px;
        left: -3px;
        border-right: none;
        border-bottom: 1.5px solid rgba(176,216,240,.35);
        border-left: 1.5px solid rgba(176,216,240,.35);
        transform: rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .value-strip {
        grid-template-columns: 1fr;
    }

    .value-strip__item {
        border-right: none !important;
    }
}

/* ══════════════════════════════════════════════════
   SUBPAGE LAYOUTS
   ══════════════════════════════════════════════════ */

/* ── Compact Grid (structured list without card styling) ── */
.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(104,144,176,.02);
}

.compact-grid__item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.compact-grid__item:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.compact-grid__item:nth-last-child(-n+2) {
    border-bottom: none;
}

.compact-grid__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
}

.compact-grid__item:hover {
    background: rgba(104,144,176,.04);
}

.compact-grid__item h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-bright);
}

.compact-grid__item > p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0 0 8px;
    line-height: 1.55;
}

.compact-grid__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-grid__item li {
    padding: 2px 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.compact-grid__item li::before {
    content: "→ ";
    color: var(--accent);
    font-weight: 700;
    margin-right: 2px;
}

/* ── Value strip: 3-column variant ── */
.value-strip--3 {
    grid-template-columns: repeat(3, 1fr);
}

.value-strip--3 .value-strip__item:nth-child(3) {
    border-right: none;
}

/* ── Subpage responsive ── */
@media (max-width: 980px) {
    .value-strip.value-strip--3 {
        grid-template-columns: 1fr;
    }

    .value-strip.value-strip--3 .value-strip__item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .value-strip.value-strip--3 .value-strip__item:last-child {
        border-bottom: none;
    }
}

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

    .compact-grid__item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    .compact-grid__item:last-child {
        border-bottom: none;
    }
}
