*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #040b14;
    --bg-2: #081827;
    --safe-bg: #040b14;
    --header-glass: rgba(5, 12, 22, 0.80);
    --footer-bg: transparent;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: rgba(245, 247, 251, 0.72);
    --muted-2: rgba(245, 247, 251, 0.55);
    --accent: #a0833c;
    --accent-2: #d7bb74;
    --danger: #ffb7b7;
    --success: #d9ffe8;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1200px;
    --header-h: 84px;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: #040b14 !important;
    background-color: #040b14 !important;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    position: relative;
    min-height: 100vh;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background: transparent !important;
    background-color: transparent !important;
    isolation: isolate;
}

body.modal-open {
    overflow: hidden;
}

section[id] {
    scroll-margin-top: 120px;
}

body::before,
body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 9999;
}

body::before {
    top: 0;
    height: env(safe-area-inset-top, 0px);
    background: #040b14;
}

body::after {
    bottom: 0;
    height: env(safe-area-inset-bottom, 0px);
    background: #040b14;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    background:
        radial-gradient(circle at top right, rgba(160, 131, 60, 0.11), transparent 24%),
        radial-gradient(circle at left top, rgba(24, 74, 140, 0.12), transparent 32%),
        radial-gradient(circle at center top, rgba(40, 98, 170, 0.03), transparent 34%),
        linear-gradient(180deg, #030912 0%, #081827 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.9;
}

.bg-orb-1 {
    width: 320px;
    height: 320px;
    right: -80px;
    top: 70px;
    background: rgba(170, 138, 66, 0.09);
}

.bg-orb-2 {
    width: 260px;
    height: 260px;
    left: -70px;
    top: 300px;
    background: rgba(34, 88, 150, 0.11);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.74), transparent);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.74), transparent);
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: transparent;
    border-top: none;
    border-bottom: none;
}

.site-header {
    position: sticky;
    top: env(safe-area-inset-top, 0px);
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: var(--header-glass);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: 0.2s ease;
    font-size: 15px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}

.main-nav .nav-link.is-active {
    color: #f7e0a1;
    background: rgba(160,131,60,0.14);
    border-color: rgba(160,131,60,0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.08);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    display: block;
}

.hero {
    padding-top: 58px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(160,131,60,0.14);
    border: 1px solid rgba(160,131,60,0.20);
    color: #f7e0a1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-box > .eyebrow,
.contact-form-head .eyebrow {
    align-self: flex-start;
}

.hero h1,
.section-head h2,
.cta-box h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    max-width: 760px;
}

.hero-text {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted);
    margin: 22px 0 0;
    max-width: 720px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 15px;
    border: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #091d35;
    box-shadow: 0 16px 34px rgba(160,131,60,0.25);
}

.btn-primary:hover {
    box-shadow: 0 22px 42px rgba(160,131,60,0.30);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
}

/* Professional hero product visual */
.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: min(100%, 560px);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    isolation: isolate;
}

.product-showcase-glow {
    position: absolute;
    inset: 52px 28px 72px;
    z-index: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at 62% 28%, rgba(215, 187, 116, 0.16), transparent 36%),
        radial-gradient(circle at 44% 62%, rgba(66, 132, 210, 0.16), transparent 45%);
    filter: blur(34px);
    opacity: 0.95;
    pointer-events: none;
}

.product-window {
    position: relative;
    z-index: 3;
    width: min(100%, 500px);
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(160,131,60,0.10), transparent 32%),
        linear-gradient(180deg, rgba(13, 25, 42, 0.96), rgba(6, 15, 28, 0.96));
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow:
        0 34px 90px rgba(0,0,0,0.46),
        0 0 0 1px rgba(255,255,255,0.035) inset,
        0 18px 46px rgba(10, 22, 38, 0.34);
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    animation: productWindowFloat 7s ease-in-out infinite;
}

.product-window::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.045) 45%, transparent 62%),
        radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 34%);
    pointer-events: none;
}

.product-window-top,
.product-window-body {
    position: relative;
    z-index: 2;
}

.product-window-top {
    min-height: 58px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
}

.product-dots {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.product-dots span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: block;
}

.product-dots span:nth-child(1) {
    background: #ff6b6b;
}

.product-dots span:nth-child(2) {
    background: #ffd166;
}

.product-dots span:nth-child(3) {
    background: #6ee7a2;
}

.product-window-title {
    min-width: 0;
    color: rgba(245,247,251,0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d9ffe8;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.product-status i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #6ee7a2;
    box-shadow: 0 0 0 0 rgba(110,231,162,0.42);
    animation: productStatusPulse 1.9s ease-in-out infinite;
}

.product-window-body {
    min-height: 386px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
}

.product-sidebar {
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.product-sidebar-logo-wrap {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(215,187,116,0.18), transparent 66%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(215,187,116,0.18);
    box-shadow: 0 14px 28px rgba(0,0,0,0.20);
}

.product-sidebar-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 8px rgba(215,187,116,0.14))
        drop-shadow(0 0 14px rgba(255,255,255,0.05));
}

.product-nav-line {
    width: 44px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
}

.product-nav-line.active {
    background: linear-gradient(90deg, rgba(160,131,60,0.92), rgba(215,187,116,0.84));
    box-shadow: 0 0 18px rgba(215,187,116,0.14);
}

.product-nav-line.short {
    width: 30px;
}

.product-content {
    min-width: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-content-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.product-kicker,
.product-title-line,
.product-title-line.small,
.product-action-pill {
    display: block;
    border-radius: 999px;
}

.product-kicker {
    width: 86px;
    height: 7px;
    margin-bottom: 12px;
    background: rgba(215,187,116,0.44);
    box-shadow: 0 0 14px rgba(215,187,116,0.10);
}

.product-title-line {
    width: 210px;
    max-width: 100%;
    height: 15px;
    margin-bottom: 9px;
    background: linear-gradient(90deg, rgba(245,247,251,0.82), rgba(245,247,251,0.24));
}

.product-title-line.small {
    width: 146px;
    height: 9px;
    background: rgba(245,247,251,0.18);
}

.product-action-pill {
    width: 84px;
    height: 34px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(160,131,60,0.94), rgba(215,187,116,0.84));
    box-shadow: 0 14px 28px rgba(160,131,60,0.16);
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-stat-card {
    min-height: 82px;
    padding: 13px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.product-stat-card span,
.product-stat-card strong,
.product-stat-card i {
    display: block;
    border-radius: 999px;
}

.product-stat-card span {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    background: rgba(215,187,116,0.16);
    border: 1px solid rgba(215,187,116,0.14);
}

.product-stat-card strong {
    width: 72%;
    height: 9px;
    margin-bottom: 8px;
    background: rgba(245,247,251,0.34);
}

.product-stat-card i {
    width: 54%;
    height: 6px;
    background: rgba(245,247,251,0.12);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 12px;
    align-items: stretch;
}

.product-preview-card {
    min-height: 158px;
    padding: 14px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(215,187,116,0.12), transparent 44%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.032));
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    align-content: end;
    gap: 8px;
}

.product-preview-card span,
.product-preview-card i {
    display: block;
    border-radius: 999px;
}

.product-preview-card span {
    width: 74px;
    height: 74px;
    margin: 0 auto 12px;
    border-radius: 26px;
    background:
        radial-gradient(circle at center, rgba(215,187,116,0.26), transparent 62%),
        rgba(255,255,255,0.055);
    border: 1px solid rgba(215,187,116,0.18);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.product-preview-card i {
    height: 7px;
    background: rgba(245,247,251,0.13);
}

.product-preview-card i:nth-child(2) {
    width: 92%;
}

.product-preview-card i:nth-child(3) {
    width: 68%;
}

.product-preview-card i:nth-child(4) {
    width: 48%;
    background: rgba(215,187,116,0.25);
}

.product-preview-stack {
    display: grid;
    gap: 10px;
}

.product-preview-stack div {
    min-height: 46px;
    padding: 11px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.product-preview-stack span,
.product-preview-stack i {
    display: block;
    border-radius: 999px;
}

.product-preview-stack span {
    width: 68%;
    height: 8px;
    margin-bottom: 8px;
    background: rgba(245,247,251,0.18);
}

.product-preview-stack i {
    width: 46%;
    height: 6px;
    background: rgba(215,187,116,0.20);
}

.product-floating-badge {
    position: absolute;
    z-index: 4;
    min-width: 114px;
    padding: 12px 14px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(215,187,116,0.12), transparent 48%),
        rgba(8, 18, 31, 0.82);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 20px 42px rgba(0,0,0,0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: none;
}

.product-floating-badge strong,
.product-floating-badge span {
    display: block;
}

.product-floating-badge strong {
    color: #f7e0a1;
    font-size: 17px;
    line-height: 1;
    margin-bottom: 5px;
}

.product-floating-badge span {
    color: rgba(245,247,251,0.68);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.product-floating-badge-1 {
    left: 0;
    bottom: 112px;
    animation: productBadgeFloat 6.4s ease-in-out infinite;
}

.product-floating-badge-2 {
    right: 4px;
    top: 92px;
    animation: productBadgeFloat 7s ease-in-out infinite reverse;
}

.product-base-shadow {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 36px;
    width: 360px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.36), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

@keyframes productWindowFloat {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: rotateY(-4deg) rotateX(1.5deg) translateY(-8px);
    }
}

@keyframes productBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes productStatusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(110,231,162,0.42);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(110,231,162,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(110,231,162,0);
    }
}

.section-head {
    max-width: 720px;
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 46px);
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.services-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 24px 20px;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px 22px 20px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.service-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(160,131,60,0.24);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.service-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(160,131,60,0.18);
    box-shadow: 0 20px 36px rgba(0,0,0,0.20);
}

.service-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    color: rgba(215, 187, 116, 0.92);
    opacity: 1;
    transition:
        color 0.18s ease,
        transform 0.18s ease,
        opacity 0.18s ease;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    display: block;
    overflow: visible;
    stroke: currentColor;
}

.service-card:hover .service-icon {
    color: var(--accent-2);
    transform: translateY(-1px) scale(1.04);
}

.service-card-head h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.service-card p,
.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
    padding-top: 0;
    border-top: none;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--accent-2);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
        transform 0.18s ease,
        color 0.18s ease;
    box-shadow: none;
}

.service-detail-btn::after {
    content: "→";
    margin-left: 8px;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.18s ease;
}

.service-detail-btn:hover {
    transform: translateX(2px);
    background: transparent;
    border-color: transparent;
    color: var(--accent-2);
    box-shadow: none;
}

.service-detail-btn:hover::after {
    transform: translateX(2px);
}

.divider-section {
    padding-top: 6px;
    padding-bottom: 6px;
}

.section-divider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
}

.section-divider-line {
    position: relative;
    flex: 1 1 auto;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.08) 12%,
        rgba(160,131,60,0.34) 50%,
        rgba(255,255,255,0.08) 88%,
        transparent 100%
    );
    overflow: hidden;
}

.section-divider-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,187,116,0.0) 20%,
        rgba(215,187,116,0.85) 50%,
        rgba(215,187,116,0.0) 80%,
        transparent 100%
    );
    filter: blur(8px);
    opacity: 0.75;
}

.section-divider-center {
    position: relative;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
}

.section-divider-glow {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(215,187,116,0.26) 0%, rgba(160,131,60,0.10) 42%, rgba(16,35,58,0.02) 72%, transparent 100%);
    filter: blur(16px);
    pointer-events: none;
}

.section-divider-badge {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
        linear-gradient(180deg, rgba(10,20,34,0.96), rgba(7,15,27,0.98));
    border: 1px solid rgba(215,187,116,0.22);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 10px 30px rgba(0,0,0,0.30),
        0 0 32px rgba(160,131,60,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.section-divider-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 8px rgba(215,187,116,0.18))
        drop-shadow(0 0 14px rgba(160,131,60,0.08));
}

.cta-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: stretch;
}

.cta-box,
.contact-form-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(160,131,60,0.16), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 30px;
    padding: 34px 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.cta-box {
    display: flex;
    flex-direction: column;
}

.cta-box h2 {
    font-size: clamp(30px, 4.8vw, 50px);
}

.cta-box p {
    margin: 16px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}

.contact-copy {
    min-height: 100%;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-point-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.contact-point-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.contact-point-card span {
    color: var(--muted);
    font-size: 14px;
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: #f5f7fb;
    border-radius: 16px;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(160,131,60,0.24);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.social-icon-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.contact-form-card {
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.contact-form-head h3 {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.1;
}

.contact-form-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.form-alert {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.form-alert-error {
    background: rgba(200,60,60,0.14);
    border: 1px solid rgba(255,90,90,0.25);
    color: var(--danger);
}

.form-alert-success {
    background: rgba(40,150,90,0.14);
    border: 1px solid rgba(80,220,140,0.25);
    color: var(--success);
}

.contact-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label,
.option-group legend {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}

.req {
    color: #f7e0a1;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="number"],
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 16px;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card select {
    background-color: rgba(13, 24, 39, 0.96);
    color: #ffffff;
    color-scheme: dark;
}

.contact-form-card select option,
.contact-form-card select optgroup {
    background-color: #0b1726;
    color: #ffffff;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 132px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(245,247,251,0.45);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: rgba(160,131,60,0.9);
    box-shadow: 0 0 0 4px rgba(160,131,60,0.12);
    background: rgba(255,255,255,0.07);
}

.dynamic-service-fields {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.service-detail-block[hidden],
.form-consent-wrap[hidden],
.nested-detail-field[hidden],
.form-note[hidden],
.spam-modal[hidden],
#macosNotice[hidden],
#programBriefWrap[hidden] {
    display: none !important;
}

.service-detail-block {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.option-group {
    margin: 0;
    padding: 0;
    border: none;
    display: grid;
    gap: 12px;
}

.option-group legend {
    margin-bottom: 12px;
    padding: 0;
}

.option-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.option-card:hover {
    transform: translateY(-2px);
    border-color: rgba(160,131,60,0.22);
    background: rgba(255,255,255,0.06);
}

.option-card input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #d7bb74;
    flex: 0 0 auto;
}

.option-card span {
    display: block;
}

.option-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #fff;
}

.option-card small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.nested-detail-field {
    margin-top: 16px;
}

.form-consent-wrap {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #d7bb74;
    flex: 0 0 auto;
}

.checkbox-line span {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.5;
}

.form-actions {
    margin-top: 20px;
    margin-bottom: 18px;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
}

.form-actions .btn {
    min-width: 220px;
}

.form-note {
    margin-top: auto;
    padding: 18px 16px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    flex-shrink: 0;
}

.form-note-warning {
    background: rgba(160,131,60,0.10);
    border-color: rgba(160,131,60,0.22);
    color: #f3e3b1;
    margin-top: 16px;
}

.spam-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.spam-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 14, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.spam-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    padding: 26px 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(160,131,60,0.16), transparent 28%),
        linear-gradient(180deg, rgba(12,24,40,0.98), rgba(8,18,31,0.96));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 60px rgba(0,0,0,0.40);
}

.spam-modal-dialog h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.1;
}

.spam-modal-text {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
}

#spamQuestion {
    display: inline-block;
    margin-top: 4px;
    color: #fff;
    font-size: 18px;
}

.spam-modal-error {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(200,60,60,0.14);
    border: 1px solid rgba(255,90,90,0.25);
    color: var(--danger);
    font-size: 14px;
}

.spam-modal-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.faq-head {
    max-width: 100%;
    margin-bottom: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(160,131,60,0.24);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.faq-item[open]:not(.is-closing),
.faq-item.is-open,
.faq-item.is-opening {
    border-color: rgba(160,131,60,0.30);
    background:
        radial-gradient(circle at top right, rgba(160,131,60,0.12), transparent 34%),
        rgba(255,255,255,0.07);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.22),
        0 0 0 1px rgba(215,187,116,0.05) inset;
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    transition:
        color 0.22s ease,
        background 0.22s ease;
}

.faq-item[open]:not(.is-closing) .faq-question,
.faq-item.is-open .faq-question,
.faq-item.is-opening .faq-question {
    color: #fff;
    background: rgba(255,255,255,0.02);
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 10px;
    flex: 0 0 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #f7e0a1;
    border-radius: 999px;
    transition:
        transform 0.26s ease,
        opacity 0.26s ease,
        background 0.26s ease;
}

.faq-icon::before {
    left: 0;
    transform: translateY(-50%) rotate(35deg);
    transform-origin: left center;
}

.faq-icon::after {
    right: 0;
    transform: translateY(-50%) rotate(-35deg);
    transform-origin: right center;
}

.faq-item[open]:not(.is-closing) .faq-icon::before,
.faq-item.is-open .faq-icon::before,
.faq-item.is-opening .faq-icon::before {
    transform: translateY(-50%) rotate(-35deg);
}

.faq-item[open]:not(.is-closing) .faq-icon::after,
.faq-item.is-open .faq-icon::after,
.faq-item.is-opening .faq-icon::after {
    transform: translateY(-50%) rotate(35deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open]:not(.is-closing) .faq-answer,
.faq-item.is-open .faq-answer,
.faq-item.is-opening .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-closing .faq-answer {
    grid-template-rows: 0fr;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 20px 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.28s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open]:not(.is-closing) .faq-answer-inner,
.faq-item.is-open .faq-answer-inner,
.faq-item.is-opening .faq-answer-inner {
    padding: 0 20px 22px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.is-closing .faq-answer-inner {
    padding: 0 20px 0;
    opacity: 0;
    transform: translateY(-8px);
}

.faq-answer-inner::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 0 16px;
    background: linear-gradient(90deg, rgba(215,187,116,0.24), rgba(255,255,255,0.04), transparent);
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.site-footer {
    border-top: none;
    background: transparent;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    margin-bottom: 2px;
}

.footer-brand p,
.footer-copy {
    margin: 0;
    color: var(--muted-2);
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

@media (max-width: 1100px) {
    .hero-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .contact-layout {
        gap: 30px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        width: min(100%, 520px);
        min-height: 500px;
    }

    .product-window {
        width: min(100%, 470px);
    }

    .product-floating-badge-1 {
        left: -4px;
    }

    .product-floating-badge-2 {
        right: -2px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 76px;
    }

    html {
        scroll-padding-top: 170px;
    }

    section[id] {
        scroll-margin-top: 170px;
    }

    .section {
        padding: 70px 0;
    }

    .header-inner {
        min-height: auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
        padding: 12px 0 14px;
    }

    .nav-toggle {
        display: none !important;
    }

    .main-nav {
        width: 100%;
        order: 3;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        padding-top: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        flex: 0 0 auto;
        text-align: center;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255,255,255,0.04);
        white-space: nowrap;
    }

    .hero-grid,
    .services-grid,
    .benefits-grid,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 34px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-actions,
    .cta-actions,
    .spam-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card,
    .benefit-card,
    .faq-item,
    .cta-box,
    .contact-form-card,
    .service-detail-block {
        border-radius: 20px;
    }

    .hero-product-visual {
        margin-top: 16px;
    }

    .product-showcase {
        min-height: 470px;
    }

    .product-window {
        width: min(100%, 520px);
        transform: none;
        border-radius: 26px;
    }

    .product-window-body {
        min-height: 360px;
    }

    .product-floating-badge {
        display: none;
    }

    .product-base-shadow {
        bottom: 24px;
    }

    .service-card {
        padding: 20px 18px 18px;
    }

    .service-card-head {
        gap: 12px;
        margin-bottom: 14px;
    }

    .service-card-head h3 {
        font-size: 20px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .service-icon svg {
        width: 46px;
        height: 46px;
    }

    .service-card-footer {
        margin-top: 18px;
        padding-top: 0;
        justify-content: flex-end;
    }

    .service-detail-btn {
        width: auto;
        min-width: 0;
        min-height: auto;
        padding: 0;
    }

    .divider-section {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-divider {
        gap: 12px;
    }

    .section-divider-center {
        width: 78px;
        height: 78px;
    }

    .section-divider-glow {
        width: 70px;
        height: 70px;
    }

    .section-divider-badge {
        width: 60px;
        height: 60px;
    }

    .section-divider-logo {
        width: 42px;
        height: 42px;
    }

    .faq-question {
        font-size: 19px;
        padding: 20px 18px;
    }

    .faq-answer-inner {
        padding: 0 18px 0;
    }

    .faq-item[open]:not(.is-closing) .faq-answer-inner,
    .faq-item.is-open .faq-answer-inner,
    .faq-item.is-opening .faq-answer-inner {
        padding: 0 18px 20px;
    }

    .faq-item.is-closing .faq-answer-inner {
        padding: 0 18px 0;
    }

    .form-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .form-actions {
        margin-bottom: 14px;
    }

    .form-note {
        margin-top: 14px;
        padding: 14px 16px;
    }

    .spam-modal {
        align-items: flex-start;
        justify-content: flex-start;
        padding:
            calc(env(safe-area-inset-top, 0px) + var(--header-h) + 44px)
            16px
            20px;
    }

    .spam-modal-dialog {
        padding: 22px 18px;
        border-radius: 20px;
        width: min(100%, 100%);
        max-height: calc(100vh - env(safe-area-inset-top, 0px) - var(--header-h) - 64px);
        overflow-y: auto;
        margin-top: 0;
    }

    .contact-socials {
        justify-content: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand-text {
        font-size: 16px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .hero-text,
    .section-head p,
    .cta-box p {
        font-size: 15px;
    }

    .product-showcase {
        min-height: 405px;
    }

    .product-window {
        border-radius: 22px;
    }

    .product-window-top {
        min-height: 52px;
        padding: 12px 13px;
        grid-template-columns: auto 1fr;
    }

    .product-status {
        display: none;
    }

    .product-window-title {
        font-size: 11px;
    }

    .product-window-body {
        min-height: 318px;
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .product-sidebar {
        padding: 16px 11px;
        gap: 12px;
    }

    .product-sidebar-logo-wrap {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .product-sidebar-logo {
        width: 31px;
        height: 31px;
    }

    .product-nav-line {
        width: 34px;
        height: 7px;
    }

    .product-nav-line.short {
        width: 24px;
    }

    .product-content {
        padding: 16px 14px;
        gap: 14px;
    }

    .product-action-pill {
        width: 62px;
        height: 28px;
    }

    .product-title-line {
        width: 170px;
        height: 13px;
    }

    .product-title-line.small {
        width: 116px;
        height: 8px;
    }

    .product-stats {
        gap: 8px;
    }

    .product-stat-card {
        min-height: 72px;
        padding: 11px 9px;
        border-radius: 15px;
    }

    .product-stat-card span {
        width: 22px;
        height: 22px;
        margin-bottom: 9px;
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-preview-card {
        min-height: 118px;
        border-radius: 18px;
    }

    .product-preview-card span {
        width: 52px;
        height: 52px;
        border-radius: 20px;
        margin-bottom: 8px;
    }

    .product-preview-stack {
        display: none;
    }

    .product-base-shadow {
        width: 260px;
        bottom: 16px;
    }

    .service-card-head {
        gap: 12px;
    }

    .service-card h3,
    .benefit-card h3,
    .faq-question {
        font-size: 19px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .service-icon svg {
        width: 44px;
        height: 44px;
    }

    .cta-box,
    .contact-form-card {
        padding: 26px 18px;
    }

    .main-nav a {
        flex: 0 0 auto;
    }

    .section-divider {
        gap: 10px;
    }

    .section-divider-line::after {
        opacity: 0.6;
    }

    .section-divider-center {
        width: 72px;
        height: 72px;
    }

    .section-divider-badge {
        width: 56px;
        height: 56px;
    }

    .section-divider-logo {
        width: 38px;
        height: 38px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 18px;
    }

    .faq-answer-inner {
        padding: 0 16px 0;
    }

    .faq-item[open]:not(.is-closing) .faq-answer-inner,
    .faq-item.is-open .faq-answer-inner,
    .faq-item.is-opening .faq-answer-inner {
        padding: 0 16px 18px;
    }

    .faq-item.is-closing .faq-answer-inner {
        padding: 0 16px 0;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card input[type="number"],
    .contact-form-card select,
    .contact-form-card textarea {
        font-size: 16px;
    }

    .spam-modal {
        padding:
            calc(env(safe-area-inset-top, 0px) + var(--header-h) + 36px)
            12px
            16px;
    }

    .spam-modal-dialog {
        max-height: calc(100vh - env(safe-area-inset-top, 0px) - var(--header-h) - 52px);
    }
}

@media (max-width: 390px) {
    .product-showcase {
        min-height: 380px;
    }

    .product-window-body {
        min-height: 296px;
    }

    .product-content {
        padding: 14px 12px;
    }

    .product-title-line {
        width: 145px;
    }

    .product-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-stat-card:nth-child(3) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}