:root {
    --ink: #102033;
    --ink-2: #26384d;
    --muted: #63758d;
    --line: #dbe3ee;
    --soft-line: #edf1f6;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --surface-muted: #eaf1f8;
    --navy: #0e233b;
    --navy-2: #152d49;
    --blue: #1457d9;
    --blue-2: #2e75ea;
    --teal: #008f8a;
    --green: #12a66a;
    --amber: #f3a51d;
    --shadow-sm: 0 8px 22px rgba(16, 32, 51, 0.08);
    --shadow-md: 0 18px 48px rgba(16, 32, 51, 0.13);
    --shadow-dark: 0 24px 70px rgba(4, 13, 26, 0.32);
    --radius: 8px;
    --container: 1180px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface-soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

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

button {
    cursor: pointer;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: #fff;
    background: var(--navy);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(219, 227, 238, 0.68);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(20, 87, 217, 0.2);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-copy strong span {
    color: var(--blue);
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--ink-2);
    font-size: 0.92rem;
    font-weight: 700;
}

.desktop-nav a {
    position: relative;
    padding-block: 8px;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-link {
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn svg path[fill],
.header-actions .btn svg,
.mobile-menu .btn svg,
.contact-cta .btn svg,
.floating-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(20, 87, 217, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #0e4cc4;
    box-shadow: 0 16px 30px rgba(20, 87, 217, 0.26);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.btn-light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.btn-small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-menu-inner {
    display: grid;
    gap: 8px;
    padding-block: 16px 20px;
}

.mobile-menu-inner a:not(.btn) {
    padding: 12px 4px;
    color: var(--ink-2);
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 88svh;
    padding: calc(var(--header-height) + 70px) 0 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 19, 35, 0.88) 0%, rgba(8, 28, 50, 0.74) 52%, rgba(10, 35, 58, 0.42) 100%),
        linear-gradient(180deg, rgba(8, 20, 35, 0.15), rgba(8, 20, 35, 0.55));
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.32;
    mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #80f1e8;
}

.hero-eyebrow {
    max-width: 100%;
    padding: 8px 11px;
    color: #dffdfa;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(18, 166, 106, 0.18);
}

.hero h1 {
    max-width: 820px;
    margin: 22px auto 0;
    font-size: clamp(2.65rem, 7vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-lede {
    max-width: 650px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof {
    width: min(100%, 880px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 58px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-dark);
}

.hero-proof div {
    min-height: 118px;
    padding: 22px;
    text-align: center;
    background: rgba(8, 22, 39, 0.72);
    backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 1rem;
}

.hero-proof span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.section {
    padding: clamp(76px, 9vw, 116px) 0;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 22px);
}

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

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

.section-intro {
    width: min(100%, 760px);
    margin: 0 auto 46px;
    text-align: center;
}

.section-intro h2,
.section-copy h2,
.contact-copy h2,
.contact-cta h2 {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-intro p,
.section-copy p,
.contact-copy p,
.contact-cta p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 87, 217, 0.38);
    box-shadow: var(--shadow-md);
}

.service-image {
    position: relative;
    height: 215px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 32, 51, 0.06), rgba(16, 32, 51, 0.36));
}

.service-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--blue);
    border-radius: var(--radius);
    box-shadow: 0 16px 32px rgba(20, 87, 217, 0.26);
}

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

.service-body {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.service-number {
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-card h3 {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: 1.36rem;
    line-height: 1.18;
}

.service-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-2);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.46em;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: inset 0 0 0 4px #fff;
    border: 1px solid rgba(18, 166, 106, 0.34);
}

.text-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 26px;
    color: var(--blue);
    font-weight: 900;
}

.text-link::after {
    content: ">";
    margin-left: 8px;
    transition: transform 0.18s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}

.ai-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(14, 35, 59, 0.98), rgba(22, 48, 70, 0.98)),
        var(--navy);
}

.ai-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.18;
}

.split-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.ai-section .section-copy h2,
.ai-section .section-copy p {
    color: #fff;
}

.ai-section .section-copy p,
.ai-section .feature-item p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 30px 0 34px;
}

.feature-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
}

.feature-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-item h3 {
    margin: 0;
    color: #fff;
    font-size: 1.02rem;
}

.feature-item p {
    margin: 6px 0 0;
    font-size: 0.95rem;
}

.platform-panel {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 4vw, 28px);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(16px);
}

.panel-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #e7584f;
}

.panel-topbar span:nth-child(2) {
    background: var(--amber);
}

.panel-topbar span:nth-child(3) {
    background: var(--green);
}

.panel-topbar strong {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.document-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: rgba(9, 21, 38, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.file-icon,
.agent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 6px;
}

.file-icon {
    width: 52px;
    height: 42px;
    color: #f9ede8;
    background: #be3b35;
    font-size: 0.78rem;
}

.document-row strong,
.document-row small {
    display: block;
    overflow-wrap: anywhere;
}

.document-row strong {
    font-size: 0.95rem;
}

.document-row small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.document-row em {
    padding: 5px 8px;
    color: #c9fff4;
    background: rgba(18, 166, 106, 0.12);
    border: 1px solid rgba(18, 166, 106, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
}

.chat-bubble {
    max-width: 78%;
    margin-left: auto;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 0.93rem;
}

.chat-bubble.user {
    background: rgba(46, 117, 234, 0.25);
    border: 1px solid rgba(96, 157, 255, 0.3);
}

.chat-response {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
}

.agent-icon {
    width: 40px;
    height: 40px;
    color: var(--navy);
    background: #80f1e8;
}

.chat-response > div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.chat-response strong {
    color: #80f1e8;
}

.chat-response ul {
    display: grid;
    gap: 7px;
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.query-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 15px;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(9, 21, 38, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.query-bar svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #80f1e8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reverse-mobile {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.image-caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(310px, calc(100% - 44px));
    padding: 17px;
    color: #fff;
    background: rgba(14, 35, 59, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
    display: block;
}

.image-caption span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.security-grid div {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.security-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
}

.security-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.workflow-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 auto 20px;
}

.workflow-tab {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 14px;
    color: var(--ink-2);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
    text-align: center;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.workflow-tab span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--blue);
    background: #eef5ff;
    border-radius: 999px;
    font-size: 0.83rem;
}

.workflow-tab.is-active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.workflow-tab.is-active span {
    color: var(--navy);
    background: #fff;
}

.workflow-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    padding: clamp(22px, 4vw, 38px);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.workflow-content,
.workflow-image img {
    transition: opacity 0.18s ease;
}

.workflow-content.is-changing,
.workflow-image img.is-changing {
    opacity: 0;
}

.stage-label {
    display: inline-flex;
    padding: 5px 8px;
    color: var(--teal);
    background: #e9fbf8;
    border: 1px solid #c8f2ea;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-content h3 {
    margin: 16px 0 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.workflow-content p {
    margin: 16px 0 0;
    color: var(--muted);
}

.workflow-image img {
    width: 100%;
    aspect-ratio: 1.38;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-cta {
    padding: 54px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(14, 35, 59, 0.96), rgba(0, 143, 138, 0.88)),
        var(--navy);
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.contact-cta h2 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.contact-cta p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-methods a,
.method-static {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-methods > a:hover,
.contact-methods > a:focus-visible {
    border-color: rgba(20, 87, 217, 0.4);
    box-shadow: var(--shadow-sm);
}

.contact-methods span:not(.eyebrow) {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #eef5ff;
    border-radius: var(--radius);
}

.contact-methods svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-methods strong,
.contact-methods small {
    display: block;
}

.contact-methods strong {
    color: var(--ink);
}

.contact-methods small {
    margin-top: 4px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.proposal-form {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.form-heading span {
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 1.5rem;
}

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

.proposal-form label {
    display: grid;
    gap: 7px;
    color: var(--ink-2);
    font-size: 0.86rem;
    font-weight: 900;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.proposal-form textarea {
    resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(20, 87, 217, 0.1);
}

.proposal-form button[type="submit"] {
    width: 100%;
    margin-top: 2px;
}

.proposal-form button[disabled] {
    opacity: 0.78;
    cursor: progress;
}

.form-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.success-box {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius);
}

.success-box[hidden] {
    display: none;
}

.success-box > span {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
}

.success-box svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-box h4 {
    margin: 0;
    color: var(--ink);
    font-size: 1.4rem;
}

.success-box p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
}

.success-box a,
.success-box button {
    margin-top: 4px;
    padding: 0;
    color: var(--blue);
    background: transparent;
    border: 0;
    font-weight: 900;
}

.success-box a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: #fff;
    background: var(--blue);
    border-radius: 6px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.74);
    background: #071525;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 36px;
    padding: 58px 0 38px;
}

.footer-brand .brand-copy strong {
    color: #fff;
}

.site-footer p {
    max-width: 360px;
    margin: 16px 0 0;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a:not(.brand) {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a {
    margin: 0 !important;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(18, 166, 106, 0.32);
    transition: transform 0.18s ease, background 0.18s ease;
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(18, 166, 106, 0.26);
    border-radius: inherit;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-2px);
    background: #0f955f;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 16px;
        font-size: 0.86rem;
    }

    .phone-link {
        display: none;
    }

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

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

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 90svh;
        padding-top: calc(var(--header-height) + 58px);
    }

    .hero-proof,
    .split-grid,
    .reverse-mobile,
    .contact-grid,
    .workflow-panel {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        margin-top: 42px;
    }

    .reverse-mobile .image-stack {
        order: 2;
    }

    .reverse-mobile .section-copy {
        order: 1;
    }

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

    .contact-cta-inner .btn {
        width: fit-content;
    }

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

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

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-bottom: 46px;
    }

    .hero-eyebrow {
        border-radius: 6px;
    }

    .hero-actions .btn,
    .mobile-menu .btn,
    .contact-cta-inner .btn {
        width: 100%;
    }

    .hero-proof {
        display: none;
    }

    .section-intro {
        text-align: left;
    }

    .service-grid,
    .security-grid,
    .workflow-tabs,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-image {
        height: 198px;
    }

    .workflow-tabs {
        gap: 9px;
    }

    .workflow-tab {
        justify-content: flex-start;
    }

    .document-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .document-row em {
        grid-column: 2;
        width: fit-content;
    }

    .chat-bubble {
        max-width: 100%;
    }

    .image-caption {
        position: static;
        width: 100%;
        margin-top: 10px;
        color: var(--ink);
        background: #fff;
        border-color: var(--line);
        box-shadow: var(--shadow-sm);
    }

    .image-caption span {
        color: var(--muted);
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .site-footer {
        text-align: center;
    }

    .footer-grid > div {
        display: grid;
        justify-items: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .site-footer p {
        margin-inline: auto;
    }

    .site-footer a:not(.brand) {
        margin-inline: auto;
    }

    .footer-bottom div {
        justify-content: center;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 430px) {
    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.38rem;
    }

    .section {
        padding-block: 64px;
    }

    .service-body,
    .proposal-form,
    .workflow-panel {
        padding: 20px;
    }

    .platform-panel {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
