:root {
    --navy: #221858;
    --navy-2: #171033;
    --coral: #f75f55;
    --coral-dark: #e6473d;
    --green: #11c79b;
    --blue: #2f6df6;
    --purple: #6d5bd0;
    --cream: #fff7f4;
    --soft: #f7f8fc;
    --text: #20164d;
    --muted: #6f6692;
    --line: #ebe7f2;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(34, 24, 88, 0.12);
    --shadow-soft: 0 14px 35px rgba(34, 24, 88, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: white;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

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

.top-strip {
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 800;
}

.top-strip-inner {
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.top-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 35px rgba(34, 24, 88, 0.04);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
}

.logo-mark {
    width: 48px;
    height: 40px;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(135deg, var(--coral), #ff8b72);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(247, 95, 85, 0.26);
}

.logo-mark-img {
    width: 52px;
    height: 48px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(220, 231, 239, 0.94);
    padding: 7px;
    box-shadow: 0 14px 30px rgba(7, 24, 39, 0.08);
}

.logo-mark-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-logo strong {
    display: block;
    color: var(--coral);
    font-size: 21px;
    letter-spacing: 1.6px;
    font-weight: 950;
}

.site-logo small {
    display: block;
    color: var(--muted);
    margin-top: 1px;
    font-size: 12px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 21px;
    flex: 1;
}

.main-nav > a,
.nav-has-mega > a {
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    padding: 28px 0;
    cursor: pointer;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 950;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.18s ease;
}

.btn.big {
    min-height: 50px;
    padding: 0 22px;
}

.btn-coral {
    background: var(--coral);
    color: white;
    box-shadow: 0 16px 32px rgba(247, 95, 85, 0.22);
}

.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--text);
    border-color: var(--text);
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.btn-outline.dark {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.nav-has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: -160px;
    top: 100%;
    width: 880px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow);
    padding: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 0.18s ease;
}

.nav-has-mega:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.mega-grid h4 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 15px;
}

.mega-grid a {
    display: block;
    color: var(--muted);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 800;
}

.mega-grid a:hover,
.mega-grid .mega-all {
    color: var(--coral);
}

.mobile-toggle {
    display: none;
    border: none;
    background: var(--navy);
    color: white;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    font-size: 22px;
}

.hero-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(247,95,85,0.12), transparent 26%),
        radial-gradient(circle at 20% 10%, rgba(109,91,208,0.10), transparent 25%),
        linear-gradient(180deg, #fff, #fff7f4);
    padding: 72px 0 46px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.eyebrow,
.section-head span,
.page-hero span,
.trial-copy span {
    display: inline-flex;
    color: var(--coral);
    font-weight: 950;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 950;
}

.hero-copy p,
.page-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 20px 0 0;
    max-width: 650px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-note {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.device-card {
    background: white;
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
}

.device-top {
    height: 54px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.device-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--coral);
}

.device-top strong {
    margin-left: auto;
    font-size: 13px;
}

.device-body {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 390px;
    background: #fbfbfe;
}

.mock-sidebar {
    background: #161033;
    color: white;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 16px;
}

.mock-sidebar b {
    color: var(--coral);
}

.mock-sidebar span {
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
}

.mock-content {
    padding: 22px;
}

.mock-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
}

.mock-headline b {
    color: var(--text);
    font-size: 18px;
}

.mock-headline small {
    color: var(--muted);
    font-weight: 800;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-cards div {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.mock-cards strong {
    display: block;
    font-size: 20px;
    color: var(--text);
}

.mock-cards small {
    color: var(--muted);
    font-weight: 800;
}

.mock-radar-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    margin: 18px 0;
    box-shadow: var(--shadow-soft);
}

.mini-radar {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(247,95,85,.32) 0 6px, transparent 7px),
        radial-gradient(circle, rgba(109,91,208,.13), transparent 65%);
    border: 1px solid #ded8ef;
}

.mini-radar::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 1px solid #e2ddef;
}

.mini-radar::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), transparent);
    transform-origin: left center;
    animation: radarSpin 2.6s linear infinite;
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mock-bars {
    display: grid;
    gap: 12px;
}

.mock-bars span {
    height: 13px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--purple));
}

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

.mock-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px;
}

.mock-list span {
    width: 38px;
    height: 38px;
    background: #fff0ee;
    border-radius: 14px;
}

.mock-list p {
    height: 12px;
    flex: 1;
    background: #edeaf5;
    border-radius: 999px;
    margin: 0;
}

.phone-card {
    position: absolute;
    right: -10px;
    bottom: 20px;
    width: 205px;
    background: var(--navy);
    color: white;
    border-radius: 26px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.phone-card strong {
    display: block;
    font-size: 19px;
    margin-bottom: 14px;
}

.phone-card span {
    display: block;
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 10px;
    font-size: 12px;
    margin-top: 8px;
}

.trust-section {
    padding: 24px 0;
}

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

.trust-grid div {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.trust-grid strong {
    display: block;
    color: var(--text);
    font-size: 24px;
    font-weight: 950;
}

.trust-grid span {
    color: var(--muted);
    font-weight: 800;
}

.section-head {
    margin-bottom: 34px;
}

.section-head.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 950;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.feature-showcase,
.pricing-section,
.faq-section,
.blog-section {
    padding: 72px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 210px 1fr 220px;
    gap: 28px;
    align-items: center;
}

.feature-tabs {
    display: grid;
    gap: 10px;
}

.feature-tabs button {
    border: none;
    background: white;
    color: var(--text);
    text-align: left;
    border-radius: 14px;
    padding: 15px 17px;
    font-size: 14px;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: 0.15s ease;
}

.feature-tabs button:hover {
    transform: translateX(3px);
}

.feature-tabs button.active {
    background: var(--coral);
    color: white;
}

.showcase-panel {
    background: #fff7f4;
    border-radius: 34px;
    padding: 28px;
    min-height: 460px;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
}

.feature-screen {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.feature-screen-top {
    height: 52px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.feature-screen-top span {
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 999px;
}

.feature-screen-top b {
    margin-left: auto;
    font-size: 13px;
}

.feature-screen-body {
    display: grid;
    grid-template-columns: 110px 1fr;
    min-height: 360px;
}

.screen-side {
    background: #19123d;
}

.screen-main {
    padding: 22px;
}

.screen-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.screen-title h3 {
    margin: 0;
    font-size: 24px;
    color: var(--text);
}

.screen-title p {
    color: var(--muted);
    font-weight: 750;
    line-height: 1.6;
    margin: 8px 0 0;
}

.screen-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: #fff0ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.screen-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.screen-kpis div {
    background: #f8f6fc;
    border-radius: 16px;
    padding: 14px;
}

.screen-kpis b {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.screen-kpis strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    color: var(--coral);
}

.screen-chart {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 13px;
    background: #f8f6fc;
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
}

.screen-chart span {
    flex: 1;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, var(--coral), var(--purple));
}

.panel-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.panel-chips span {
    background: #fff0ee;
    color: var(--coral);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.feature-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-pills a {
    background: white;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 14px;
    font-weight: 950;
    font-size: 13px;
    box-shadow: var(--shadow-soft);
    transition: 0.15s ease;
}

.feature-pills a:hover {
    background: var(--coral);
    color: white;
    transform: translateX(-3px);
}

.promo-section {
    padding: 32px 0 72px;
}

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

.promo-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    background: #fff8f6;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 20px;
    min-height: 230px;
    box-shadow: var(--shadow-soft);
    transition: 0.15s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.promo-image {
    height: 100%;
    min-height: 185px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    background: white;
}

.promo-card span {
    color: var(--coral);
    font-weight: 950;
}

.promo-card h3 {
    color: var(--text);
    font-size: 24px;
    line-height: 1.25;
    margin: 12px 0;
}

.promo-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 700;
}

.promo-card b {
    color: var(--coral);
    font-weight: 950;
}

.pricing-section {
    background: linear-gradient(180deg, white, #fff7f4);
}

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

.price-card {
    position: relative;
    background: white;
    border: 2px solid #d8d1e8;
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.price-card.featured {
    border-color: var(--coral);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.price-badge {
    position: absolute;
    right: 22px;
    top: -16px;
    background: var(--coral);
    color: white;
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 13px;
}

.price-card h3 {
    color: var(--text);
    font-size: 24px;
    margin: 0 0 20px;
}

.price-card strong {
    display: block;
    color: var(--text);
    font-size: 27px;
    line-height: 1.22;
}

.price-card small {
    display: block;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 850;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-weight: 800;
}

.support-cards-section {
    padding: 60px 0 20px;
}

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

.support-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.support-card > div {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: #fff0ee;
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.support-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
}

.support-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 750;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.faq-search {
    height: 58px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.faq-search span {
    color: var(--text);
    font-size: 25px;
}

.faq-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: var(--text);
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: none;
    background: white;
    color: var(--text);
    padding: 20px;
    font-size: 16px;
    font-weight: 950;
    text-align: left;
    cursor: pointer;
}

.faq-item p {
    display: none;
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 750;
}

.faq-item.active p {
    display: block;
}

.trial-section {
    padding: 70px 0 90px;
}

.trial-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    background:
        radial-gradient(circle at 12% 24%, rgba(255,255,255,0.18), transparent 18%),
        linear-gradient(135deg, var(--coral), #ff786b);
    border-radius: 34px;
    padding: 42px;
    color: white;
    box-shadow: var(--shadow);
}

.trial-copy h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 0;
}

.trial-copy p {
    color: #fff1ef;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 750;
}

.trial-form {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 24px;
    padding: 24px;
    display: grid;
    gap: 13px;
}

.trial-form input,
.trial-form select {
    height: 50px;
    border: none;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 750;
    outline: none;
}

.human-check {
    display: flex;
    align-items: center;
    gap: 9px;
    color: white;
    font-size: 13px;
    font-weight: 850;
}

.human-check input {
    width: auto;
    height: auto;
}

.page-hero {
    background: #fff7f4;
    padding: 72px 0;
    text-align: center;
}

.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

.detail-section {
    padding: 72px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: stretch;
}

.detail-visual {
    min-height: 320px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 30% 20%, rgba(247,95,85,.18), transparent 28%),
        white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
}

.detail-visual div {
    font-size: 76px;
}

.detail-visual strong {
    display: block;
    margin-top: 12px;
    font-size: 24px;
}

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

.detail-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.detail-card span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #fff0ee;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.detail-card h3 {
    font-size: 20px;
}

.detail-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 750;
}

.site-footer {
    background: var(--navy-2);
    color: white;
    padding: 66px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
}

.footer-brand p {
    color: #c8c1e0;
    line-height: 1.7;
    font-weight: 700;
}

.footer-logo strong {
    color: white;
}

.footer-grid h4 {
    margin: 0 0 18px;
    color: white;
}

.footer-grid a {
    display: block;
    color: #bfb7dc;
    margin: 11px 0;
    font-weight: 750;
}

.footer-grid a:hover {
    color: white;
}

.store-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.store-badges span {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 10px 13px;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    margin-top: 42px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #9d94c4;
    font-size: 13px;
    font-weight: 800;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 200;
    width: min(540px, calc(100% - 48px));
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 13px;
    font-weight: 750;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.back-top {
    position: fixed;
    right: 28px;
    bottom: 34px;
    z-index: 150;
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: white;
    border: 3px solid var(--coral);
    color: var(--coral);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: .18s ease;
}

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

.back-top span {
    font-size: 11px;
}

.live-chat {
    position: fixed;
    right: 24px;
    bottom: 116px;
    z-index: 220;
}

.chat-float {
    border: none;
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow);
    border-radius: 999px;
    padding: 13px 16px;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-weight: 950;
    cursor: pointer;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 58px;
    width: 340px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
}

.chat-panel.open {
    display: block;
}

.chat-head {
    background: var(--navy);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.chat-head strong,
.chat-head small {
    display: block;
}

.chat-head small {
    color: #d8d3ef;
    margin-top: 4px;
}

.chat-head button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.chat-body {
    padding: 14px;
    height: 240px;
    overflow-y: auto;
    background: #fbf9ff;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.chat-msg {
    max-width: 86%;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 750;
}

.chat-msg.bot {
    background: white;
    color: var(--text);
    border: 1px solid var(--line);
}

.chat-msg.user {
    background: var(--coral);
    color: white;
    align-self: flex-end;
}

.chat-form {
    display: flex;
    border-top: 1px solid var(--line);
    padding: 10px;
    gap: 8px;
}

.chat-form input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 12px;
    outline: none;
}

.chat-form button {
    border: none;
    background: var(--coral);
    color: white;
    border-radius: 12px;
    padding: 0 12px;
    font-weight: 950;
}

.support-modal {
    position: fixed;
    inset: 0;
    z-index: 520;
    background: rgba(23, 16, 51, .54);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.support-modal.open {
    display: flex;
}

.support-modal-card {
    position: relative;
    width: min(860px, 100%);
    background: white;
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(23, 16, 51, .28);
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 26px;
    padding: 32px;
}

.support-modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: #fff0ee;
    color: var(--coral);
    font-size: 26px;
    cursor: pointer;
    font-weight: 900;
}

.support-modal-info {
    background: linear-gradient(135deg, var(--navy), #3b2b86);
    color: white;
    border-radius: 24px;
    padding: 30px;
}

.support-modal-info span {
    display: inline-flex;
    color: #ffb8b1;
    font-weight: 950;
    margin-bottom: 12px;
}

.support-modal-info h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: 0;
}

.support-modal-info p {
    color: #d8d3ef;
    line-height: 1.7;
    font-weight: 750;
}

.support-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.support-modal-form {
    display: grid;
    gap: 12px;
    align-content: center;
}

.support-modal-form input,
.support-modal-form textarea {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 13px 14px;
    outline: none;
    font-weight: 750;
    resize: vertical;
}

.support-modal-form textarea {
    min-height: 120px;
}

.support-modal-form input:focus,
.support-modal-form textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(247, 95, 85, .12);
}

@media(max-width: 1150px) {
    .site-container {
        width: min(100% - 34px, 960px);
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .main-nav,
    .nav-actions {
        display: none;
    }

    .main-nav.open {
        display: grid;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        z-index: 100;
    }

    .main-nav.open a {
        padding: 10px 0;
    }

    .mega-menu {
        display: none;
    }

    .hero-grid,
    .showcase-grid,
    .faq-grid,
    .trial-card,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid,
    .pricing-grid,
    .trust-grid,
    .detail-card-grid,
    .support-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        min-height: 420px;
    }
}

@media(max-width: 760px) {
    .top-strip-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-links {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero-section,
    .page-hero,
    .feature-showcase,
    .pricing-section,
    .faq-section,
    .trial-section {
        padding: 48px 0;
    }

    .device-body,
    .feature-screen-body {
        grid-template-columns: 1fr;
    }

    .mock-sidebar,
    .screen-side {
        display: none;
    }

    .mock-cards,
    .mock-radar-row,
    .screen-kpis,
    .promo-grid,
    .pricing-grid,
    .trust-grid,
    .footer-grid,
    .detail-card-grid,
    .support-card-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        grid-template-columns: 1fr;
    }

    .trial-card {
        padding: 26px;
    }

    .trial-copy h2 {
        font-size: 32px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .back-top {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 18px;
    }

    .live-chat {
        right: 14px;
        bottom: 88px;
    }

    .chat-panel {
        width: min(340px, calc(100vw - 28px));
    }

    .support-modal-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 36px);
        overflow-y: auto;
        padding: 22px;
    }

    .support-modal-info {
        padding: 24px;
    }

    .support-modal-info h2 {
        font-size: 26px;
    }
}

/* ADOR SAHA premium website layer */
:root {
    --brand-ink: #071827;
    --brand-navy: #081523;
    --brand-deep: #0d2235;
    --brand-teal: #0f8f82;
    --brand-teal-dark: #075f59;
    --brand-blue: #2563eb;
    --brand-sky: #0ea5e9;
    --brand-amber: #f4a11c;
    --brand-coral: #ef5f45;
    --brand-paper: #f5f8fb;
    --brand-card: #ffffff;
    --brand-muted: #607086;
    --brand-line: #dce7ef;
    --brand-shadow: 0 28px 84px rgba(8, 21, 35, 0.13);
    --brand-soft-shadow: 0 16px 44px rgba(8, 21, 35, 0.08);
}

* {
    letter-spacing: 0 !important;
}

body {
    background: var(--brand-paper);
    color: var(--brand-ink);
}

.top-strip {
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-teal-dark));
}

.site-header {
    border-bottom: 1px solid rgba(220, 231, 239, 0.86);
    background: rgba(255,255,255,0.92);
}

.logo-mark {
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
    box-shadow: 0 14px 30px rgba(15, 143, 130, 0.24);
}

/* ADOR SAHA public website - selected 2026 corporate direction */
:root {
    --brand-navy: #071b34;
    --brand-navy-2: #0b2b4a;
    --brand-teal: #0d7d74;
    --brand-green: #20a565;
    --brand-orange: #f47a21;
    --brand-blue: #2468d7;
    --brand-text: #10243c;
    --brand-muted: #607187;
    --brand-line: #dce5ee;
    --brand-soft: #f4f7fa;
    --navy: var(--brand-navy);
    --text: var(--brand-text);
    --muted: var(--brand-muted);
    --line: var(--brand-line);
    --coral: var(--brand-orange);
    --coral-dark: #d96010;
}

body {
    color: var(--brand-text);
    background: #ffffff;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.site-container { width: min(1240px, calc(100% - 56px)); }

.top-strip { background: var(--brand-navy); font-size: 12px; }
.top-strip-inner { min-height: 34px; }
.top-links, .top-phone { font-weight: 700; opacity: .9; }

.site-header { background: rgba(255,255,255,.98); border-bottom-color: #e2e8ef; box-shadow: 0 8px 24px rgba(7,27,52,.05); }
.nav-wrap { min-height: 72px; gap: 22px; }
.site-logo { min-width: 164px; }
.brand-lockup { display: block; width: 160px; height: 42px; object-fit: contain; object-position: left center; }
.main-nav { justify-content: center; gap: 24px; }
.main-nav > a, .nav-has-mega > a { padding: 25px 0; color: #26394f; font-size: 14px; font-weight: 800; }
.main-nav a.active, .main-nav a:hover { color: var(--brand-orange); }
.nav-actions { margin-left: auto; }
.btn { border-radius: 7px; min-height: 42px; font-weight: 850; letter-spacing: 0; }
.btn-coral { background: var(--brand-orange); box-shadow: 0 10px 24px rgba(244,122,33,.2); }
.btn-coral:hover { background: #dc6615; }
.btn-outline { color: var(--brand-navy); border-color: #a9b7c6; }
.btn-navy { background: var(--brand-navy); color: #fff; }
.btn-navy:hover { background: #0d3155; transform: translateY(-2px); }
.btn-glass { color: #fff; border: 1px solid rgba(255,255,255,.72); background: rgba(7,27,52,.32); }
.btn-glass:hover { background: rgba(7,27,52,.65); }
.mega-menu { left: -175px; width: 900px; border-radius: 0 0 8px 8px; border-color: #dfe7ef; box-shadow: 0 24px 60px rgba(7,27,52,.16); }
.mega-grid h4 { color: var(--brand-navy); }
.mega-grid a { color: #5b6c80; }

.web-hero { position: relative; min-height: 620px; overflow: hidden; background: #1c2c38; }
.web-hero-media { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2000&q=88'); background-size: cover; background-position: center; }
.web-hero::after { content: ""; position: absolute; inset: 0; background: rgba(5,19,35,.58); }
.web-hero-inner { position: relative; z-index: 2; min-height: 620px; display: flex; align-items: center; justify-content: flex-start; }
.web-hero-copy { width: min(630px, 62%); color: #fff; padding: 72px 0; }
.web-hero-copy > span, .web-eyebrow, .web-section-head > span { display: inline-flex; color: #8ee3c3; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.web-hero-copy h1 { margin: 16px 0 18px; max-width: 620px; color: #fff; font-size: 64px; line-height: 1.02; font-weight: 900; letter-spacing: 0; }
.web-hero-copy p { margin: 0; max-width: 610px; color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.65; font-weight: 550; }
.web-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.web-hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: rgba(255,255,255,.88); font-size: 13px; font-weight: 700; }
.web-hero-notes span::before { content: "✓"; margin-right: 7px; color: #7be0ad; }

.web-assurance { border-bottom: 1px solid var(--brand-line); background: #fff; }
.web-assurance-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.web-assurance-grid > div { min-height: 92px; padding: 20px 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--brand-line); }
.web-assurance-grid > div:last-child { border-right: 0; }
.web-assurance b { font-size: 19px; color: var(--brand-navy); }
.web-assurance span { margin-top: 5px; color: var(--brand-muted); font-size: 13px; }

.web-section { padding: 90px 0; }
.web-section-head { max-width: 760px; margin-bottom: 36px; }
.web-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.web-section-head h2, .web-proof-copy h2, .web-capability-copy h2 { margin: 10px 0 14px; color: var(--brand-navy); font-size: 46px; line-height: 1.12; font-weight: 900; letter-spacing: 0; }
.web-section-head p { margin: 0; color: var(--brand-muted); font-size: 17px; line-height: 1.65; }

.web-proof-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: center; }
.web-proof-copy p { color: var(--brand-muted); font-size: 16px; line-height: 1.7; }
.web-proof-copy ul, .web-capability-copy ul, .web-price-card ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 11px; }
.web-proof-copy li, .web-capability-copy li, .web-price-card li { position: relative; padding-left: 24px; color: #354b61; font-size: 14px; font-weight: 700; }
.web-proof-copy li::before, .web-capability-copy li::before, .web-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-green); font-weight: 950; }
.web-text-link, .web-capability-copy a { color: var(--brand-blue); font-weight: 850; }

.web-product-screen { overflow: hidden; min-height: 470px; background: #fff; border: 1px solid #d7e1eb; border-radius: 8px; box-shadow: 0 25px 60px rgba(7,27,52,.12); }
.web-screen-head { height: 54px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; padding: 0 20px; background: #f9fbfd; border-bottom: 1px solid #e2e8ef; }
.web-screen-head b { color: var(--brand-navy); }
.web-screen-head span { font-weight: 850; }
.web-screen-head small { color: var(--brand-muted); }
.web-screen-body { display: grid; grid-template-columns: 170px 1fr; min-height: 416px; }
.web-screen-body aside { display: flex; flex-direction: column; gap: 6px; padding: 20px 14px; background: var(--brand-navy); color: rgba(255,255,255,.78); font-size: 12px; }
.web-screen-body aside b, .web-screen-body aside span { padding: 9px 10px; border-radius: 5px; }
.web-screen-body aside b { background: rgba(255,255,255,.12); color: #fff; }
.web-screen-main { padding: 20px; background: #f6f8fb; }
.web-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.web-kpis > div { min-width: 0; padding: 14px; background: #fff; border: 1px solid #e3eaf1; border-radius: 6px; }
.web-kpis small, .web-kpis span { display: block; color: var(--brand-muted); font-size: 10px; }
.web-kpis b { display: block; margin: 7px 0 4px; font-size: 16px; color: var(--brand-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.web-kpis span { color: var(--brand-green); }
.web-chart-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 12px; margin-top: 14px; }
.web-line-chart, .web-donut, .web-activity { min-height: 220px; padding: 18px; background: #fff; border: 1px solid #e3eaf1; border-radius: 6px; }
.web-line-chart { position: relative; overflow: hidden; background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 43px, #edf1f5 44px); }
.web-line-chart span { position: absolute; left: 9%; right: 8%; top: 50%; height: 4px; background: var(--brand-blue); transform: skewY(-9deg); border-radius: 4px; }
.web-line-chart i { position: relative; display: inline-block; width: 22%; height: 55%; border-right: 3px solid rgba(36,104,215,.35); transform: skewY(-15deg); margin-top: 40px; }
.web-donut { display: grid; place-content: center; text-align: center; background: radial-gradient(circle at center, #fff 0 38%, transparent 39%), conic-gradient(var(--brand-teal) 0 84%, #dfe7ee 84% 100%), #fff; }
.web-donut b { font-size: 28px; color: var(--brand-navy); }
.web-donut span { font-size: 11px; color: var(--brand-muted); }
.web-activity { display: flex; flex-direction: column; gap: 10px; }
.web-activity b { margin-bottom: 6px; color: var(--brand-navy); }
.web-activity span { padding: 10px; background: #f6f8fb; color: #52667b; font-size: 11px; border-left: 3px solid var(--brand-green); }

.web-capabilities { background: var(--brand-navy); }
.web-capability { display: grid; grid-template-columns: 1fr 1.35fr; min-height: 470px; border-bottom: 1px solid rgba(255,255,255,.14); }
.web-capability.reverse { grid-template-columns: 1.35fr 1fr; }
.web-capability.reverse .web-capability-copy { order: 2; }
.web-capability-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px max(7vw, 48px); color: #fff; }
.web-capability-copy > span { color: #7fe0ba; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.web-capability-copy h2 { color: #fff; font-size: 48px; }
.web-capability-copy p { color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }
.web-capability-copy li { color: rgba(255,255,255,.88); }
.web-capability-copy a { color: #86d8ff; }
.web-capability-photo { min-height: 470px; background-size: cover; background-position: center; }

.web-sector-section { background: #f5f7fa; }
.web-sector-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.web-sector-card { display: block; overflow: hidden; background: #fff; border: 1px solid var(--brand-line); border-radius: 8px; transition: .2s ease; }
.web-sector-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(7,27,52,.09); }
.web-sector-card > div { height: 180px; background-size: cover; background-position: center; }
.web-sector-card h3 { margin: 20px 20px 8px; color: var(--brand-navy); font-size: 20px; }
.web-sector-card p { min-height: 66px; margin: 0 20px; color: var(--brand-muted); font-size: 14px; line-height: 1.55; }
.web-sector-card > span { display: block; margin: 18px 20px 22px; color: var(--brand-blue); font-size: 13px; font-weight: 850; }

.web-trust-band { background: var(--brand-navy); color: #fff; }
.web-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.web-trust-grid > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.15); }
.web-trust-grid > div:last-child { border-right: 0; }
.web-trust-grid b { font-size: 16px; }
.web-trust-grid span { margin-top: 6px; color: rgba(255,255,255,.65); font-size: 12px; }

.web-testimonials { background: #fff; }
.web-testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.web-testimonial-grid article { padding: 26px; border: 1px solid var(--brand-line); border-radius: 8px; background: #fff; }
.web-testimonial-grid article:nth-child(2) { border-color: #88cbaa; box-shadow: 0 18px 38px rgba(20,117,91,.1); }
.web-rating { display: flex; align-items: center; gap: 10px; }
.web-rating b { color: var(--brand-navy); }
.web-rating span { color: var(--brand-orange); letter-spacing: .12em; }
.web-testimonial-grid blockquote { min-height: 110px; margin: 22px 0; color: #33495e; font-size: 15px; line-height: 1.7; }
.web-testimonial-grid strong, .web-testimonial-grid small { display: block; }
.web-testimonial-grid small { margin-top: 4px; color: var(--brand-muted); }
.web-testimonial-grid mark { display: inline-flex; margin-top: 18px; padding: 7px 10px; background: #ecf8f1; color: #08714a; font-size: 12px; font-weight: 900; border-radius: 5px; }

.web-pricing { background: #f5f7fa; }
.web-period-toggle { width: max-content; margin: 0 auto 30px; padding: 4px; display: flex; background: #dfe6ed; border-radius: 8px; }
.web-period-toggle button { min-width: 120px; min-height: 42px; border: 0; border-radius: 6px; background: transparent; color: #52667b; font-weight: 850; cursor: pointer; }
.web-period-toggle button.active { background: var(--brand-navy); color: #fff; }
.web-period-toggle small { color: #4fc486; }
.web-price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; align-items: stretch; }
.web-price-card { position: relative; display: flex; flex-direction: column; padding: 28px 24px; background: #fff; border: 1px solid var(--brand-line); border-radius: 8px; }
.web-price-card.featured { border: 2px solid var(--brand-green); box-shadow: 0 18px 40px rgba(20,117,91,.1); }
.web-price-card.custom { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.web-popular, .web-custom-badge { position: absolute; top: -14px; left: 18px; padding: 7px 11px; border-radius: 5px; background: var(--brand-green); color: #fff; font-size: 11px; font-weight: 900; }
.web-custom-badge { background: var(--brand-orange); }
.web-price-card h3 { margin: 8px 0; color: var(--brand-navy); font-size: 24px; }
.web-price-card.custom h3 { color: #fff; }
.web-price-card > p { min-height: 84px; color: var(--brand-muted); font-size: 14px; line-height: 1.55; }
.web-price-card.custom > p, .web-price-card.custom li { color: rgba(255,255,255,.74); }
.web-price-value b, .web-custom-price b { display: block; color: var(--brand-navy); font-size: 30px; }
.web-price-value span, .web-custom-price span { color: var(--brand-muted); font-size: 12px; }
.web-custom-price b { color: #fff; }
.web-custom-price span { color: rgba(255,255,255,.65); }
.web-year-total { margin-top: 9px; color: var(--brand-muted); font-size: 12px; }
.web-price-card ul { flex: 1; }
.web-price-card .btn { width: 100%; }

.web-modal { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 24px; background: rgba(4,18,32,.72); }
.web-modal.open { display: grid; }
.web-modal-card { position: relative; width: min(920px,100%); max-height: calc(100vh - 48px); overflow: auto; background: #fff; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.web-modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border: 1px solid #d7e0e9; border-radius: 50%; background: #fff; color: var(--brand-navy); font-size: 26px; cursor: pointer; }
.web-modal-heading { padding: 38px 42px 28px; background: #f4f7fa; border-bottom: 1px solid var(--brand-line); }
.web-modal-heading > span { color: var(--brand-teal); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.web-modal-heading h2 { margin: 10px 48px 8px 0; color: var(--brand-navy); font-size: 32px; }
.web-modal-heading p { margin: 0; color: var(--brand-muted); }
.web-custom-form { padding: 32px 42px 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.web-custom-form label { display: grid; gap: 7px; color: #33495e; font-size: 13px; font-weight: 800; }
.web-custom-form input, .web-custom-form select, .web-custom-form textarea { width: 100%; border: 1px solid #cbd7e2; border-radius: 6px; padding: 12px 13px; color: var(--brand-text); background: #fff; }
.web-custom-form input:focus, .web-custom-form select:focus, .web-custom-form textarea:focus { outline: 3px solid rgba(36,104,215,.13); border-color: var(--brand-blue); }
.web-custom-form fieldset { grid-column: 1 / -1; margin: 0; padding: 16px; border: 1px solid #d8e1e9; border-radius: 6px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.web-custom-form fieldset label { display: flex; align-items: center; gap: 7px; }
.web-custom-form fieldset input { width: auto; }
.web-form-wide, .web-form-actions { grid-column: 1 / -1; }
.web-form-actions { display: flex; justify-content: flex-end; gap: 10px; }
body.modal-open { overflow: hidden; }

.site-footer { background: var(--brand-navy); }
.footer-logo .brand-lockup { filter: brightness(0) invert(1); }
.footer-brand { max-width: 310px; }
.store-badges span { border-radius: 5px; }
.mobile-nav-actions { display: none; }

@media (max-width: 1080px) {
    .main-nav { gap: 14px; }
    .main-nav > a, .nav-has-mega > a { font-size: 13px; }
    .nav-actions .btn-outline { display: none; }
    .web-proof-grid { grid-template-columns: 1fr; }
    .web-sector-grid, .web-price-grid { grid-template-columns: repeat(2,1fr); }
    .web-capability, .web-capability.reverse { grid-template-columns: 1fr 1fr; }
    .web-kpis { grid-template-columns: repeat(2,1fr); }
    .web-chart-grid { grid-template-columns: 1fr 1fr; }
    .web-activity { grid-column: 1 / -1; min-height: 150px; }
}

@media (max-width: 860px) {
    .site-container { width: min(100% - 32px, 760px); }
    .site-logo { min-width: 145px; }
    .brand-lockup { width: 145px; height: 38px; }
    .mobile-toggle { display: inline-flex; margin-left: auto; align-items: center; justify-content: center; }
    .main-nav { position: absolute; left: 0; right: 0; top: 72px; display: none; padding: 18px 20px; background: #fff; border-bottom: 1px solid var(--brand-line); box-shadow: 0 18px 34px rgba(7,27,52,.12); }
    .main-nav.open { display: grid; }
    .main-nav > a, .nav-has-mega > a { display: block; padding: 11px 4px; }
    .mega-menu { display: none; }
    .mobile-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid var(--brand-line);
    }
    .mobile-nav-actions .btn {
        display: inline-flex;
        min-height: 44px;
        justify-content: center;
        padding: 0 12px;
        font-size: 12px;
    }
    .nav-actions .btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
    .web-hero, .web-hero-inner { min-height: 560px; }
    .web-hero-copy { width: 82%; }
    .web-hero-copy h1 { font-size: 54px; }
    .web-assurance-grid, .web-trust-grid { grid-template-columns: repeat(2,1fr); }
    .web-assurance-grid > div:nth-child(2), .web-trust-grid > div:nth-child(2) { border-right: 0; }
    .web-assurance-grid > div:nth-child(-n+2), .web-trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--brand-line); }
    .web-capability, .web-capability.reverse { grid-template-columns: 1fr; }
    .web-capability.reverse .web-capability-copy { order: 0; }
    .web-capability-copy { padding: 48px 32px; }
    .web-capability-photo { min-height: 360px; }
    .web-testimonial-grid { grid-template-columns: 1fr; }
    .web-testimonial-grid blockquote { min-height: 0; }
}

@media (max-width: 640px) {
    .site-container { width: calc(100% - 24px); }
    .nav-actions .btn { display: none; }
    .mobile-nav-actions { grid-template-columns: 1fr; }
    .web-hero, .web-hero-inner { min-height: 620px; }
    .web-hero-media { background-position: 58% center; }
    .web-hero::after { background: rgba(5,19,35,.7); }
    .web-hero-copy { width: 100%; padding: 66px 0 48px; }
    .web-hero-copy h1 { font-size: 42px; }
    .web-hero-copy p { font-size: 16px; }
    .web-hero-actions { display: grid; }
    .web-hero-notes { gap: 10px 16px; }
    .web-assurance-grid, .web-trust-grid, .web-sector-grid, .web-price-grid { grid-template-columns: 1fr; }
    .web-assurance-grid > div, .web-trust-grid > div { border-right: 0; border-bottom: 1px solid var(--brand-line); }
    .web-section { padding: 64px 0; }
    .web-section-head h2, .web-proof-copy h2, .web-capability-copy h2 { font-size: 34px; }
    .web-product-screen { min-height: 0; overflow-x: auto; }
    .web-screen-head, .web-screen-body { min-width: 720px; }
    .web-capability-copy { padding: 42px 24px; }
    .web-capability-photo { min-height: 280px; }
    .web-sector-card p { min-height: 0; }
    .web-period-toggle { width: 100%; }
    .web-period-toggle button { flex: 1; min-width: 0; }
    .web-custom-form { grid-template-columns: 1fr; padding: 24px 20px 28px; }
    .web-custom-form fieldset, .web-form-wide, .web-form-actions { grid-column: 1; }
    .web-custom-form fieldset { grid-template-columns: 1fr; }
    .web-modal-heading { padding: 30px 20px 22px; }
    .web-modal-heading h2 { font-size: 25px; }
    .web-form-actions { display: grid; }
}

/* First-viewport and consent polish */
@media(min-width: 1160px) {
    .as-hero {
        padding: 40px 0 36px;
    }

    .as-hero h1 {
        font-size: 52px;
        line-height: 1.04;
        margin: 14px 0 14px;
    }

    .as-hero p {
        font-size: 17px;
        line-height: 1.58;
    }

    .as-photo-stage {
        min-height: 385px;
    }

    .as-photo-card {
        inset: 0 30px 92px 0;
        border-radius: 24px;
    }

    .as-product-glass {
        border-radius: 20px;
        padding: 13px;
    }

    .as-screen-tile {
        min-height: 84px;
        border-radius: 12px;
        padding: 11px;
    }

    .as-screen-tile.wide {
        min-height: 110px;
    }

    .as-hero-statline {
        margin-top: 20px;
    }

    .as-hero-statline div {
        border-radius: 10px;
        padding: 11px 13px;
    }

    .page-hero {
        padding: 48px 0 52px;
    }

    .page-hero h1 {
        font-size: 48px;
        margin-top: 14px;
        margin-bottom: 12px;
    }
}

.cookie-banner {
    left: 18px;
    bottom: 18px;
    width: min(500px, calc(100% - 36px));
    border-color: #dce7ef;
    border-radius: 8px;
    padding: 12px 14px;
    gap: 14px;
    box-shadow: 0 18px 48px rgba(7, 24, 39, 0.16);
}

.cookie-banner strong {
    color: var(--brand-ink, #071827);
    font-size: 13px;
}

.cookie-banner p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.4;
}

.cookie-banner .btn {
    min-height: 36px;
    border-radius: 7px;
    padding: 0 12px;
    font-size: 12px;
}

.cookie-banner .btn-outline.dark {
    color: var(--brand-ink, #071827);
    border-color: #cbd8e4;
}

@media(max-width: 1159px) and (min-width: 761px) {
    .page-hero,
    .as-hero {
        padding: 48px 0;
    }

    .as-photo-stage {
        min-height: 390px;
    }
}

@media(max-width: 760px) {
    .page-hero,
    .as-hero {
        padding: 38px 0 42px;
    }

    .page-hero h1,
    .as-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .as-hero p {
        font-size: 15px;
        line-height: 1.52;
    }

    .as-hero-statline {
        margin-top: 18px;
        gap: 7px;
    }

    .as-hero-statline div {
        border-radius: 8px;
        padding: 9px;
    }

    .as-hero-statline b {
        font-size: 18px;
    }

    .as-photo-stage {
        display: none;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        padding: 11px;
        gap: 10px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

/* ADOR SAHA 2026 - kurumsal son katman */
.btn,
.as-btn,
.as-plan-choice a,
.as-chip-row span,
.as-pill,
.store-badges span,
.as-bank-grid span,
.as-price-card.featured::before {
    border-radius: 6px;
}

.as-metric-strip,
.as-module-card,
.as-board,
.as-integration-card,
.as-bank-panel,
.as-price-card,
.as-price,
.as-trial-strip,
.as-blog-card,
.as-proof-card,
.as-app-panel,
.as-device,
.as-device-card,
.as-cta,
.detail-visual,
.detail-card,
.article-main,
.article-aside,
.about-values > div {
    border-radius: 8px;
}

.as-price-card.featured,
.as-module-card:hover,
.as-blog-card:hover {
    transform: none;
}

.detail-photo {
    min-height: 470px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.detail-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,18,31,0.04), rgba(5,18,31,0.88));
}

.detail-photo strong,
.detail-photo span {
    position: relative;
    z-index: 1;
    color: #fff;
}

.detail-photo strong {
    font-size: 42px;
    line-height: 1.08;
}

.detail-photo span {
    font-size: 13px;
    font-weight: 800;
}

.detail-card small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    color: #fff;
    background: var(--brand-teal);
    font-weight: 900;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 28px;
}

.article-main {
    padding: 0 0 28px;
    border: 1px solid var(--brand-line);
    background: #fff;
    overflow: hidden;
}

.article-cover {
    width: 100%;
    height: min(46vw, 430px);
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.article-main > p,
.article-main > section {
    margin-left: clamp(22px, 5vw, 58px);
    margin-right: clamp(22px, 5vw, 58px);
}

.article-lead {
    margin-top: 34px;
    color: var(--brand-ink);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 760;
}

.article-main section {
    padding-top: 20px;
}

.article-main h2 {
    margin: 0 0 10px;
    color: var(--brand-ink);
    font-size: 26px;
}

.article-main p,
.about-copy p {
    color: var(--brand-muted);
    font-size: 16px;
    line-height: 1.8;
}

.article-aside {
    position: sticky;
    top: 24px;
    padding: 24px;
    border: 1px solid var(--brand-line);
    background: #fff;
}

.article-aside h3 {
    margin: 16px 0;
    color: var(--brand-ink);
    font-size: 22px;
}

.article-aside a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-line);
    color: var(--brand-teal-dark);
    font-weight: 850;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
}

.about-photo {
    min-height: 610px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.28)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1300&q=84");
    background-size: cover;
    background-position: center;
}

.about-copy h2 {
    margin: 16px 0;
    color: var(--brand-ink);
    font-size: 48px;
    line-height: 1.08;
}

.about-values {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

.about-values > div {
    padding: 16px;
    border: 1px solid var(--brand-line);
    background: #f7fafc;
}

.about-values strong,
.about-values span {
    display: block;
}

.about-values strong {
    color: var(--brand-ink);
    font-size: 17px;
}

.about-values span {
    margin-top: 4px;
    color: var(--brand-muted);
    line-height: 1.5;
}

@media(max-width: 900px) {
    .article-layout,
    .about-story {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
    }

    .about-photo {
        min-height: 420px;
    }
}

.logo-mark-img {
    background: #ffffff;
}

.site-logo strong {
    color: var(--brand-ink);
}

.main-nav a.active,
.main-nav a:hover,
.mega-grid a:hover,
.mega-grid .mega-all {
    color: var(--brand-teal);
}

.btn {
    border-radius: 999px;
}

.btn-coral {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
}

.btn-coral:hover {
    background: linear-gradient(135deg, var(--brand-teal-dark), #1d4ed8);
}

.btn-outline {
    border-color: #cbd8e4;
    color: var(--brand-ink);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(7, 24, 39, 0.95), rgba(15, 95, 89, 0.92)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    padding: 88px 0 82px;
    color: white;
}

.page-hero span,
.as-kicker,
.as-pill {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.page-hero span {
    color: #c6fff3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 8px 12px;
}

.page-hero h1 {
    color: white;
    font-size: 56px;
    line-height: 1.06;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    color: rgba(255,255,255,0.84);
    font-size: 18px;
}

.as-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(112deg, rgba(5, 22, 36, 0.96), rgba(8, 90, 84, 0.94) 48%, rgba(31, 84, 169, 0.86)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 94px 0 74px;
}

.as-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.20;
}

.as-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--brand-paper));
}

.as-hero-grid,
.as-section,
.as-band-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.as-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
    gap: 56px;
    align-items: center;
}

.as-kicker,
.as-pill {
    color: var(--brand-teal);
    background: #e8fbf7;
    border: 1px solid #b7eee3;
    padding: 8px 12px;
}

.as-hero .as-kicker {
    color: #c6fff3;
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.22);
}

.as-hero h1 {
    margin: 18px 0 18px;
    color: white;
    font-size: 72px;
    line-height: 1.02;
    font-weight: 950;
}

.as-hero p {
    max-width: 740px;
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 19px;
    line-height: 1.72;
    font-weight: 760;
}

.as-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.as-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 950;
    color: var(--brand-ink);
    background: white;
    box-shadow: 0 18px 42px rgba(0,0,0,0.16);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.as-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(0,0,0,0.20);
}

.as-btn.dark {
    color: white;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-deep));
}

.as-btn.ghost {
    color: white;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: none;
}

.as-hero-statline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    max-width: 680px;
}

.as-hero-statline div {
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.11);
    border-radius: 18px;
    padding: 14px;
    backdrop-filter: blur(12px);
}

.as-hero-statline b,
.as-hero-statline span {
    display: block;
}

.as-hero-statline b {
    color: white;
    font-size: 24px;
    font-weight: 950;
}

.as-hero-statline span {
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 850;
    margin-top: 4px;
}

.as-photo-stage {
    position: relative;
    min-height: 545px;
}

.as-photo-card {
    position: absolute;
    inset: 0 34px 118px 0;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5,20,32,0.08), rgba(5,20,32,0.65)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: 0 42px 110px rgba(1,18,32,0.34);
    border: 1px solid rgba(255,255,255,0.24);
}

.as-photo-card::before {
    content: "Saha, finans ve operasyon tek akışta";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: white;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 950;
}

.as-product-glass {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(92%, 430px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 30px;
    background: rgba(255,255,255,0.90);
    box-shadow: 0 30px 92px rgba(3,25,43,0.30);
    padding: 16px;
    backdrop-filter: blur(18px);
}

.as-browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e4edf5;
    padding-bottom: 12px;
    margin-bottom: 14px;
    color: #41536b;
    font-size: 12px;
    font-weight: 950;
}

.as-browser-bar i {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: var(--brand-teal);
    box-shadow: 14px 0 var(--brand-sky), 28px 0 var(--brand-amber);
}

.as-screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.as-screen-tile {
    min-height: 104px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff, #edf6f7);
    border: 1px solid #e1ebf3;
    padding: 13px;
}

.as-screen-tile.wide {
    grid-column: 1 / -1;
    min-height: 124px;
    color: white;
    background: linear-gradient(135deg, #052e3f, var(--brand-teal));
}

.as-screen-tile small,
.as-screen-tile b,
.as-screen-tile span {
    display: block;
}

.as-screen-tile small {
    color: #64748b;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 8px;
}

.as-screen-tile b {
    color: var(--brand-ink);
    font-size: 25px;
    font-weight: 950;
}

.as-screen-tile span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-top: 7px;
    line-height: 1.45;
}

.as-screen-tile.wide small,
.as-screen-tile.wide span {
    color: rgba(255,255,255,0.74);
}

.as-screen-tile.wide b {
    color: white;
}

.as-ledger {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.as-ledger div {
    display: grid;
    grid-template-columns: 1fr 72px;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 900;
}

.as-section {
    padding-top: 74px;
    padding-bottom: 74px;
}

.as-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px;
}

.as-section-head h2 {
    max-width: 850px;
    margin: 10px 0 0;
    color: var(--brand-ink);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 950;
}

.as-section-head p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--brand-muted);
    font-size: 16px;
    line-height: 1.72;
    font-weight: 760;
}

.as-metric-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.as-metric,
.as-module,
.as-blog-card,
.as-proof-card,
.as-solution-card,
.as-price-card,
.as-integration-card,
.as-bank-panel,
.as-trial-strip,
.as-app-panel {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--brand-line);
    border-radius: 28px;
    box-shadow: var(--brand-soft-shadow);
}

.as-metric {
    min-height: 144px;
    padding: 20px;
}

.as-metric small,
.as-module small,
.as-blog-card small,
.as-proof-card small,
.as-solution-card small,
.as-integration-card small {
    display: block;
    color: var(--brand-muted);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 8px;
}

.as-metric b {
    display: block;
    color: var(--brand-ink);
    font-size: 29px;
    line-height: 1.05;
    font-weight: 950;
}

.as-metric span {
    display: block;
    color: var(--brand-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 780;
    margin-top: 9px;
}

.as-photo-grid,
.as-resource-grid,
.as-price-grid,
.as-app-grid,
.as-integration-grid {
    display: grid;
    gap: 18px;
}

.as-photo-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.as-photo-tall,
.as-photo-stack article {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--brand-shadow);
    border: 1px solid rgba(255,255,255,0.58);
}

.as-photo-tall {
    background-image:
        linear-gradient(180deg, rgba(5,20,32,0.05), rgba(5,20,32,0.62)),
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1300&q=80");
}

.as-photo-stack {
    display: grid;
    gap: 18px;
}

.as-photo-stack article {
    min-height: 206px;
}

.as-photo-stack article:first-child {
    background-image:
        linear-gradient(180deg, rgba(5,20,32,0.02), rgba(5,20,32,0.58)),
        url("https://images.unsplash.com/photo-1581092921461-39b9d08a9b21?auto=format&fit=crop&w=1000&q=80");
}

.as-photo-stack article:last-child {
    background-image:
        linear-gradient(180deg, rgba(5,20,32,0.02), rgba(5,20,32,0.58)),
        url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1000&q=80");
}

.as-photo-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: white;
}

.as-photo-caption small,
.as-photo-caption b,
.as-photo-caption span {
    display: block;
}

.as-photo-caption small {
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 8px;
}

.as-photo-caption b {
    font-size: 28px;
    line-height: 1.14;
    font-weight: 950;
}

.as-photo-caption span {
    max-width: 650px;
    color: rgba(255,255,255,0.82);
    font-weight: 800;
    line-height: 1.58;
    margin-top: 8px;
}

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

.as-module {
    min-height: 540px;
    overflow: hidden;
    padding: 0;
}

.as-module-media {
    position: relative;
    min-height: 205px;
    background-image:
        linear-gradient(180deg, rgba(5,20,32,0.05), rgba(5,20,32,0.50)),
        var(--photo);
    background-size: cover;
    background-position: center;
}

.as-module-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.98));
}

.as-module-content {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.as-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
    font-weight: 950;
    box-shadow: 0 18px 35px rgba(15, 143, 130, 0.28);
}

.as-module-kicker {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 5px;
    background: rgba(7, 27, 51, .78);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.as-module h3,
.as-blog-card h3,
.as-proof-card h3,
.as-solution-card h3,
.as-integration-card h3 {
    margin: 0;
    color: var(--brand-ink);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 950;
}

.as-module-summary,
.as-blog-card p,
.as-proof-card p,
.as-solution-card p,
.as-integration-card p,
.as-app-panel p {
    color: var(--brand-muted);
    font-size: 14px;
    line-height: 1.66;
    font-weight: 760;
}

.as-module ul,
.as-price-card ul,
.as-app-panel ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 9px;
}

.as-module li,
.as-price-card li,
.as-app-panel li {
    color: #405269;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 850;
    display: flex;
    gap: 9px;
}

.as-module li::before,
.as-price-card li::before,
.as-app-panel li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand-teal);
    margin-top: 6px;
}

.as-visual-band {
    border-top: 1px solid #e0ebf2;
    border-bottom: 1px solid #e0ebf2;
    padding: 74px 0;
    background:
        linear-gradient(135deg, rgba(248,251,255,0.96), rgba(235,248,247,0.96)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.as-board {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
}

.as-board-main,
.as-board-side {
    border-radius: 32px;
    background: white;
    border: 1px solid var(--brand-line);
    box-shadow: var(--brand-shadow);
    padding: 24px;
}

.as-board-main h2,
.as-board-side h3 {
    margin: 10px 0 8px;
    color: var(--brand-ink);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 950;
}

.as-board-main p {
    color: var(--brand-muted);
    line-height: 1.65;
    font-weight: 760;
}

.as-board-visual {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 14px;
    margin-top: 20px;
}

.as-dashboard-panel {
    border-radius: 24px;
    background: #0b1624;
    color: white;
    padding: 18px;
    min-height: 270px;
}

.as-dashboard-panel h3 {
    margin: 0 0 14px;
    color: white;
}

.as-bars {
    display: grid;
    gap: 14px;
}

.as-bar label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.as-board-main .as-bar label {
    color: #334155;
}

.as-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    overflow: hidden;
}

.as-board-main .as-track {
    background: #e6edf5;
}

.as-fill {
    height: 100%;
    width: var(--w);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-blue));
}

.as-map-panel {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(6,78,74,0.08), rgba(37,99,235,0.18)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.as-map-panel span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.90);
    padding: 12px;
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 950;
}

.as-timeline {
    display: grid;
    gap: 13px;
    margin-top: 18px;
}

.as-time {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
}

.as-time i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand-teal);
    background: #e8fbf7;
    font-style: normal;
    font-weight: 950;
}

.as-time b {
    display: block;
    color: var(--brand-ink);
    margin-bottom: 3px;
}

.as-time span {
    color: var(--brand-muted);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 760;
}

.as-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.as-chip-row span {
    display: inline-flex;
    border-radius: 999px;
    background: #e8fbf7;
    color: var(--brand-teal-dark);
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 950;
}

.as-solution-grid,
.as-blog-grid,
.as-proof-grid,
.as-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.as-solution-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    background: var(--brand-navy);
}

.as-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--photo);
    background-size: cover;
    background-position: center;
    opacity: 0.72;
    transform: scale(1.04);
}

.as-solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,28,0.12), rgba(5,15,28,0.82));
}

.as-solution-card > * {
    position: relative;
    z-index: 1;
}

.as-solution-card small,
.as-solution-card h3,
.as-solution-card a {
    color: white;
}

.as-solution-card p {
    color: rgba(255,255,255,0.84);
}

.as-solution-card a,
.as-blog-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--brand-teal);
    font-weight: 950;
}

.as-integration-section {
    background: #eef6f8;
    border-top: 1px solid #dbe8f0;
    border-bottom: 1px solid #dbe8f0;
}

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

.as-integration-card {
    min-height: 280px;
    padding: 24px;
}

.as-bank-panel {
    margin-top: 18px;
    padding: 26px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: center;
}

.as-bank-panel h3 {
    margin: 10px 0;
    color: var(--brand-ink);
    font-size: 28px;
    line-height: 1.2;
}

.as-bank-panel p {
    color: var(--brand-muted);
    line-height: 1.65;
    font-weight: 760;
}

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

.as-bank-grid span {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid #dce7ef;
    color: var(--brand-ink);
    font-size: 12px;
    font-weight: 950;
    text-align: center;
    padding: 8px;
}

.as-price-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 8px;
}

.as-price-card.featured {
    border-color: var(--brand-teal);
    box-shadow: 0 22px 60px rgba(15, 143, 130, 0.16);
    transform: translateY(-6px);
}

.as-price-card.featured::before {
    content: "En çok tercih edilen";
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 6px;
    background: var(--brand-teal-dark);
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 950;
}

.as-price-card h3 {
    margin: 0 0 8px;
    color: var(--brand-ink);
    font-size: 25px;
    font-weight: 950;
}

.as-price-card p {
    min-height: 52px;
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.55;
    font-weight: 760;
}

.as-price {
    margin: 18px 0;
    padding: 16px;
    border-radius: 8px;
    background: #f6fafc;
    border: 1px solid var(--brand-line);
}

.as-price > small {
    display: block;
    color: var(--brand-muted);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.as-monthly-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 7px;
}

.as-monthly-price b {
    color: var(--brand-ink);
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
}

.as-monthly-price span {
    color: var(--brand-muted);
    font-size: 12px;
    font-weight: 950;
}

.as-yearly-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--brand-line);
}

.as-yearly-price small,
.as-yearly-price strong {
    display: block;
}

.as-yearly-price small {
    color: var(--brand-muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.as-yearly-price strong {
    margin-top: 3px;
    color: var(--brand-ink);
    font-size: 17px;
    font-weight: 950;
}

.as-yearly-price mark {
    padding: 7px 9px;
    border-radius: 6px;
    background: #e7f8f4;
    color: var(--brand-teal-dark);
    font-size: 10px;
    line-height: 1.35;
    font-weight: 950;
    text-align: right;
}

.as-plan-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.as-plan-choice a {
    min-height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 950;
    color: var(--brand-teal-dark);
    background: #e8fbf7;
    border: 1px solid #b8ebe2;
}

.as-plan-choice a:last-child {
    color: white;
    background: var(--brand-teal-dark);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37,99,235,0.22);
}

.as-trial-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 28px;
    border-color: #cce9e2;
    background:
        linear-gradient(135deg, rgba(236,253,245,0.97), rgba(239,246,255,0.97)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
}

.as-trial-strip h2 {
    margin: 10px 0 0;
    color: var(--brand-ink);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 950;
}

.as-trial-strip p {
    color: var(--brand-muted);
    line-height: 1.6;
    font-weight: 780;
}

.as-blog-card {
    overflow: hidden;
    min-height: 430px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.as-blog-image {
    min-height: 172px;
    background-size: cover;
    background-position: center;
}

.as-blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.as-blog-body a {
    margin-top: auto;
}

.as-proof-card {
    min-height: 285px;
    padding: 24px;
    position: relative;
}

.as-proof-card::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 22px;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,143,130,0.15), rgba(37,99,235,0.12));
}

.as-proof-card strong {
    display: block;
    margin-top: 16px;
    color: var(--brand-ink);
    font-weight: 950;
}

.as-app-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
}

.as-device {
    min-height: 430px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(3,16,28,0.05), rgba(3,16,28,0.62)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1300&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: var(--brand-shadow);
}

.as-device-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.91);
    padding: 18px;
    color: var(--brand-ink);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

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

.as-device-card b {
    font-size: 24px;
    font-weight: 950;
}

.as-device-card span {
    margin-top: 8px;
    color: var(--brand-muted);
    line-height: 1.55;
    font-weight: 820;
}

.as-app-panel {
    padding: 26px;
}

.as-app-panel h2 {
    margin: 10px 0;
    color: var(--brand-ink);
    font-size: 38px;
    line-height: 1.16;
    font-weight: 950;
}

.as-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 34px;
    padding: 32px;
    color: white;
    background:
        linear-gradient(135deg, rgba(7,26,43,0.96), rgba(9,93,86,0.94)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: var(--brand-shadow);
}

.as-cta h2 {
    margin: 0;
    color: white;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 950;
}

.as-cta p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.80);
    line-height: 1.6;
    font-weight: 760;
}

.detail-section {
    background: var(--brand-paper);
}

.detail-visual,
.detail-card {
    border-color: var(--brand-line);
    box-shadow: var(--brand-soft-shadow);
}

.detail-card span {
    color: white;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
}

@media(max-width: 1150px) {
    .as-hero-grid,
    .as-board,
    .as-app-grid,
    .as-bank-panel,
    .as-photo-grid {
        grid-template-columns: 1fr;
    }

    .as-hero h1 {
        font-size: 56px;
    }

    .as-photo-stage {
        min-height: 520px;
    }

    .as-metric-strip,
    .as-solution-grid,
    .as-blog-grid,
    .as-proof-grid,
    .as-price-grid,
    .as-integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .as-section-head,
    .as-cta {
        display: grid;
    }

    .as-price-card.featured {
        transform: none;
    }
}

@media(max-width: 760px) {
    .page-hero h1,
    .as-hero h1 {
        font-size: 38px;
    }

    .page-hero,
    .as-hero {
        padding: 58px 0 46px;
    }

    .as-hero-grid,
    .as-section,
    .as-band-inner {
        width: min(100% - 34px, 1180px);
    }

    .as-hero-statline,
    .as-metric-strip,
    .as-module-grid,
    .as-solution-grid,
    .as-blog-grid,
    .as-proof-grid,
    .as-price-grid,
    .as-integration-grid,
    .as-bank-grid,
    .as-plan-choice,
    .as-trial-strip,
    .as-board-visual {
        grid-template-columns: 1fr;
    }

    .as-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .as-section-head h2,
    .as-board-main h2,
    .as-app-panel h2,
    .as-cta h2 {
        font-size: 30px;
    }

    .as-photo-stage {
        min-height: 450px;
    }

    .as-photo-card {
        inset: 0 0 106px 0;
    }

    .as-product-glass {
        width: 100%;
    }
}

/* Final specificity: restrained ERP geometry */
.btn,
.as-btn,
.as-plan-choice a,
.as-chip-row span,
.as-pill,
.store-badges span,
.as-bank-grid span,
.as-price-card.featured::before {
    border-radius: 6px;
}

.as-metric-strip,
.as-module-card,
.as-board,
.as-integration-card,
.as-bank-panel,
.as-price-card,
.as-price,
.as-trial-strip,
.as-blog-card,
.as-proof-card,
.as-app-panel,
.as-device,
.as-device-card,
.as-cta,
.detail-visual,
.detail-card,
.article-main,
.article-aside,
.about-values > div,
.about-photo {
    border-radius: 8px;
}

@media(min-width: 1160px) {
    .as-hero {
        padding: 56px 0 52px;
    }

    .as-hero h1 {
        margin: 14px 0;
        font-size: 58px;
        line-height: 1.04;
    }

    .as-hero p {
        font-size: 17px;
        line-height: 1.58;
    }

    .as-photo-stage {
        min-height: 420px;
    }

    .as-photo-card {
        inset: 0 30px 92px 0;
        border-radius: 8px;
    }

    .as-product-glass {
        border-radius: 8px;
        padding: 13px;
    }

    .as-screen-tile {
        min-height: 84px;
        border-radius: 8px;
        padding: 11px;
    }

    .as-screen-tile.wide {
        min-height: 110px;
    }

    .as-hero-statline {
        display: none;
    }

    .page-hero {
        padding: 48px 0 52px;
    }

    .page-hero h1 {
        margin-top: 14px;
        margin-bottom: 12px;
        font-size: 48px;
    }
}

@media(max-width: 1159px) and (min-width: 761px) {
    .page-hero,
    .as-hero {
        padding: 48px 0;
    }

    .as-photo-stage {
        min-height: 390px;
    }
}

@media(max-width: 760px) {
    .page-hero,
    .as-hero {
        padding: 38px 0 42px;
    }

    .page-hero h1,
    .as-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .as-hero p {
        font-size: 15px;
        line-height: 1.52;
    }

    .as-hero-statline {
        display: none;
    }

    .as-photo-stage {
        display: none;
    }
}

.cookie-banner {
    left: auto;
    right: 18px;
}

body:has(.cookie-banner.show) .live-chat {
    bottom: 128px;
}

.chat-float {
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--brand-teal-dark, #09665f);
    font-size: 12px;
}

@media(max-width: 760px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
    }

    body:has(.cookie-banner.show) .live-chat {
        bottom: 148px;
    }

    .top-strip {
        display: none;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .site-logo {
        min-width: 0;
    }

    .site-logo strong {
        font-size: 18px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 8px;
        background: var(--brand-navy, #081523);
    }

    .mobile-toggle img {
        width: 22px;
        height: 22px;
        filter: brightness(0) invert(1);
    }

    .main-nav.open {
        top: 72px;
    }
}

/* ADOR SAHA public site: final enterprise SaaS layer */
:root {
    --brand-navy: #071b33;
    --brand-ink: #071827;
    --brand-teal: #087d72;
    --brand-teal-dark: #075c56;
    --brand-green: #15966f;
    --brand-blue: #2468d7;
    --brand-orange: #f58220;
    --brand-coral: #ef6b4f;
    --brand-text: #14283b;
    --brand-muted: #5f7184;
    --brand-line: #dce5ed;
    --brand-mist: #f3f7f9;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--brand-text);
    background: #ffffff;
}

body,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

.top-strip {
    background: var(--brand-navy);
    border: 0;
}

.top-strip-inner {
    min-height: 36px;
}

.top-strip a,
.top-strip span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.site-header {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--brand-line);
    box-shadow: 0 8px 28px rgba(7, 24, 39, .06);
}

.nav-wrap {
    min-height: 78px;
}

.brand-lockup {
    width: 176px;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    gap: 24px;
}

.main-nav > a,
.nav-has-mega > a {
    color: #253a4f;
    font-size: 13px;
    font-weight: 800;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-has-mega > a:hover,
.nav-has-mega > a.active {
    color: var(--brand-teal);
}

.nav-actions .btn,
.web-hero-actions .btn {
    border-radius: 6px;
}

.btn-coral {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 24px rgba(245, 130, 32, .2);
}

.btn-coral:hover {
    background: #dc6e12;
    border-color: #dc6e12;
}

.web-hero,
.web-hero-inner {
    min-height: 660px;
}

.web-hero-media {
    background-image: url('/brand/modules/saha.jpg');
    background-position: 54% center;
    filter: saturate(.92) contrast(1.04);
}

.web-hero::after {
    background: linear-gradient(90deg, rgba(3, 17, 32, .94) 0%, rgba(3, 28, 46, .82) 42%, rgba(3, 21, 39, .30) 72%, rgba(3, 18, 32, .12) 100%);
}

.web-hero-copy {
    width: min(680px, 58%);
    padding: 92px 0 78px;
}

.web-hero-copy > span,
.web-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 5px;
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.web-hero-copy h1 {
    max-width: 680px;
    margin: 20px 0 20px;
    color: #ffffff;
    font-size: 64px;
    line-height: 1.03;
    letter-spacing: 0;
}

.web-hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.68;
}

.web-hero-actions {
    margin-top: 30px;
}

.web-hero-notes {
    margin-top: 25px;
}

.web-hero-notes span {
    color: rgba(255, 255, 255, .78);
}

.web-assurance {
    background: #ffffff;
    border-bottom: 1px solid var(--brand-line);
}

.web-assurance-grid > div {
    min-height: 112px;
    padding: 24px 28px;
}

.web-assurance-grid b {
    color: var(--brand-navy);
    font-size: 20px;
}

.web-assurance-grid > div:nth-child(1) b { color: var(--brand-teal); }
.web-assurance-grid > div:nth-child(2) b { color: var(--brand-blue); }
.web-assurance-grid > div:nth-child(3) b { color: var(--brand-orange); }
.web-assurance-grid > div:nth-child(4) b { color: var(--brand-green); }

.web-section {
    padding: 88px 0;
}

.web-section-head h2,
.web-proof-copy h2,
.web-product-deep h2 {
    color: var(--brand-navy);
    letter-spacing: 0;
}

.web-section-head > span,
.web-proof-copy .web-eyebrow,
.web-product-deep .web-eyebrow,
.about-manifesto .web-eyebrow,
.about-security-band .web-eyebrow {
    border-color: #b9ddd6;
    background: #edf9f6;
    color: var(--brand-teal-dark);
}

.web-proof-grid {
    grid-template-columns: minmax(340px, .8fr) minmax(620px, 1.4fr);
    gap: 58px;
    align-items: center;
}

.web-proof-copy ul {
    margin: 28px 0;
    display: grid;
    gap: 12px;
}

.web-proof-copy li {
    position: relative;
    padding-left: 22px;
    color: #344b60;
}

.web-proof-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.web-real-product {
    margin: 0;
    overflow: hidden;
    border: 1px solid #cfdce6;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(7, 28, 48, .16);
}

.web-real-product-bar {
    min-height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--brand-line);
    background: #f7fafc;
}

.web-real-product-bar span {
    color: var(--brand-teal-dark);
    font-size: 12px;
    font-weight: 900;
}

.web-real-product-bar b {
    color: var(--brand-navy);
    font-size: 12px;
}

.web-real-product-bar small {
    margin-left: auto;
    color: var(--brand-muted);
}

.web-product-crop {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7.25;
    background: #edf2f6;
}

.web-product-crop img,
.web-real-product img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-13.9%);
}

.web-real-product figcaption {
    padding: 13px 16px;
    color: #607286;
    font-size: 12px;
}

.web-product-deep {
    padding: 92px 0;
    background: var(--brand-navy);
    color: #ffffff;
}

.web-product-deep-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    gap: 62px;
    align-items: center;
}

.web-product-deep figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.web-product-deep h2 {
    margin: 18px 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.14;
}

.web-product-deep p {
    color: rgba(255, 255, 255, .70);
    line-height: 1.72;
}

.web-product-deep .web-eyebrow {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #aee6dc;
}

.web-feature-rail {
    margin: 26px 0;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.web-feature-rail article {
    padding: 15px 0;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.web-feature-rail b {
    color: #ffffff;
    font-size: 14px;
}

.web-feature-rail span {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.55;
}

.web-product-deep .web-text-link {
    color: #ffb168;
}

.web-capability {
    min-height: 520px;
}

.web-capability-copy {
    padding: 72px clamp(32px, 7vw, 110px);
}

.web-capability-copy > span {
    color: var(--brand-orange);
}

.web-capability-photo {
    min-height: 520px;
}

.web-sector-section {
    background: #f4f7fa;
}

.web-sector-card {
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(11, 32, 53, .08);
}

.web-sector-card > div {
    min-height: 210px;
}

.web-testimonials {
    background: #ffffff;
}

.web-testimonial-grid article {
    position: relative;
    min-height: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(7, 30, 50, .08);
}

.web-testimonial-grid article:nth-child(1) { border-top: 4px solid var(--brand-teal); }
.web-testimonial-grid article:nth-child(2) { border-top: 4px solid var(--brand-orange); }
.web-testimonial-grid article:nth-child(3) { border-top: 4px solid var(--brand-blue); }

.web-scenario-index {
    color: #a4b2bf;
    font-size: 13px;
    font-weight: 900;
}

.web-testimonial-grid blockquote {
    flex: 1;
    min-height: 0;
    margin: 24px 0;
    color: #294155;
    font-size: 16px;
    line-height: 1.78;
}

.web-reference-note {
    max-width: 780px;
    margin: 22px auto 0;
    color: #758598;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.about-story-premium {
    gap: 72px;
    align-items: stretch;
}

.about-story-premium .about-photo {
    min-height: 760px;
    border-radius: 8px;
    background-image:
        linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.28)),
        url('/brand/modules/saha.jpg');
    background-position: center;
    box-shadow: 0 26px 60px rgba(7, 30, 50, .14);
}

.about-story-premium .about-copy p {
    color: #435a6f;
    line-height: 1.84;
}

.about-manifesto,
.about-security-band {
    padding: 88px 0;
    background: var(--brand-navy);
    color: #ffffff;
}

.about-manifesto-grid,
.about-security-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 82px;
}

.about-manifesto h2,
.about-security-band h2 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.16;
}

.about-manifesto p,
.about-security-band p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.84;
}

.about-principle-grid,
.about-operating-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-principle-grid article,
.about-operating-grid article {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    background: #ffffff;
}

.about-principle-grid small {
    color: var(--brand-orange);
    font-weight: 900;
}

.about-principle-grid h3,
.about-operating-grid h3 {
    margin: 34px 0 12px;
    color: var(--brand-navy);
    font-size: 21px;
}

.about-principle-grid p,
.about-operating-grid p {
    color: #5a6d80;
    line-height: 1.72;
}

.about-operating-model {
    background: #f4f7fa;
}

.about-operating-grid article:nth-child(2),
.about-operating-grid article:nth-child(5) {
    border-top: 4px solid var(--brand-orange);
}

.about-security-links {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-security-links a {
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.about-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    overflow: hidden;
}

.about-roadmap-grid article {
    min-height: 240px;
    padding: 30px;
    border-right: 1px solid var(--brand-line);
    background: #ffffff;
}

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

.about-roadmap-grid b {
    color: var(--brand-teal-dark);
    font-size: 18px;
}

.about-roadmap-grid p {
    margin-top: 54px;
    color: #5c6f81;
    line-height: 1.7;
}

.legal-shell {
    padding: 64px 0 96px;
    background: #f3f6f9;
}

.legal-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 104px;
    padding: 24px;
    display: grid;
    gap: 7px;
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    background: #ffffff;
}

.legal-nav > strong {
    margin-bottom: 10px;
    color: var(--brand-navy);
    font-size: 16px;
}

.legal-nav > a {
    padding: 10px 11px;
    border-radius: 5px;
    color: #445a6e;
    font-size: 13px;
    font-weight: 750;
}

.legal-nav > a:hover {
    background: #edf7f5;
    color: var(--brand-teal-dark);
}

.legal-nav > div {
    margin-top: 14px;
    padding-top: 16px;
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--brand-line);
}

.legal-nav small {
    color: var(--brand-muted);
}

.legal-document {
    overflow: hidden;
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(7, 30, 50, .06);
}

.legal-summary {
    padding: 30px 34px;
    border-bottom: 1px solid #badfd7;
    background: #ecf8f5;
}

.legal-summary b {
    color: var(--brand-teal-dark);
}

.legal-summary p {
    margin: 8px 0 0;
    color: #35576b;
    line-height: 1.7;
}

.legal-document > section {
    padding: 34px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid var(--brand-line);
}

.legal-document > section > span {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 900;
}

.legal-document h2 {
    margin: 0 0 14px;
    color: var(--brand-navy);
    font-size: 24px;
    line-height: 1.25;
}

.legal-document p,
.legal-document li {
    color: #465b6d;
    line-height: 1.82;
}

.legal-document a {
    color: var(--brand-blue);
    font-weight: 750;
}

.legal-note {
    margin: 34px;
    padding: 22px;
    border-left: 4px solid var(--brand-orange);
    border-radius: 5px;
    background: #fff7ef;
}

.legal-note strong {
    color: #9b4b10;
}

.legal-note p {
    margin-bottom: 0;
}

.legal-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.legal-document table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.legal-document th,
.legal-document td {
    padding: 13px;
    border: 1px solid var(--brand-line);
    text-align: left;
    vertical-align: top;
}

.legal-document th {
    background: #f2f6f8;
    color: var(--brand-navy);
}

.site-footer {
    padding-top: 66px;
    background: #06172b;
}

.footer-grid {
    gap: 38px;
}

.footer-grid h4 {
    color: #ffffff;
}

.footer-grid a,
.footer-brand p {
    color: rgba(255, 255, 255, .66);
}

.footer-grid a:hover {
    color: #ffffff;
}

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

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

.footer-bottom a,
.footer-bottom span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.cookie-banner {
    align-items: center;
    background: #ffffff;
}

.cookie-banner a {
    color: var(--brand-blue);
    font-weight: 800;
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

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

@media (max-width: 1180px) {
    .web-proof-grid,
    .web-product-deep-grid {
        grid-template-columns: 1fr;
    }

    .web-proof-copy {
        max-width: 760px;
    }

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

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

    .about-roadmap-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--brand-line);
    }
}

@media (max-width: 860px) {
    .web-hero,
    .web-hero-inner {
        min-height: 600px;
    }

    .web-hero-copy {
        width: min(620px, 82%);
        padding: 74px 0 62px;
    }

    .web-hero-copy h1 {
        font-size: 52px;
    }

    .about-story-premium,
    .about-manifesto-grid,
    .about-security-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

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

    .legal-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-nav > strong,
    .legal-nav > div {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .brand-lockup {
        width: 150px;
        height: 42px;
    }

    .web-hero,
    .web-hero-inner {
        min-height: 620px;
    }

    .web-hero-media {
        background-position: 66% center;
    }

    .web-hero::after {
        background: rgba(3, 19, 34, .76);
    }

    .web-hero-copy {
        width: 100%;
        padding: 64px 0 46px;
    }

    .web-hero-copy h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .web-hero-copy p {
        font-size: 16px;
        line-height: 1.58;
    }

    .web-hero-notes {
        display: grid;
    }

    .web-section,
    .web-product-deep,
    .about-manifesto,
    .about-security-band {
        padding: 64px 0;
    }

    .web-product-deep-grid {
        gap: 36px;
    }

    .web-product-deep h2,
    .about-manifesto h2,
    .about-security-band h2 {
        font-size: 32px;
    }

    .web-real-product-bar small {
        display: none;
    }

    .web-product-crop {
        aspect-ratio: 16 / 7.25;
    }

    .web-testimonial-grid article {
        min-height: 0;
    }

    .about-story-premium .about-photo {
        min-height: 420px;
    }

    .about-principle-grid,
    .about-operating-grid,
    .about-roadmap-grid,
    .legal-nav {
        grid-template-columns: 1fr;
    }

    .about-roadmap-grid article,
    .about-roadmap-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--brand-line);
    }

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

    .legal-document > section {
        padding: 25px 20px;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
    }

    .legal-summary {
        padding: 24px 20px;
    }

    .legal-document h2 {
        font-size: 20px;
    }

    .legal-note {
        margin: 22px 20px;
    }

    .footer-bottom {
        padding: 24px 0;
        display: grid;
        justify-items: start;
    }

    .footer-bottom nav {
        gap: 12px;
    }

    .cookie-banner.show {
        display: grid;
    }
}
