:root {
    color-scheme: light;
    --primary: #075c78;
    --primary-strong: #03465e;
    --primary-soft: #e9f5f8;
    --primary-pale: #f4fafb;
    --accent: #ffc400;
    --accent-strong: #e6ac00;
    --accent-soft: #fff5c7;
    --ink: #102f3d;
    --text: #34515e;
    --muted: #69808a;
    --surface: #ffffff;
    --surface-raised: #ffffff;
    --surface-soft: #f5f9fa;
    --surface-deep: #eaf2f4;
    --border: #dbe7ea;
    --border-strong: #bdd2d8;
    --header-bg: rgba(255, 255, 255, 0.93);
    --shadow-xs: 0 5px 15px rgba(8, 63, 83, 0.06);
    --shadow-sm: 0 12px 32px rgba(8, 63, 83, 0.09);
    --shadow-md: 0 22px 56px rgba(8, 63, 83, 0.13);
    --shadow-lg: 0 34px 80px rgba(4, 40, 55, 0.2);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --transition: 220ms ease;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --primary: #39a7c5;
    --primary-strong: #75cce0;
    --primary-soft: #113642;
    --primary-pale: #0e2831;
    --accent: #ffd04a;
    --accent-strong: #ffdc72;
    --accent-soft: #3f3518;
    --ink: #edf9fc;
    --text: #d4e7ec;
    --muted: #aac1c9;
    --surface: #081a22;
    --surface-raised: #0d242d;
    --surface-soft: #0b2028;
    --surface-deep: #102b35;
    --border: #21404a;
    --border-strong: #345662;
    --header-bg: rgba(8, 26, 34, 0.94);
    --shadow-xs: 0 5px 15px rgba(0, 0, 0, 0.18);
    --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 22px 56px rgba(0, 0, 0, 0.33);
    --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.42);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    transition: background-color var(--transition), color var(--transition);
}

body.modal-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

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

button {
    color: inherit;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.14;
}

p {
    color: var(--text);
}

::selection {
    background: var(--accent);
    color: #08212b;
}

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

.container-wide {
    width: min(1400px, calc(100% - 40px));
}

.section {
    padding: 108px 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--accent);
    color: #08212b;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.carousel-controls button:focus-visible,
.back-to-top:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 65%, transparent);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(7, 92, 120, 0.23);
}

.btn-primary:hover {
    background: var(--primary-strong);
    box-shadow: 0 16px 30px rgba(7, 92, 120, 0.28);
}

.btn-secondary {
    border-color: var(--border-strong);
    background: var(--surface-raised);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-strong);
    box-shadow: var(--shadow-xs);
}

.btn-light {
    background: #ffffff;
    color: #074b63;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: #fff5c7;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.btn-outline-light:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    min-height: 56px;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 15px;
}

.full {
    width: 100%;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 23px;
    height: 3px;
    border-radius: 99px;
    background: var(--accent);
    content: "";
}

.light-kicker {
    color: #d9f7ff;
}

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

.section-heading h2,
.about-copy h2,
.faq-copy h2,
.career-copy h2 {
    max-width: 820px;
    margin-top: 14px;
    font-size: clamp(34px, 4.2vw, 54px);
}

.section-heading h2 span,
.about-copy h2 span,
.faq-copy h2 span,
.career-copy h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 17px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

.section-heading.centered h2,
.section-heading.centered p {
    margin-right: auto;
    margin-left: auto;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 70px;
}

.split-heading p {
    margin-bottom: 5px;
}

.topbar {
    position: relative;
    z-index: 101;
    background: #062f40;
    color: #eaf9fd;
    font-size: 12px;
    font-weight: 650;
}

.topbar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.topbar a:hover {
    color: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(5, 51, 69, 0.07);
}

.header-inner {
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 218px;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    position: relative;
    color: var(--ink);
    font-size: 13px;
    font-weight: 780;
    transition: color var(--transition);
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    width: 0;
    height: 3px;
    margin: auto;
    border-radius: 99px;
    background: var(--accent);
    content: "";
    transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

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

.icon-button,
.menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-raised);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.icon-button:hover,
.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

html[data-theme="light"] .moon-icon,
html[data-theme="dark"] .sun-icon {
    display: none;
}

.menu-toggle {
    display: none;
    align-content: center;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    background:
        linear-gradient(120deg, color-mix(in srgb, var(--primary-soft) 65%, transparent) 0%, transparent 48%),
        var(--surface);
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -250px;
    width: 620px;
    height: 620px;
    border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
    border-radius: 50%;
    content: "";
}

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

.hero-orb-one {
    top: 5%;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 72%);
}

.hero-orb-two {
    top: 8%;
    right: 4%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 15%, transparent), transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
    letter-spacing: 0.07em;
    text-transform: none;
}

.eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 23px;
    font-size: clamp(48px, 5.4vw, 76px);
    letter-spacing: -0.058em;
    line-height: 1.01;
}

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

.hero-copy > p {
    max-width: 660px;
    font-size: 18px;
    line-height: 1.7;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 30px 0;
}

.hero-benefits > div {
    display: flex;
    min-height: 86px;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
}

.hero-benefits strong,
.hero-benefits small {
    display: block;
}

.hero-benefits strong {
    color: var(--ink);
    font-size: 12px;
    line-height: 1.35;
}

.hero-benefits small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.35;
}

.benefit-mark {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    background: var(--accent-soft);
    color: var(--primary-strong);
    font-size: 14px;
    font-weight: 900;
}

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px !important;
    font-weight: 700;
}

.hero-note span {
    color: #2bb673;
    font-size: 10px;
}

.hero-visual {
    position: relative;
}

.hero-stage {
    position: relative;
    min-height: 570px;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--border));
    border-radius: 46% 54% 52% 48% / 39% 41% 59% 61%;
    background:
        radial-gradient(circle at 50% 44%, #ffffff 0%, #f5fbfc 56%, #d7ecf1 100%);
    box-shadow: var(--shadow-lg);
}

html[data-theme="dark"] .hero-stage {
    background: radial-gradient(circle at 50% 44%, #143640 0%, #0f2932 57%, #0a2028 100%);
}

.hero-stage::before,
.hero-stage::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.hero-stage::before {
    top: 9%;
    right: 10%;
    width: 82px;
    height: 82px;
    background: var(--accent);
    opacity: 0.18;
}

.hero-stage::after {
    bottom: 10%;
    left: 7%;
    width: 44px;
    height: 44px;
    border: 10px solid var(--primary);
    opacity: 0.15;
}

.hero-stage-label {
    position: absolute;
    top: 25px;
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-raised);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 800;
    transform: translateX(-50%);
}

.hero-stage-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2bb673;
}

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(74%, 455px);
    transform: translate(-50%, -49%);
    filter: drop-shadow(0 22px 26px rgba(3, 57, 75, 0.14));
}

.float-card {
    position: absolute;
    z-index: 5;
    min-width: 170px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: color-mix(in srgb, var(--surface-raised) 94%, transparent);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    animation: floatCard 5s ease-in-out infinite;
}

.float-card b,
.float-card span {
    display: block;
}

.float-card b {
    color: var(--ink);
    font-size: 12px;
}

.float-card span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.float-card-one {
    top: 21%;
    left: -5%;
}

.float-card-two {
    top: 43%;
    right: -7%;
    animation-delay: -1.5s;
}

.float-card-three {
    bottom: 10%;
    left: 1%;
    animation-delay: -2.8s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.stats-band {
    position: relative;
    z-index: 3;
    background: linear-gradient(100deg, #03465e 0%, #075c78 45%, #0d7896 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stats-grid > div {
    position: relative;
    min-height: 128px;
    padding: 28px 20px;
    text-align: center;
}

.stats-grid > div:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    content: "";
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.stats-grid span {
    margin-top: 5px;
    color: #cbe8ef;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.45;
}

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.speciality-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.speciality-card::after {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-soft);
    content: "";
    transition: transform 350ms ease;
}

.speciality-card:hover {
    border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.speciality-card:hover::after {
    transform: scale(1.25);
}

.card-icon,
.feature-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 17px;
    background: var(--primary-soft);
}

.card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.speciality-card h3 {
    margin-top: 22px;
    font-size: 20px;
}

.speciality-card p {
    margin-top: 10px;
    font-size: 14px;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 74px;
    margin-top: 82px;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
}

.about-visual {
    position: relative;
    min-height: 470px;
}

.about-image-wrap {
    position: absolute;
    inset: 0 28px 25px 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px 28px 90px 28px;
    background: linear-gradient(145deg, var(--primary-soft), var(--surface-raised));
}

.about-image-wrap img {
    width: 80%;
    max-height: 390px;
    object-fit: contain;
}

.experience-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 166px;
    min-height: 108px;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 8px solid var(--surface-soft);
    border-radius: 24px;
    background: var(--accent);
    color: #0c3444;
}

.experience-badge strong {
    font-size: 35px;
    font-weight: 950;
    line-height: 1;
}

.experience-badge span {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

.about-copy > p {
    margin-top: 20px;
    font-size: 16px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 26px 0;
}

.mission-grid > div {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-raised);
}

.mission-grid b {
    color: var(--ink);
    font-size: 14px;
}

.mission-grid p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.55;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 850;
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}

.process-section {
    overflow: hidden;
    background: var(--surface-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.process-grid article {
    position: relative;
    min-height: 220px;
    padding: 28px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-raised);
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.process-number {
    position: absolute;
    top: 14px;
    right: 16px;
    color: color-mix(in srgb, var(--primary) 18%, transparent);
    font-size: 27px;
    font-weight: 950;
}

.process-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 7px auto 18px;
    place-items: center;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.process-grid h3 {
    font-size: 17px;
}

.process-grid p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
}

.process-arrow {
    color: var(--accent-strong);
    font-size: 37px;
    font-style: normal;
    font-weight: 300;
}

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

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

.feature-card {
    display: flex;
    min-height: 180px;
    align-items: flex-start;
    gap: 17px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-raised);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 13px;
}

.feature-icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.feature-card h3 {
    margin-top: 3px;
    font-size: 16px;
}

.feature-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.55;
}

.product-showcase {
    overflow: hidden;
    background: var(--surface-soft);
}

.showcase-panel {
    display: grid;
    min-height: 610px;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 56px;
    overflow: hidden;
    padding: 58px 58px 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(130deg, #043e54 0%, #075c78 60%, #0f7b98 100%);
    box-shadow: var(--shadow-lg);
}

.showcase-panel + .showcase-panel {
    margin-top: 32px;
}

.showcase-copy {
    align-self: center;
    padding-bottom: 58px;
}

.showcase-copy h2 {
    margin-top: 15px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
}

.showcase-copy > p {
    margin-top: 20px;
    color: #cce6ed;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 25px 0 30px;
}

.check-list li {
    position: relative;
    padding-left: 27px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #062f40;
    content: "✓";
    font-size: 11px;
    font-weight: 950;
}

.showcase-image {
    position: relative;
    align-self: end;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: #ffffff;
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: top;
}

.showcase-panel-alt {
    grid-template-columns: 0.82fr 1.18fr;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.showcase-panel-alt .showcase-copy h2 {
    color: var(--ink);
}

.showcase-panel-alt .showcase-copy > p {
    color: var(--text);
}

.dark-list li {
    color: var(--ink);
}

.billing-shot {
    order: 2;
    border-color: var(--surface-deep);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;
}

.pricing-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 850px;
    flex-direction: column;
    padding: 27px 22px 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:hover {
    border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.enterprise {
    background: linear-gradient(180deg, var(--primary-pale), var(--surface-raised));
}

.popular-label {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #17343e;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.pricing-head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-head > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-head h3 {
    margin-top: 8px;
    font-size: 23px;
}

.pricing-head p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

.plan-preview,
.plan-features {
    display: grid;
    gap: 11px;
    margin: 22px 0;
}

.plan-preview li,
.plan-features li,
.plan-details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text);
    font-size: 11px;
    line-height: 1.45;
}

.plan-preview li span,
.plan-features li span,
.plan-details li span {
    display: grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 10px;
    font-weight: 950;
}

.plan-features {
    flex: 1 1 auto;
    align-content: start;
}

.plan-features .not-included {
    color: var(--muted);
    opacity: 0.52;
}

.plan-features .not-included span {
    background: var(--surface-deep);
    color: var(--muted);
}

.plan-details {
    margin-bottom: 20px;
}

.plan-details summary {
    color: var(--primary);
    cursor: pointer;
    font-size: 11px;
    font-weight: 850;
}

.plan-details ul {
    display: grid;
    max-height: 220px;
    gap: 8px;
    overflow: auto;
    margin-top: 13px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
}

.plan-details .not-included {
    opacity: 0.45;
}

.plan-details .not-included span {
    background: var(--surface-deep);
    color: var(--muted);
}

.pricing-card > .btn {
    margin-top: auto;
}

.enterprise-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 30px;
    padding: 32px 38px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-soft);
}

.enterprise-callout h3 {
    margin-top: 8px;
    font-size: 25px;
}

.enterprise-callout p {
    margin-top: 6px;
    font-size: 13px;
}

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

.tech-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
}

.tech-strip > div {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 13px;
    background: var(--surface-soft);
}

.tech-strip img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.tech-strip span {
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.portfolio-card {
    display: flex;
    min-height: 160px;
    align-items: center;
    gap: 24px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-raised);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.portfolio-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.portfolio-card img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

html[data-theme="dark"] .portfolio-card img {
    filter: invert(1) brightness(1.65) contrast(1.1);
}

.portfolio-card h3 {
    font-size: 18px;
}

.portfolio-card p {
    margin-top: 6px;
    font-size: 12px;
}

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

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

.download-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-raised);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.download-preview {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: #e7eef0;
}

.download-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 350ms ease;
}

.download-card:hover .download-preview img {
    transform: scale(1.025);
}

.download-preview span {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(4, 30, 41, 0.88);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.download-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 21px;
}

.download-card h3 {
    color: var(--ink);
    font-size: 18px;
}

.download-card p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.download-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
}

.download-actions .btn {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 11px;
}

.testimonial-section {
    overflow: hidden;
    background: var(--primary-pale);
}

.testimonial-shell {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.testimonial-card {
    min-width: calc((100% - 24px) / 2);
    margin-right: 24px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-xs);
}

.stars {
    color: var(--accent-strong);
    font-size: 15px;
    letter-spacing: 0.12em;
}

.testimonial-card blockquote {
    min-height: 125px;
    margin-top: 18px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.55;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-person img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
}

.testimonial-person strong {
    color: var(--ink);
    font-size: 14px;
}

.testimonial-person span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.carousel-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-raised);
    color: var(--ink);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.carousel-controls button:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.carousel-dots {
    display: flex;
    gap: 7px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    background: var(--border-strong);
}

.carousel-dots button.active {
    width: 24px;
    border-radius: 99px;
    background: var(--primary);
}

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

.career-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    align-items: start;
    gap: 70px;
}

.career-copy {
    position: sticky;
    top: 125px;
}

.career-copy > p {
    max-width: 530px;
    margin-top: 19px;
}

.job-list {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.job-list article {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-soft);
}

.job-list article > span {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.job-list h3 {
    font-size: 17px;
}

.job-list p {
    margin-top: 6px;
    font-size: 12px;
}

.form-card,
.contact-form {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-sm);
}

.form-heading {
    margin-bottom: 24px;
}

.form-heading h3 {
    font-size: 25px;
}

.form-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.form-grid {
    display: grid;
    gap: 17px;
}

.form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-field {
    grid-column: 1 / -1;
}

form label {
    display: block;
}

form label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

form input,
form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

form input {
    height: 49px;
    padding: 0 14px;
}

form textarea {
    min-height: 115px;
    resize: vertical;
    padding: 13px 14px;
}

form input::placeholder,
form textarea::placeholder {
    color: color-mix(in srgb, var(--muted) 75%, transparent);
}

form input:focus,
form textarea:focus {
    border-color: var(--primary);
    background: var(--surface-raised);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

form input[type="file"] {
    padding: 11px 12px;
}

form label small {
    display: block;
    min-height: 0;
    margin-top: 4px;
    color: #d8504a;
    font-size: 10px;
}

.form-card > label,
.contact-form > label,
.contact-modal-dialog form > label {
    margin-top: 17px;
}

.captcha-row {
    display: grid;
    grid-template-columns: 165px 1fr;
    align-items: end;
    gap: 15px;
    margin: 17px 0 20px;
}

.captcha-display {
    display: grid;
    min-height: 65px;
    place-items: center;
    border: 2px dashed color-mix(in srgb, var(--primary) 55%, var(--border));
    border-radius: 12px;
    background:
        repeating-linear-gradient(-45deg, transparent 0 10px, color-mix(in srgb, var(--primary) 4%, transparent) 10px 20px),
        var(--primary-pale);
    color: var(--primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.18em;
    user-select: none;
}

.form-message {
    display: none;
    width: 100%;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 250ms ease, transform 250ms ease;
}

.form-message.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    border-color: #72d5a4;
    background: #dff8eb;
    color: #12633f;
}

.form-message.error {
    border-color: #ee9b96;
    background: #ffebe9;
    color: #9e2925;
}

html[data-theme="dark"] .form-message.success {
    border-color: #3da976;
    background: #123f2d;
    color: #baf4d5;
}

html[data-theme="dark"] .form-message.error {
    border-color: #c6605a;
    background: #4a211f;
    color: #ffd0cc;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
    align-items: start;
    gap: 74px;
}

.faq-copy {
    position: sticky;
    top: 125px;
}

.faq-copy > p {
    margin: 19px 0 26px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--surface-raised);
}

.faq-list summary {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    transition: transform var(--transition);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 22px 22px;
    font-size: 13px;
}

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

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    position: relative;
    overflow: hidden;
    padding: 55px 48px;
    background: linear-gradient(145deg, #043e54, #075c78 68%, #0d7896);
}

.contact-info::after {
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 270px;
    height: 270px;
    border: 40px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.contact-info h2 {
    margin-top: 15px;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 50px);
}

.contact-info > p {
    margin-top: 18px;
    color: #cbe8ef;
}

.contact-list {
    display: grid;
    gap: 13px;
    margin-top: 34px;
}

.contact-list > a,
.contact-list > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
}

.contact-list > a > span,
.contact-list > div > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: var(--accent);
    color: #062f40;
}

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

.contact-list small {
    color: #abd5df;
    font-size: 10px;
}

.contact-list strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.contact-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #082d3b;
    font-size: 11px;
}

.contact-note b {
    font-weight: 950;
}

.contact-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 46px;
}

.final-cta {
    padding: 70px 0;
    background: #062f40;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.final-cta span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin-top: 8px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 45px);
}

.final-cta-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.footer {
    padding-top: 72px;
    background: #041e29;
    color: #c3d7de;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 58px;
}

.footer-brand img {
    width: 220px;
    padding: 10px;
    border-radius: 10px;
    background: #ffffff;
}

.footer-brand p {
    max-width: 370px;
    margin-top: 20px;
    color: #9fb9c2;
    font-size: 13px;
}

.footer-brand > a {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.footer h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
    color: #9fb9c2;
    font-size: 12px;
    line-height: 1.6;
    transition: color var(--transition), transform var(--transition);
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

.footer-bottom p {
    color: #8ba8b2;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #a8c0c8;
}

.footer-bottom a:hover {
    color: var(--accent);
}

.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .menu-toggle {
    border-color: #4d7480;
    background: #16343e;
    color: #ffffff;
}

html[data-theme="dark"] .card-icon,
html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .process-icon {
    border: 1px solid #44727f;
    background: #e8f8fb;
    box-shadow: 0 0 0 3px rgba(57, 167, 197, 0.12);
}

html[data-theme="dark"] .card-icon img,
html[data-theme="dark"] .feature-icon img {
    filter: saturate(1.25) contrast(1.12);
}

html[data-theme="dark"] .process-icon {
    color: #075c78;
}

html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .speciality-card h3,
html[data-theme="dark"] .process-grid h3,
html[data-theme="dark"] .download-grid b,
html[data-theme="dark"] label > span {
    color: #ffffff;
}

html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .speciality-card p,
html[data-theme="dark"] .process-grid p,
html[data-theme="dark"] .download-grid small {
    color: #c8dde3;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 22px;
    z-index: 89;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: #064c64;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(3, 44, 59, 0.38);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
}

html[data-theme="dark"] .back-to-top {
    border-color: #75cce0;
    background: #123b48;
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 22, 30, 0.74);
    backdrop-filter: blur(7px);
}

.modal-dialog {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-lg);
    animation: modalIn 240ms ease both;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-modal-dialog {
    width: min(780px, 100%);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--ink);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.modal-heading {
    margin-bottom: 25px;
    padding-right: 35px;
}

.modal-heading h2,
.trial-dialog h2 {
    margin-top: 10px;
    font-size: 34px;
}

.modal-heading p,
.trial-dialog > p {
    margin-top: 9px;
    font-size: 13px;
}

.trial-dialog {
    overflow: hidden;
    text-align: center;
}

.trial-dialog::before {
    position: absolute;
    top: -90px;
    left: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--primary-soft);
    content: "";
}

.trial-dialog .section-kicker {
    margin-top: 15px;
}

.trial-badge {
    position: relative;
    display: grid;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    place-items: center;
    border: 8px solid var(--accent-soft);
    border-radius: 50%;
    background: var(--accent);
    color: #092f3e;
}

.trial-badge strong,
.trial-badge span {
    display: block;
}

.trial-badge strong {
    align-self: end;
    font-size: 39px;
    line-height: 1;
}

.trial-badge span {
    align-self: start;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 120ms;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1260px) {
    .container-wide {
        width: min(1180px, calc(100% - 40px));
    }

    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-card {
        min-height: 850px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
        gap: 45px;
    }

    .hero-stage {
        min-height: 520px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .nav {
        gap: 18px;
    }

    .header-demo {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-benefits > div {
        min-height: auto;
    }

    .hero-stage {
        min-height: 480px;
    }

    .float-card {
        min-width: 145px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-grid > div:nth-child(3)::after {
        display: none;
    }

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

    .about-panel {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 45px;
    }

    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .process-arrow {
        display: none;
    }

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

    .showcase-panel,
    .showcase-panel-alt {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 46px 42px 0;
    }

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

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

    .career-grid,
    .faq-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 45px;
    }

    .contact-shell {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 82px 0;
    }

    .topbar-inner > span {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .header-inner {
        height: 70px;
    }

    .brand img {
        width: 190px;
    }

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

    .nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: grid;
        max-height: 0;
        gap: 0;
        overflow: hidden;
        border: 0 solid var(--border);
        border-radius: 0 0 16px 16px;
        background: var(--surface-raised);
        box-shadow: var(--shadow-md);
        opacity: 0;
        transition: max-height 300ms ease, opacity 220ms ease, border-width 220ms ease;
    }

    .nav.open {
        max-height: 500px;
        border-width: 0 1px 1px;
        opacity: 1;
    }

    .nav a {
        padding: 14px 18px;
        border-top: 1px solid var(--border);
    }

    .nav a::after {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero-copy > p,
    .hero h1 {
        margin-right: auto;
        margin-left: auto;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: left;
    }

    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-visual {
        width: min(620px, 100%);
        margin: 10px auto 0;
    }

    .hero-stage {
        min-height: 560px;
    }

    .about-panel {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 430px;
    }

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

    .process-grid article:last-of-type {
        grid-column: 1 / -1;
        width: calc(50% - 6px);
        justify-self: center;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .showcase-panel,
    .showcase-panel-alt {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 50px 42px 0;
    }

    .showcase-copy {
        padding-bottom: 0;
    }

    .showcase-image {
        max-width: 680px;
        margin: auto;
    }

    .tech-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .career-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .career-copy,
    .faq-copy {
        position: static;
    }

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

    .contact-info,
    .contact-form {
        padding: 42px;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

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

@media (max-width: 650px) {
    .topbar {
        display: none;
    }

    .container,
    .container-wide {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 68px 0;
    }

    .topbar-contact {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .topbar-contact a span {
        font-size: 10px;
    }

    .brand img {
        width: 170px;
    }

    .header-actions {
        gap: 6px;
    }

    .hero {
        padding: 48px 0 55px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stage {
        min-height: 440px;
        border-radius: 38px;
    }

    .hero-main-image {
        width: 76%;
    }

    .float-card {
        min-width: 135px;
        padding: 10px 12px;
    }

    .float-card-one {
        top: 19%;
        left: -2%;
    }

    .float-card-two {
        right: -2%;
    }

    .float-card-three {
        bottom: 7%;
    }

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

    .stats-grid > div:nth-child(2n)::after {
        display: none;
    }

    .stats-grid > div:nth-child(3)::after {
        display: block;
    }

    .section-heading h2,
    .about-copy h2,
    .faq-copy h2,
    .career-copy h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .speciality-grid,
    .feature-grid,
    .pricing-grid,
    .portfolio-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .speciality-card {
        padding: 25px;
    }

    .about-panel {
        gap: 32px;
        margin-top: 55px;
        padding: 22px;
    }

    .about-visual {
        min-height: 350px;
    }

    .experience-badge {
        width: 145px;
        min-height: 94px;
    }

    .mission-grid,
    .form-grid.two-col {
        grid-template-columns: 1fr;
    }

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

    .process-grid article:last-of-type {
        grid-column: auto;
        width: 100%;
    }

    .feature-card {
        min-height: auto;
    }

    .showcase-panel,
    .showcase-panel-alt {
        padding: 38px 24px 0;
        border-radius: 22px;
    }

    .showcase-copy h2 {
        font-size: 35px;
    }

    .pricing-card {
        min-height: auto;
    }

    .enterprise-callout {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }

    .enterprise-callout .btn {
        width: 100%;
    }

    .tech-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
    }

    .portfolio-card {
        min-height: 140px;
    }

    .testimonial-card {
        min-width: 100%;
        margin-right: 16px;
        padding: 26px;
    }

    .testimonial-card blockquote {
        min-height: 0;
        font-size: 17px;
    }

    .form-card,
    .contact-form {
        padding: 25px;
    }

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

    .contact-info {
        padding: 34px 26px;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        text-align: center;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }

    .modal {
        padding: 10px;
    }

    .modal-dialog {
        max-height: calc(100vh - 20px);
        padding: 30px 20px 24px;
        border-radius: 18px;
    }

    .modal-heading h2,
    .trial-dialog h2 {
        font-size: 29px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .whatsapp-float {
        right: auto;
        left: 15px;
        bottom: 15px;
    }

    .back-to-top {
        right: 21px;
        bottom: 15px;
    }
}

@media (max-width: 390px) {
    .topbar-contact a:first-child span {
        font-size: 0;
    }

    .topbar-contact a:first-child span::after {
        content: "8100 550 440";
        font-size: 10px;
    }

    .brand img {
        width: 150px;
    }

    .hero-stage {
        min-height: 390px;
    }

    .float-card-three {
        display: none;
    }

    .stats-grid strong {
        font-size: 19px;
    }
}

/* Legal pages */
.legal-page {
    background: var(--surface-soft);
}

.legal-header {
    border-bottom-color: var(--border);
}

.legal-header .header-inner {
    height: 76px;
}

.legal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-hero {
    padding: 78px 0 48px;
    background: linear-gradient(135deg, var(--primary-pale), var(--surface));
    text-align: center;
}

.legal-hero h1 {
    margin-top: 14px;
    font-size: clamp(38px, 6vw, 62px);
}

.legal-hero p {
    max-width: 670px;
    margin: 16px auto 0;
}

.legal-content-wrap {
    padding: 50px 0 90px;
}

.legal-content {
    width: min(930px, 100%);
    margin: auto;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-sm);
}

.legal-content h2,
.legal-content h3 {
    margin-top: 34px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-size: 25px;
}

.legal-content h3 {
    font-size: 19px;
}

.legal-content p,
.legal-content li {
    margin-top: 10px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.legal-content ul {
    display: grid;
    gap: 5px;
    margin: 12px 0 20px 20px;
    list-style: disc;
}

.legal-content .legal-intro {
    padding: 20px;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    background: var(--primary-pale);
}

@media (max-width: 650px) {
    .legal-header .brand img {
        width: 160px;
    }

    .legal-content {
        padding: 26px 20px;
        border-radius: 17px;
    }

    .legal-nav .btn {
        display: none;
    }
}
