
:root {
    --navy-950: #04162d;
    --navy-900: #061b36;
    --navy-800: #0b2d5c;
    --navy-700: #123f79;
    --green-500: #43b649;
    --green-400: #63c96a;
    --teal-500: #18a999;
    --teal-400: #35c4b4;
    --ink-900: #132238;
    --ink-700: #35465a;
    --ink-500: #607083;
    --line: #dce5ea;
    --surface: #f5f8fa;
    --surface-2: #edf4f5;
    --white: #ffffff;
    --shadow-sm: 0 12px 36px rgba(8, 33, 61, .08);
    --shadow-lg: 0 28px 80px rgba(5, 26, 51, .18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--white);
    background: var(--navy-700);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy-900);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(11, 45, 92, .09);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(7, 30, 57, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 258px;
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-700);
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    padding: 10px 0;
}

.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    border-radius: 999px;
    background: var(--green-500);
    transition: transform .22s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 11px 17px;
    border: 1px solid var(--navy-800);
    border-radius: 999px;
    color: var(--navy-800);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: var(--white);
    background: var(--navy-800);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 830px;
    padding: calc(var(--header-height) + 88px) 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(67, 182, 73, .10), transparent 28%),
        linear-gradient(180deg, #fbfdfd 0%, #f5f9fa 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(11, 45, 92, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 45, 92, .055) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-orb-one {
    width: 430px;
    height: 430px;
    top: 120px;
    right: -230px;
    background: radial-gradient(circle, rgba(24, 169, 153, .16), rgba(24, 169, 153, 0));
}

.hero-orb-two {
    width: 330px;
    height: 330px;
    bottom: -130px;
    left: 42%;
    background: radial-gradient(circle, rgba(67, 182, 73, .12), rgba(67, 182, 73, 0));
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, .95fr);
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--navy-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 13px;
    border: 1px solid rgba(11, 45, 92, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    letter-spacing: .075em;
    text-transform: none;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 5px rgba(67, 182, 73, .13);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(48px, 5.6vw, 76px);
    font-weight: 760;
    line-height: .99;
    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--navy-700);
}

.hero-lead {
    max-width: 660px;
    margin: 30px 0 0;
    color: var(--ink-500);
    font-size: clamp(18px, 1.6vw, 21px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button svg,
.text-link svg,
.contact-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--navy-800);
    box-shadow: 0 12px 28px rgba(11, 45, 92, .19);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-700);
    box-shadow: 0 16px 34px rgba(11, 45, 92, .25);
}

.button-secondary {
    border-color: rgba(11, 45, 92, .16);
    color: var(--navy-800);
    background: rgba(255, 255, 255, .72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(11, 45, 92, .3);
    background: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--navy-950);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 45, 92, .11);
}

.hero-proof div {
    display: grid;
    gap: 4px;
}

.hero-proof strong {
    color: var(--navy-900);
    font-size: 13px;
}

.hero-proof span {
    color: var(--ink-500);
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.visual-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 45, 92, .12);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
}

.visual-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 48px auto auto -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 182, 73, .19), rgba(67, 182, 73, 0) 68%);
}

.visual-topbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 55px;
    padding: 0 18px;
    border-bottom: 1px solid #e8eef1;
    background: rgba(250, 252, 253, .94);
    color: var(--ink-500);
    font-size: 11px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccd6dc;
}

.window-dots i:nth-child(1) { background: #f27a70; }
.window-dots i:nth-child(2) { background: #e9bb58; }
.window-dots i:nth-child(3) { background: #62c47b; }

.visual-domain {
    padding: 6px 18px;
    border: 1px solid #e0e8ec;
    border-radius: 999px;
    background: var(--white);
}

.secure-pill {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 5px;
}

.secure-pill svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--green-500);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visual-canvas {
    position: relative;
    min-height: 535px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(7, 31, 61, .02), rgba(24, 169, 153, .04)),
        var(--surface);
}

.mini-site {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(11, 45, 92, .09);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.mini-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    padding: 0 17px;
    border-bottom: 1px solid #eef2f4;
}

.mini-nav span {
    width: 32px;
    height: 5px;
    margin-left: auto;
    border-radius: 999px;
    background: #dce5e9;
}

.mini-nav .mini-logo {
    width: 70px;
    height: 16px;
    margin: 0 auto 0 0;
    background: linear-gradient(90deg, var(--navy-800) 65%, var(--green-500) 65%);
}

.mini-hero {
    min-height: 190px;
    padding: 38px 30px;
    background:
        radial-gradient(circle at 90% 15%, rgba(24, 169, 153, .15), transparent 32%),
        linear-gradient(135deg, #f8fbfc, #eef7f5);
}

.mini-line,
.mini-kicker,
.mini-button {
    display: block;
    border-radius: 999px;
}

.mini-kicker {
    width: 80px;
    height: 8px;
    margin-bottom: 18px;
    background: var(--green-500);
}

.mini-line {
    height: 12px;
    margin-bottom: 10px;
    background: var(--navy-800);
}

.mini-line-lg { width: 72%; height: 18px; }
.mini-line-md { width: 56%; }
.mini-line-sm { width: 44%; background: #afbdc6; }

.mini-button {
    width: 93px;
    height: 28px;
    margin-top: 23px;
    background: var(--navy-800);
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    padding: 18px;
}

.mini-cards span {
    min-height: 66px;
    border: 1px solid #e6edef;
    border-radius: 12px;
    background: #fbfcfd;
}

.workflow-card {
    position: absolute;
    z-index: 4;
    right: 12px;
    bottom: 18px;
    width: 300px;
    padding: 16px;
    border: 1px solid rgba(11, 45, 92, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 45px rgba(9, 36, 68, .18);
    backdrop-filter: blur(12px);
}

.workflow-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 800;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ink-500);
    font-weight: 700;
}

.live-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 4px rgba(67, 182, 73, .12);
}

.workflow {
    display: grid;
}

.workflow-node {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: center;
    gap: 10px;
}

.workflow-node i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #dfe8ec;
    border-radius: 10px;
    color: #91a0aa;
    background: #f8fafb;
}

.workflow-node.complete i {
    border-color: rgba(24, 169, 153, .24);
    color: var(--teal-500);
    background: rgba(24, 169, 153, .08);
}

.workflow-node.active i {
    border-color: rgba(67, 182, 73, .28);
    color: var(--green-500);
    background: rgba(67, 182, 73, .09);
}

.workflow-node svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-node span {
    display: grid;
    line-height: 1.25;
}

.workflow-node strong {
    color: var(--navy-900);
    font-size: 11px;
}

.workflow-node small {
    color: #8997a1;
    font-size: 9px;
}

.workflow-link {
    width: 1px;
    height: 14px;
    margin-left: 17px;
    background: var(--teal-500);
}

.workflow-link.muted {
    background: #dce5e9;
}

.metric-card {
    position: absolute;
    z-index: 5;
    left: 10px;
    bottom: 32px;
    width: 180px;
    padding: 14px;
    border-radius: 15px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 18px 34px rgba(5, 28, 56, .25);
}

.metric-card span {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
}

.metric-card strong {
    display: block;
    margin-top: 2px;
    font-size: 12px;
}

.metric-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 30px;
    margin-top: 10px;
}

.metric-bars i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--green-500);
}

.metric-bars i:nth-child(1) { height: 28%; }
.metric-bars i:nth-child(2) { height: 42%; }
.metric-bars i:nth-child(3) { height: 54%; }
.metric-bars i:nth-child(4) { height: 72%; }
.metric-bars i:nth-child(5) { height: 100%; background: var(--teal-400); }

.visual-caption {
    margin: 17px 0 0;
    color: var(--ink-500);
    font-size: 12px;
    text-align: center;
}

.trust-strip {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-block: 1px solid #e6edef;
    background: var(--white);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 18px;
    color: var(--ink-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-500);
}

.section {
    padding: 112px 0;
}

.section-intro {
    background: var(--white);
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading.narrow {
    max-width: 780px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 80px;
}

.section-heading h2,
.industry-copy h2,
.why-panel h2,
.founder-content h2,
.contact-copy h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading p,
.industry-copy > p,
.why-panel > p,
.founder-content > p,
.contact-copy > p {
    margin: 22px 0 0;
    color: var(--ink-500);
    font-size: 18px;
    line-height: 1.75;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.solution-card {
    position: relative;
    min-height: 455px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -110px;
    right: -90px;
    border-radius: 50%;
    background: rgba(24, 169, 153, .07);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 45, 92, .18);
    box-shadow: var(--shadow-sm);
}

.solution-card.featured {
    color: var(--white);
    border-color: transparent;
    background:
        radial-gradient(circle at 90% 5%, rgba(67, 182, 73, .23), transparent 35%),
        var(--navy-900);
}

.solution-card.featured::before {
    background: rgba(255, 255, 255, .05);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 65px;
    border-radius: 14px;
    color: var(--navy-800);
    background: var(--surface-2);
}

.featured .card-icon {
    color: var(--green-400);
    background: rgba(255, 255, 255, .09);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-number {
    position: absolute;
    top: 36px;
    right: 36px;
    color: #a1afb8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.featured .card-number {
    color: rgba(255, 255, 255, .5);
}

.solution-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.featured h3 {
    color: var(--white);
}

.solution-card p {
    margin: 16px 0 24px;
    color: var(--ink-500);
}

.featured p {
    color: rgba(255, 255, 255, .7);
}

.solution-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    color: var(--ink-700);
    font-size: 14px;
    list-style: none;
}

.featured ul {
    color: rgba(255, 255, 255, .83);
}

.solution-card li {
    position: relative;
    padding-left: 22px;
}

.solution-card li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border: 2px solid var(--green-500);
    border-radius: 50%;
}

.industry-section {
    background: var(--surface);
}

.industry-layout {
    display: grid;
    grid-template-columns: .83fr 1.17fr;
    gap: 90px;
}

.industry-copy {
    position: sticky;
    top: calc(var(--header-height) + 35px);
    align-self: start;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    color: var(--navy-800);
    font-size: 14px;
    font-weight: 800;
}

.text-link svg {
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.industry-list {
    border-top: 1px solid #cad6dc;
}

.industry-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 115px;
    border-bottom: 1px solid #cad6dc;
    transition: padding .22s ease, background .22s ease;
}

.industry-item:hover {
    padding-inline: 14px;
    background: rgba(255, 255, 255, .6);
}

.industry-index {
    color: var(--teal-500);
    font-size: 11px;
    font-weight: 900;
}

.industry-item div {
    display: grid;
    gap: 5px;
}

.industry-item strong {
    color: var(--navy-950);
    font-size: 19px;
}

.industry-item small {
    color: var(--ink-500);
    font-size: 13px;
}

.industry-tag {
    padding: 7px 12px;
    border: 1px solid rgba(11, 45, 92, .13);
    border-radius: 999px;
    color: var(--navy-800);
    background: var(--white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.approach-section {
    color: var(--white);
    background:
        radial-gradient(circle at 80% -10%, rgba(24, 169, 153, .24), transparent 34%),
        var(--navy-950);
}

.section-label.light {
    color: var(--green-400);
}

.approach-section .section-heading h2 {
    color: var(--white);
}

.approach-section .section-heading p {
    color: rgba(255, 255, 255, .64);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.approach-grid article {
    min-height: 280px;
    padding: 30px 28px 36px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.approach-grid article:last-child {
    border-right: 0;
}

.approach-grid span {
    color: var(--green-400);
    font-size: 12px;
    font-weight: 900;
}

.approach-grid h3 {
    margin: 74px 0 14px;
    font-size: 24px;
}

.approach-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.why-section {
    background: var(--white);
}

.why-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 95px;
}

.why-panel {
    align-self: center;
}

.why-quote {
    display: grid;
    gap: 8px;
    margin-top: 35px;
    padding: 24px;
    border-left: 4px solid var(--green-500);
    border-radius: 0 14px 14px 0;
    background: var(--surface);
}

.why-quote span {
    color: var(--ink-500);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.why-quote strong {
    color: var(--navy-900);
    font-size: 18px;
    line-height: 1.45;
}

.why-points {
    display: grid;
    gap: 10px;
}

.why-points article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    transition: transform .22s ease, box-shadow .22s ease;
}

.why-points article:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.check-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--green-500);
    background: rgba(67, 182, 73, .09);
}

.check-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-points h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 19px;
}

.why-points p {
    margin: 6px 0 0;
    color: var(--ink-500);
    font-size: 14px;
}

.founder-section {
    padding-top: 25px;
    background: var(--white);
}

.founder-card {
    display: grid;
    grid-template-columns: 150px 1fr 280px;
    align-items: center;
    gap: 42px;
    padding: 56px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 9% 18%, rgba(67, 182, 73, .14), transparent 20%),
        linear-gradient(135deg, #f4f8f9, #edf5f4);
}

.founder-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, .09);
}

.founder-mark span {
    font-size: 38px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.founder-mark i {
    position: absolute;
    right: 4px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    border: 5px solid #eef5f4;
    border-radius: 50%;
    background: var(--green-500);
}

.founder-content h2 {
    max-width: 680px;
    font-size: clamp(32px, 3.8vw, 47px);
}

.founder-content > p {
    max-width: 690px;
    font-size: 16px;
}

.founder-content .button {
    margin-top: 26px;
}

.founder-principles {
    display: grid;
    gap: 0;
    border-top: 1px solid #cddbdd;
}

.founder-principles span {
    padding: 15px 0;
    border-bottom: 1px solid #cddbdd;
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 800;
}

.contact-section {
    color: var(--white);
    background:
        radial-gradient(circle at 15% 110%, rgba(67, 182, 73, .17), transparent 35%),
        radial-gradient(circle at 95% -10%, rgba(24, 169, 153, .18), transparent 28%),
        var(--navy-900);
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.contact-copy h2 {
    color: var(--white);
}

.contact-copy > p {
    color: rgba(255, 255, 255, .68);
}

.direct-contact {
    display: grid;
    gap: 10px;
    margin-top: 38px;
}

.direct-contact > a {
    display: grid;
    grid-template-columns: 46px 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.direct-contact > a:hover {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, .27);
    background: rgba(255, 255, 255, .09);
}

.contact-method-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    color: var(--teal-400);
    background: rgba(24, 169, 153, .12);
}

.contact-method-icon.whatsapp-icon {
    color: var(--green-400);
    background: rgba(67, 182, 73, .12);
}

.contact-method-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.direct-contact span:not(.contact-method-icon) {
    display: grid;
}

.direct-contact strong {
    font-size: 13px;
}

.direct-contact small {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.contact-arrow {
    color: rgba(255, 255, 255, .5);
}

.contact-form-wrap {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    color: var(--ink-900);
    background: var(--white);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .2);
}

.contact-form {
    display: grid;
    gap: 19px;
}

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

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: var(--ink-700);
    font-size: 12px;
    font-weight: 800;
}

.form-field label span {
    color: #b02e2e;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #ccd8de;
    border-radius: 12px;
    outline: 0;
    color: var(--ink-900);
    background: #fbfcfd;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input,
.form-field select {
    height: 50px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 140px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(24, 169, 153, .11);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: #c74747;
    box-shadow: 0 0 0 4px rgba(199, 71, 71, .1);
}

.consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--ink-500);
    font-size: 12px;
    cursor: pointer;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--navy-800);
}

.form-submit {
    width: 100%;
    border: 0;
}

.form-submit.is-loading {
    opacity: .72;
    cursor: wait;
}

.form-note,
.form-status {
    margin: 0;
    color: var(--ink-500);
    font-size: 11px;
    text-align: center;
}

.form-status {
    min-height: 18px;
    font-size: 13px;
    font-weight: 700;
}

.form-status.success { color: #18853c; }
.form-status.error { color: #b02e2e; }

.form-banner {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
}

.form-banner.success {
    color: #176e35;
    background: #eaf8ee;
}

.form-banner.error {
    color: #9c2c2c;
    background: #fff0f0;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.floating-whatsapp {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 10px 17px 10px 13px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    color: var(--white);
    background: #1c9b50;
    box-shadow: 0 14px 32px rgba(11, 67, 35, .28);
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(11, 67, 35, .35);
}

.floating-whatsapp svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    color: rgba(255, 255, 255, .68);
    background: var(--navy-950);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .55fr .9fr;
    gap: 80px;
    padding: 72px 0 48px;
}

.footer-brand img {
    width: 265px;
    filter: brightness(0) invert(1);
    opacity: .96;
}

.footer-brand p {
    max-width: 480px;
    margin: 22px 0 0;
    font-size: 14px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.footer-column a {
    font-size: 13px;
    transition: color .2s ease;
    overflow-wrap: anywhere;
}

.footer-column a:hover {
    color: var(--green-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

:focus-visible {
    outline: 3px solid rgba(24, 169, 153, .5);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1050px) {
    :root { --header-height: 76px; }

    .brand { width: 225px; }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 102;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        padding: 100px 28px 45px;
        transform: translateX(100%);
        color: var(--navy-900);
        background: rgba(249, 252, 252, .985);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .primary-nav > a {
        padding: 16px 0 !important;
        border-bottom: 1px solid #dce5ea;
        font-size: 20px;
    }

    .primary-nav .nav-cta {
        margin-top: 18px;
        border: 0;
        text-align: center;
        color: var(--white);
        background: var(--navy-900);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 65px);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero-copy {
        max-width: 770px;
    }

    .hero-visual {
        width: min(100%, 660px);
        margin-inline: auto;
    }

    .section-heading.split,
    .industry-layout,
    .why-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .industry-copy {
        position: static;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid article:nth-child(2) {
        border-right: 0;
    }

    .approach-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .founder-card {
        grid-template-columns: 120px 1fr;
    }

    .founder-principles {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        border-top: 0;
    }

    .founder-principles span {
        border-top: 1px solid #cddbdd;
        border-bottom: 1px solid #cddbdd;
    }

    .footer-main {
        grid-template-columns: 1.3fr .7fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        height: 70px;
    }

    :root { --header-height: 70px; }

    .brand {
        width: 192px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: calc(var(--header-height) + 46px) 0 65px;
    }

    .eyebrow {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 61px);
        line-height: 1.02;
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
        min-height: 54px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-proof div {
        grid-template-columns: 130px 1fr;
        align-items: center;
    }

    .visual-shell {
        transform: none;
        border-radius: 20px;
    }

    .visual-topbar {
        grid-template-columns: auto 1fr auto;
        padding: 0 11px;
    }

    .visual-domain {
        margin-inline: 8px;
        padding-inline: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .secure-pill {
        font-size: 0;
    }

    .visual-canvas {
        min-height: 440px;
        padding: 16px;
    }

    .mini-site {
        min-height: 290px;
    }

    .mini-hero {
        padding: 30px 20px;
    }

    .workflow-card {
        right: 7px;
        bottom: 14px;
        width: 245px;
    }

    .metric-card {
        left: 7px;
        bottom: 28px;
        width: 128px;
        padding: 11px;
    }

    .metric-bars {
        height: 22px;
    }

    .trust-inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .trust-inner::-webkit-scrollbar {
        display: none;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .industry-copy h2,
    .why-panel h2,
    .contact-copy h2 {
        font-size: 38px;
    }

    .section-heading p,
    .industry-copy > p,
    .why-panel > p,
    .founder-content > p,
    .contact-copy > p {
        font-size: 16px;
    }

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

    .solution-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .card-icon {
        margin-bottom: 45px;
    }

    .industry-item {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 18px 0;
    }

    .industry-tag {
        display: none;
    }

    .industry-item small {
        font-size: 12px;
    }

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

    .approach-grid article,
    .approach-grid article:nth-child(2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .approach-grid article:last-child {
        border-bottom: 0;
    }

    .approach-grid h3 {
        margin-top: 35px;
    }

    .why-points article {
        grid-template-columns: 43px 1fr;
        padding: 20px;
    }

    .check-icon {
        width: 40px;
        height: 40px;
    }

    .founder-section {
        padding-top: 0;
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 24px;
        border-radius: 24px;
    }

    .founder-mark {
        width: 106px;
        height: 106px;
    }

    .founder-principles {
        grid-template-columns: 1fr;
    }

    .founder-principles span {
        border-bottom: 0;
    }

    .founder-principles span:last-child {
        border-bottom: 1px solid #cddbdd;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .floating-whatsapp span {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 58px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 390px) {
    .brand { width: 175px; }
    .hero h1 { font-size: 42px; }
    .visual-canvas { min-height: 420px; }
    .workflow-card { width: 226px; }
    .metric-card { width: 114px; }
    .metric-card strong { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
