/* Amaanat � brand: Deep Navy #0B2E5E, Orange #E67E22 */
:root {
    --navy: #0b2e5e;
    --orange: #e67e22;
    --white: #ffffff;
    --gray-dark: #2e2e2e;
    --gray-mid: #5c5c5c;
    --gray-light: #f4f6f9;
    --gray-border: #e2e6ed;
    --shadow: 0 8px 32px rgba(11, 46, 94, 0.09);
    --shadow-hover: 0 22px 56px rgba(11, 46, 94, 0.14);
    --shadow-orange: 0 4px 22px rgba(230, 126, 34, 0.32);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 18px;
    --font-heading: "Montserrat", "Poppins", system-ui, sans-serif;
    --font-body: "Poppins", "Inter", system-ui, sans-serif;
    --font-ui: "Inter", "Poppins", system-ui, sans-serif;
    --max-width: 1160px;
    --surface-page: linear-gradient(165deg, #f6f8fc 0%, #ffffff 42%, #f0f3fa 100%);
    --surface-glass: rgba(255, 255, 255, 0.78);
    --surface-glass-border: rgba(11, 46, 94, 0.09);
    --mesh-line: rgba(11, 46, 94, 0.038);
    --mesh-line-strong: rgba(255, 255, 255, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--surface-page);
    background-attachment: fixed;
}

@media (max-width: 900px) {
    body {
        background-attachment: scroll;
    }
}

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

a {
    color: var(--navy);
    text-decoration: none;
}

a:hover {
    color: var(--orange);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-top: 0;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); }

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1rem;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border-bottom: 1px solid rgba(11, 46, 94, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 4px 28px rgba(11, 46, 94, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
}

.brand-logo {
    width: auto;
    max-height: 52px;
    object-fit: contain;
    transition: opacity 0.2s;
}

.brand:hover .brand-logo {
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
}

.site-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.25rem;
}

.site-nav .nav-list > li > a {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--orange);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.55rem 1.15rem !important;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(11, 46, 94, 0.28);
}

.nav-cta:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(230, 126, 34, 0.38);
}

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

.nav-sub {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 228px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(11, 46, 94, 0.08);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-has-sub:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-sub a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(11, 46, 94, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .site-nav.is-open {
        max-height: 85vh;
        overflow-y: auto;
    }

    .site-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
    }

    .site-nav .nav-list > li > a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-border);
    }

    .nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .nav-has-sub:hover .nav-sub {
        transform: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.78rem 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: #d56f18;
    border-color: #d56f18;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(230, 126, 34, 0.42);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    color: var(--navy);
    border-color: rgba(11, 46, 94, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11, 46, 94, 0.22);
}

/* Hero (home) */
.hero {
    --hero-orange-glow: rgba(230, 126, 34, 0.22);
    background: var(--navy);
    color: var(--white);
    padding: clamp(3.25rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5rem);
    position: relative;
    overflow: hidden;
}

.hero__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(59, 130, 200, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 80%, var(--hero-orange-glow) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__ambient {
        animation: heroAmbient 18s ease-in-out infinite alternate;
    }
}

@keyframes heroAmbient {
    0% { opacity: 1; transform: scale(1) translate(0, 0); }
    100% { opacity: 0.92; transform: scale(1.05) translate(-2%, 1%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__ambient {
        animation: none;
    }
}

.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual-caption {
        text-align: center;
    }
}

.hero__copy {
    max-width: 36rem;
}

@media (max-width: 900px) {
    .hero__copy {
        max-width: none;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(230, 126, 34, 0.85);
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4.8vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0 0 1.15rem;
    text-wrap: balance;
}

.hero__title-accent {
    background: linear-gradient(120deg, #fff 0%, rgba(255, 255, 255, 0.88) 40%, #ffc48a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
    .hero__title-accent {
        color: var(--orange);
        -webkit-text-fill-color: unset;
    }
}

.hero__lead {
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.85rem;
    max-width: 38ch;
}

@media (max-width: 900px) {
    .hero__lead {
        max-width: 42ch;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
    .hero-actions {
        justify-content: center;
    }
}

.btn-hero-primary {
    padding: 0.85rem 1.65rem;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(230, 126, 34, 0.35);
}

.btn-hero-primary:hover {
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.45);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.65rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.hero__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero__trust li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.35);
    flex-shrink: 0;
}

.hero__visual {
    position: relative;
    perspective: 1200px;
}

.hero__glow {
    position: absolute;
    inset: -20% -10% -10% -10%;
    background: radial-gradient(circle at 50% 50%, rgba(230, 126, 34, 0.2) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero-mock {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.08),
        0 24px 48px -12px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotateY(-6deg) rotateX(4deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@media (max-width: 900px) {
    .hero-mock {
        transform: none;
        max-width: 420px;
        margin-inline: auto;
    }
}

.hero__visual:hover .hero-mock {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-4px);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 32px 64px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

@media (max-width: 900px) {
    .hero__visual:hover .hero-mock {
        transform: translateY(-4px);
    }
}

.hero-mock__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mock__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hero-mock__chrome span:first-child {
    background: #ff5f57;
    opacity: 0.85;
}

.hero-mock__chrome span:nth-child(2) {
    background: #febc2e;
    opacity: 0.85;
}

.hero-mock__chrome span:nth-child(3) {
    background: #28c840;
    opacity: 0.85;
}

.hero-mock__body {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 220px;
}

@media (min-width: 640px) {
    .hero-mock__body {
        min-height: 260px;
    }
}

.hero-mock__sidebar {
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(11, 46, 94, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mock__nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-mock__nav-item.is-active {
    background: var(--orange);
    opacity: 0.95;
}

.hero-mock__main {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-mock__row--stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.hero-mock__stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.5rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-mock__stat--accent {
    background: rgba(230, 126, 34, 0.2);
    border-color: rgba(230, 126, 34, 0.35);
}

.hero-mock__stat-label {
    font-size: 0.6rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}

.hero-mock__stat-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

.hero-mock__chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    min-height: 72px;
    padding: 0.35rem 0.15rem 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mock__bar {
    flex: 1;
    max-width: 100%;
    height: var(--h, 50%);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.12) 100%);
    align-self: flex-end;
}

.hero-mock__bar--hot {
    background: linear-gradient(180deg, #f4a45e 0%, var(--orange) 100%);
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.35);
}

.hero-mock__cards {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6px;
}

.hero-mock__mini {
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mock__mini--wide {
    grid-column: span 1;
}

.hero__visual-caption {
    margin: 1rem 0 0;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
}

@media (max-width: 900px) {
    .hero__visual-caption {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-mock {
        transform: none;
    }

    .hero__visual:hover .hero-mock {
        transform: none;
    }
}

/* Image placeholders */
.img-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(152deg, #ffffff 0%, var(--gray-light) 48%, #dce4f0 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--surface-glass-border);
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.img-placeholder:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 126, 34, 0.28);
}

.img-placeholder--tall {
    aspect-ratio: 4 / 5;
}

.img-placeholder--wide {
    aspect-ratio: 21 / 9;
}

.img-placeholder--square {
    aspect-ratio: 1;
}

.section {
    padding: clamp(3rem, 6vw, 4.75rem) 0;
    position: relative;
}

.section--alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(158deg, #e8ecf4 0%, #f2f5fa 42%, #dde5f2 100%);
}

.section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(var(--mesh-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--mesh-line) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.section--alt::after {
    content: "";
    position: absolute;
    width: min(70vw, 520px);
    height: 70%;
    top: -25%;
    right: -8%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.09) 0%, transparent 68%);
    pointer-events: none;
}

.section--alt > * {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header .sub {
    color: var(--gray-mid);
    font-size: 1.05rem;
    margin: 0;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--surface-glass-border);
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(230, 126, 34, 0.12);
    border-color: rgba(230, 126, 34, 0.22);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(145deg, #103d78 0%, var(--navy) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    box-shadow: 0 10px 28px rgba(11, 46, 94, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Two column feature rows */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.feature-row:nth-child(even) .feature-row-text {
    order: 2;
}

.feature-row:nth-child(even) .feature-row-media {
    order: 1;
}

@media (max-width: 768px) {
    .feature-row,
    .feature-row:nth-child(even) .feature-row-text,
    .feature-row:nth-child(even) .feature-row-media {
        grid-template-columns: 1fr;
        order: unset;
    }
}

/* Lists with icons */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.icon-list li::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.28);
}

/* Tables */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-glass-border);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-ui);
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 0.9rem 1.05rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-border);
}

.data-table th {
    background: linear-gradient(180deg, #0f3c78 0%, var(--navy) 55%, #09254a 100%);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 0.82rem;
}

.data-table tbody tr {
    transition: background 0.2s ease;
}

.data-table tbody tr:hover {
    background: rgba(230, 126, 34, 0.07);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* CTA band */
.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 20% 30%, rgba(59, 130, 200, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(230, 126, 34, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(var(--mesh-line-strong) 1px, transparent 1px),
        linear-gradient(90deg, var(--mesh-line-strong) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 15%, transparent 75%);
    pointer-events: none;
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-band p {
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

@media (prefers-reduced-motion: no-preference) {
    .cta-band::before {
        animation: ctaAmbient 16s ease-in-out infinite alternate;
    }
}

@keyframes ctaAmbient {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.88; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .cta-band::before {
        animation: none;
    }
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.form-grid--wide {
    max-width: 720px;
}

label {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 3px rgba(11, 46, 94, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.22), 0 4px 16px rgba(11, 46, 94, 0.06);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-item input {
    width: auto;
    accent-color: var(--orange);
}

.form-actions {
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.35rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.alert-success {
    background: rgba(232, 245, 233, 0.92);
    color: #1b5e20;
    border: 1px solid rgba(165, 214, 167, 0.85);
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.08);
}

.alert-error {
    background: rgba(255, 235, 238, 0.94);
    color: #b71c1c;
    border: 1px solid rgba(239, 154, 154, 0.85);
    box-shadow: 0 4px 20px rgba(183, 28, 28, 0.07);
}

/* Support case blocks */
.case-block {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
    align-items: start;
    padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-glass-border);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 126, 34, 0.18);
}

@media (max-width: 768px) {
    .case-block {
        grid-template-columns: 1fr;
    }
}

.case-block__media {
    margin: 0;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 280px;
    width: 100%;
    justify-self: end;
    box-shadow: var(--shadow);
    border: 1px solid var(--surface-glass-border);
    background: var(--gray-light);
}

.case-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .case-block__media {
        justify-self: center;
        max-width: min(280px, 100%);
    }
}

.support-section-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--surface-glass-border);
    object-fit: cover;
}

.support-integrated-row .feature-row-media {
    min-height: 0;
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .case-meta {
        grid-template-columns: 1fr;
    }
}

.meta-pill {
    background: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-family: var(--font-ui);
    border: 1px solid rgba(11, 46, 94, 0.06);
    box-shadow: 0 1px 4px rgba(11, 46, 94, 0.04);
}

.meta-pill strong {
    display: block;
    color: var(--navy);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1.35rem 1rem;
    background: var(--surface-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-glass-border);
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 2px 18px rgba(230, 126, 34, 0.25);
}

.stat .lbl {
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin-top: 0.35rem;
}

/* Features overview (all features page) */
.feature-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .feature-overview-grid {
        grid-template-columns: 1fr;
    }
}

.feature-overview-card {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem clamp(1.25rem, 4vw, 2rem);
    box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
    scroll-margin-top: 96px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(230, 126, 34, 0.1);
    border-color: rgba(230, 126, 34, 0.22);
}

.feature-overview-card h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    margin-bottom: 0.35rem;
}

.feature-overview-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-overview-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #103d78 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.35rem;
    box-shadow: 0 10px 28px rgba(11, 46, 94, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.feature-overview-lead {
    margin: 0;
    color: var(--gray-mid);
    font-size: 0.95rem;
}

.feature-overview-list {
    margin-bottom: 1.25rem;
}

.feature-overview-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.section-header .sub a {
    font-weight: 600;
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    padding: clamp(2.25rem, 5vw, 3rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 15% 25%, rgba(59, 130, 200, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 65% 50% at 88% 78%, rgba(230, 126, 34, 0.16) 0%, transparent 52%);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(var(--mesh-line-strong) 1px, transparent 1px),
        linear-gradient(90deg, var(--mesh-line-strong) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 35%, black 20%, transparent 72%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-hero .crumb {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.page-hero .crumb a {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero .crumb a:hover {
    color: var(--orange);
}

.page-hero .sub {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
    padding-top: 3rem;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(230, 126, 34, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(59, 130, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(var(--mesh-line-strong) 1px, transparent 1px),
        linear-gradient(90deg, var(--mesh-line-strong) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

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

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

.footer-logo {
    background: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    max-height: 56px;
    width: auto;
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.footer-tagline {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

.footer-heading {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-cta-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0;
}

.footer-bottom-inner {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.75;
}

.footer-bottom p {
    margin: 0;
}

.site-footer .btn-primary {
    margin-top: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
    .card:hover,
    .case-block:hover,
    .stat:hover,
    .feature-overview-card:hover,
    .img-placeholder:hover {
        transform: none;
    }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 1rem; }

/* Home Page Support Highlight Section */
/* Card Images styling for absolute consistency and premium look */
.card img,
.feature-overview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem !important;
    box-shadow: 0 4px 12px rgba(11, 46, 94, 0.05);
    border: 1px solid var(--surface-glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover img,
.feature-overview-card:hover img {
    transform: scale(1.03);
}

/* Home Page Support Highlight Section */
.support-highlight-section {
    background: linear-gradient(180deg, rgba(246, 248, 252, 0) 0%, rgba(240, 243, 250, 0.45) 100%);
    position: relative;
    overflow: hidden;
}

.support-highlight-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(230, 126, 34, 0.08);
    color: var(--orange);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(230, 126, 34, 0.15);
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.05);
}

.support-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.support-card p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.5;
}

.workflow-steps {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(11, 46, 94, 0.08);
}

.workflow-step-pill {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(11, 46, 94, 0.04);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(11, 46, 94, 0.03);
}

.workflow-arrow {
    font-size: 0.7rem;
    color: var(--orange);
    opacity: 0.7;
}
