:root {
    --bg-dark: #0b1020;
    --bg-deep: #0f172d;
    --bg-soft: #f6f8fc;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --text: #111827;
    --text-soft: #5f6c87;
    --text-inverse: #f8fafc;
    --line: rgba(148, 163, 184, 0.18);
    --primary: #6d5efc;
    --primary-dark: #5748e8;
    --secondary: #14c5a2;
    --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.18);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg, #f7f9fd 0%, #f3f6fb 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(20, 197, 162, 0.18), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(109, 94, 252, 0.22), transparent 30%),
        linear-gradient(180deg, #0a1020 0%, #111a33 100%);
    color: var(--text-inverse);
}
.site-header-shared {
    overflow: visible;
    z-index: 30;
}
.site-header-shared {
    padding-bottom: 10px;
}
.site-header::before,
.site-header::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}
.site-header::before {
    width: 320px;
    height: 320px;
    top: -110px;
    right: 0;
    background: rgba(109, 94, 252, 0.18);
}
.site-header::after {
    width: 260px;
    height: 260px;
    bottom: 80px;
    left: -80px;
    background: rgba(20, 197, 162, 0.14);
}
.topbar, .navbar, .hero-layout, .brand-band-inner, .section-head, .solutions-layout, .faq-layout, .footer-inner { position: relative; z-index: 1; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    font-size: 13px;
    color: rgba(248, 250, 252, 0.72);
}
.topbar-links, .nav-links, .nav-actions, .hero-actions, .hero-proof, .footer-links, .cta-actions {
    display: flex;
    align-items: center;
}
.topbar-links { gap: 18px; }
.topbar-links a { color: rgba(248, 250, 252, 0.94); font-weight: 600; }

.navbar-shell { padding-bottom: 12px; }
.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 84px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
}
.brand img, .footer-brand img {
    width: 164px;
    height: auto;
    filter: brightness(0) invert(1);
}
.nav-links { gap: 24px; margin-left: auto; }
.nav-links a, .footer-links a {
    font-size: 15px;
    font-weight: 500;
}
.nav-links a { color: rgba(248, 250, 252, 0.82); }
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0);
    color: rgba(248, 250, 252, 0.92);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: 0.18s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
    border-color: rgba(109, 94, 252, 0.58);
    background: rgba(109, 94, 252, 0.16);
    color: #fff;
}
.nav-chevron {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease, margin-top 0.18s ease;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
    margin-top: 3px;
    transform: rotate(225deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 40;
    display: block;
    width: min(620px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(109, 94, 252, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 45, 0.98));
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(3, 7, 18, 0.46);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: 0.16s ease;
}
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 24, 39, 0.98);
    transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.tools-menu-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 0 2px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: inherit;
}
.tools-menu-head span {
    color: #b7fff0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tools-menu-head strong {
    color: rgba(248, 250, 252, 0.72);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}
.tools-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.tools-menu-grid a {
    display: block;
    min-height: 92px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    transition: 0.18s ease;
}
.tools-menu-grid a span,
.tools-menu-grid a small {
    display: block;
}
.tools-menu-grid a small {
    margin-top: 5px;
    color: rgba(248, 250, 252, 0.62);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}
.tools-menu-grid a:hover {
    border-color: rgba(20, 197, 162, 0.34);
    background: rgba(20, 197, 162, 0.1);
    transform: translateY(-1px);
}
.nav-actions { gap: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7b68ff 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(109, 94, 252, 0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, #6d5efc 100%); }
.btn-secondary, .btn-ghost, .btn-secondary.light {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
}
.btn-secondary:hover, .btn-ghost:hover, .btn-secondary.light:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}
.btn-block { width: 100%; }

.pricing-card .btn-secondary {
    border-color: rgba(109, 94, 252, 0.18);
    background: rgba(109, 94, 252, 0.06);
    color: #1f2a44;
}

.pricing-card .btn-secondary:hover {
    border-color: rgba(109, 94, 252, 0.28);
    background: rgba(109, 94, 252, 0.12);
    color: #111827;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.hero-section { padding: 42px 0 120px; }
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    gap: 56px;
    align-items: center;
}
.kicker, .section-kicker, .dashboard-label, .status-pill, .card-tag, .step-number, .pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.kicker {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #b7fff0;
}
.hero-copy h1, .section-head h2, .cta-copy h2 {
    margin: 18px 0;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.045em;
}
.hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(46px, 5.7vw, 55px);
    color: #fff;
}
.hero-text, .section-head p, .solutions-copy p, .reason-card p, .testimonial-card p, .faq-copy p, .faq-answer p, .cta-copy p, .footer-brand p { color: var(--text-soft); }
.hero-text {
    max-width: 610px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.78);
}
.hero-actions { gap: 14px; margin-top: 30px; }
.hero-proof { gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.proof-item {
    min-width: 160px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}
.proof-item strong { display: block; margin-bottom: 4px; color: #fff; font-size: 16px; }
.proof-item span { color: rgba(248, 250, 252, 0.66); font-size: 14px; }

.hero-visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orb,
.grid-glow,
.section-blur,
.shape-ring {
    position: absolute;
    pointer-events: none;
}

.orb {
    border-radius: 999px;
    filter: blur(8px);
}

.orb-one {
    top: 18px;
    right: 20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(109, 94, 252, 0.42) 0%, rgba(109, 94, 252, 0.04) 68%, transparent 100%);
}

.orb-two {
    left: 24px;
    bottom: 46px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(20, 197, 162, 0.32) 0%, rgba(20, 197, 162, 0.03) 70%, transparent 100%);
}

.grid-glow {
    inset: 70px 30px 30px 40px;
    border-radius: 32px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 82%);
    opacity: 0.35;
}

.dashboard-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-xl);
}
.dashboard-main { padding: 22px; }
.illustration-shell {
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 252, 0.96));
    box-shadow: 0 32px 80px rgba(3, 7, 18, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.illustration-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
}

.illustration-badge-top {
    top: 18px;
    left: 18px;
}

.illustration-badge-bottom {
    right: 18px;
    bottom: 18px;
}

.badge-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d5efc, #14c5a2);
    font-size: 10px;
    font-weight: 800;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #14c5a2;
    box-shadow: 0 0 0 5px rgba(20, 197, 162, 0.16);
}

.screenshot-frame {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.dashboard-screenshot {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}
.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.dashboard-label { color: #5f6c87; }
.status-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20, 197, 162, 0.14);
    color: #107a67;
}
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.dashboard-metric {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
}
.dashboard-metric.primary { background: linear-gradient(135deg, rgba(109, 94, 252, 0.24), rgba(20, 197, 162, 0.12)); }
.dashboard-metric span, .dashboard-metric small { display: block; }
.dashboard-metric span { color: rgba(248, 250, 252, 0.7); font-size: 14px; }
.dashboard-metric strong {
    display: block;
    margin: 10px 0 8px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
}
.dashboard-metric small { color: rgba(248, 250, 252, 0.58); font-size: 13px; }
.dashboard-float {
    position: absolute;
    max-width: 260px;
    padding: 18px 20px;
}
.dashboard-float-left { left: -20px; bottom: 90px; }
.dashboard-float-right { right: -10px; bottom: 22px; }
.float-title {
    display: block;
    margin-bottom: 8px;
    color: #b7fff0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dashboard-float strong { color: #fff; font-size: 17px; line-height: 1.45; }

.stat-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(9, 14, 30, 0.72);
    color: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.chip-top {
    top: 72px;
    left: -8px;
}

.chip-bottom {
    right: -6px;
    bottom: 94px;
}

.chip-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b7dff;
    box-shadow: 0 0 0 6px rgba(139, 125, 255, 0.14);
}

.chip-dot.alt {
    background: #14c5a2;
    box-shadow: 0 0 0 6px rgba(20, 197, 162, 0.14);
}

.brand-band {
    margin-top: -36px;
    padding-bottom: 18px;
    position: relative;
    z-index: 3;
}
.brand-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 16px 22px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    text-align: left;
}

.brand-band-logo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 260px;
    min-height: 116px;
    padding: 12px 16px;
}

.brand-band-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.brand-band-text {
    width: 100%;
    color: #111827;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
}

.brand-band-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    flex: 1 1 auto;
    align-items: stretch;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f6f8fc;
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #344054;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
}

.brand-pill-grid {
    width: 100%;
    min-height: 48px;
}

.brand-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d5efc, #14c5a2);
    box-shadow: 0 0 0 5px rgba(109, 94, 252, 0.08);
}

.section { padding: 108px 0; }
.section-light { background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%); }
.section-dark {
    background:
        radial-gradient(circle at top right, rgba(109, 94, 252, 0.18), transparent 28%),
        linear-gradient(180deg, #10192f 0%, #0f1730 100%);
    color: var(--text-inverse);
}
.section-solutions, .pricing-section { background: #ffffff; }
.faq-section { background: #f8fbff; }
.section-intro .container,
.section-solutions .container {
    position: relative;
}

.section-blur {
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(48px);
    opacity: 0.4;
}

.blur-left {
    top: 10px;
    left: -80px;
    background: rgba(109, 94, 252, 0.16);
}

.blur-right {
    top: 90px;
    right: -90px;
    background: rgba(20, 197, 162, 0.16);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 42px;
}
.section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-head-side {
    display: grid;
    gap: 20px;
    justify-items: end;
}
.section-head h2 {
    max-width: 15ch;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text);
}
.section-dark .section-head h2, .section-dark .step-card h3 { color: #fff; }
.section-head p { max-width: 460px; margin: 0; font-size: 17px; }
.section-kicker { margin-bottom: 14px; color: var(--primary); }

.mini-visual-card {
    position: relative;
    width: min(100%, 520px);
    min-height: 250px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 16px;
}

.mini-visual-screenshot {
    width: 100%;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.feature-grid, .steps-grid, .solutions-grid, .reason-grid, .testimonial-grid, .pricing-grid {
    display: grid;
    gap: 22px;
}
.feature-grid, .reason-grid, .testimonial-grid, .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .solution-card, .reason-card, .testimonial-card, .pricing-card, .faq-item {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
}
.feature-card, .solution-card, .reason-card, .testimonial-card, .pricing-card { padding: 28px; }
.feature-card { min-height: 220px; }
.feature-card-large { background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%); }
.feature-icon,
.solution-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
}
.card-tag { margin-bottom: 16px; color: var(--secondary); }
.feature-card h3, .solution-card h3, .reason-card h3, .step-card h3, .pricing-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
}

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
}
.step-card.highlighted { background: linear-gradient(180deg, rgba(109, 94, 252, 0.22), rgba(255, 255, 255, 0.06)); }
.step-number { margin-bottom: 18px; color: #b7fff0; }
.step-card p { margin: 0; color: rgba(248, 250, 252, 0.72); }

.solutions-layout, .faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
}
.solutions-copy h2, .faq-copy h2 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.04em;
}
.solutions-copy p, .faq-copy p {
    max-width: 480px;
    margin-bottom: 28px;
    font-size: 17px;
}
.solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-card {
    position: relative;
    overflow: hidden;
}
.solution-icon {
    width: 58px;
    height: 58px;
}

.shape-ring {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(109, 94, 252, 0.14);
    border-radius: 50%;
    top: -34px;
    right: -30px;
}

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

.shape-ring::before {
    inset: 14px;
    border: 1px solid rgba(20, 197, 162, 0.18);
}

.shape-ring::after {
    width: 18px;
    height: 18px;
    top: 18px;
    left: 16px;
    background: linear-gradient(135deg, rgba(109, 94, 252, 0.85), rgba(20, 197, 162, 0.85));
    box-shadow: 0 0 24px rgba(109, 94, 252, 0.32);
}

.ring-two {
    transform: scale(0.92) rotate(28deg);
}

.ring-three {
    transform: scale(1.08) rotate(-18deg);
}

.ring-four {
    transform: scale(0.88) rotate(48deg);
}
.reason-card, .testimonial-card { min-height: 220px; }
.audience-panel {
    margin-top: 22px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}
.audience-panel h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
}
.audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.audience-list li {
    padding: 10px 14px;
    border: 1px solid rgba(109, 94, 252, 0.16);
    border-radius: 999px;
    background: rgba(109, 94, 252, 0.06);
    color: #1f2a44;
    font-weight: 700;
}
.testimonial-card p { margin: 0 0 28px; font-size: 18px; line-height: 1.8; }
.testimonial-card strong { font-size: 15px; }
.testimonial-card.featured {
    background: linear-gradient(180deg, #111827 0%, #172036 100%);
    border-color: rgba(255, 255, 255, 0.08);
}
.testimonial-card.featured p, .testimonial-card.featured strong { color: #fff; }

.pricing-card { position: relative; min-height: 100%; }
.pricing-card ul {
    margin: 0 0 26px;
    padding-left: 18px;
    line-height: 1.9;
    color: var(--text-soft);
}
.price {
    margin: 0 0 18px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
}
.pricing-card .price span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-soft);
}
.pricing-card.featured {
    background: linear-gradient(180deg, #0f172d 0%, #16213f 100%);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}
.pricing-card.featured, .pricing-card.featured h3, .pricing-card.featured .price, .pricing-card.featured ul, .pricing-card.featured .price span { color: #fff; }
.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(109, 94, 252, 0.12);
    color: #5748e8;
    border: 1px solid rgba(109, 94, 252, 0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card.featured .pricing-badge {
    background: rgba(20, 197, 162, 0.14);
    color: #b7fff0;
    border-color: rgba(20, 197, 162, 0.18);
}
.pricing-grid-single {
    grid-template-columns: minmax(0, 780px);
    justify-content: center;
}

.pricing-card-wide {
    width: 100%;
}

.faq-list { display: grid; gap: 16px; }
.faq-item { overflow: hidden; background: #fff; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
.faq-answer { display: none; padding: 0 24px 24px; }
.faq-answer p { margin: 0; font-size: 16px; }
.faq-icon { color: var(--primary); font-size: 24px; line-height: 1; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.cta-section { padding-top: 0; }
.cta-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 48px;
    padding: 44px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(20, 197, 162, 0.18), transparent 28%),
        linear-gradient(135deg, #0f172d 0%, #1b2b58 100%);
    color: #fff;
    box-shadow: var(--shadow-xl);
}
.cta-copy h2 {
    max-width: 560px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.12;
    letter-spacing: 0;
    color: #fff;
}
.cta-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(248, 250, 252, 0.78);
}
.cta-actions { gap: 14px; flex-wrap: wrap; }
.contact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}
.contact-lines a {
    color: #fff;
    font-weight: 800;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 620px;
    justify-self: end;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
}
.contact-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: rgba(248, 250, 252, 0.86);
    font-size: 13px;
    font-weight: 700;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 14px;
    outline: none;
    min-height: 48px;
}
.contact-form textarea {
    min-height: 122px;
    resize: vertical;
}
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.form-full {
    grid-column: 1 / -1;
}
.light-form label {
    color: var(--text);
}
.light-form input,
.light-form textarea {
    border-color: rgba(148, 163, 184, 0.24);
    background: #fff;
    color: var(--text);
}
.contact-card .contact-form,
.light-form {
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    justify-self: stretch;
}

.site-toast {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 9999;
    max-width: min(420px, calc(100vw - 32px));
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-toast.is-success {
    border-color: rgba(20, 197, 162, 0.32);
    background: #0f3f38;
}

.site-toast.is-error {
    border-color: rgba(248, 113, 113, 0.36);
    background: #4c1d24;
}

.site-footer {
    padding: 32px 0 46px;
    background: #0a1020;
    color: #fff;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-brand p {
    max-width: 380px;
    margin: 0;
    color: rgba(248, 250, 252, 0.7);
}
.footer-links { gap: 22px; }
.footer-links a { color: rgba(248, 250, 252, 0.78); }
.footer-disclaimer {
    max-width: 440px;
    font-size: 13px;
}

.inner-hero {
    padding: 68px 0 24px;
    background: linear-gradient(180deg, #f7f9fd 0%, #f3f6fb 100%);
}

.inner-hero-content {
    max-width: 840px;
}

.inner-hero-content h1 {
    margin: 16px 0 16px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -.04em;
    color: var(--text);
}

.inner-hero-content p {
    max-width: 720px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-soft);
}

.page-section {
    padding-top: 40px;
}

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

.page-stack {
    display: grid;
    gap: 20px;
}

.page-card {
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.page-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    color: var(--text);
}

.page-card p {
    margin: 0 0 14px;
    color: var(--text-soft);
    line-height: 1.8;
}

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

.page-link {
    color: var(--primary);
    font-weight: 700;
}

.tools-page {
    background: #f5f7fb;
}
.tools-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(109, 94, 252, 0.42), transparent 30%),
        radial-gradient(circle at 8% 0%, rgba(20, 197, 162, 0.3), transparent 28%),
        linear-gradient(135deg, #071521 0%, #0b1024 52%, #1d2157 100%);
}
.tools-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    gap: 58px;
    align-items: center;
}
.tools-hero-copy h1 {
    max-width: 780px;
    margin: 18px 0 20px;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
}
.tools-hero-copy p {
    max-width: 720px;
    color: rgba(248, 250, 252, 0.78);
    font-size: 19px;
    line-height: 1.8;
}
.tools-hero-panel {
    min-height: 420px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 90px rgba(3, 7, 18, 0.38);
    backdrop-filter: blur(18px);
}
.tools-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(248, 250, 252, 0.72);
    font-size: 14px;
    font-weight: 700;
}
.tools-panel-top strong {
    color: #b7fff0;
}
.tools-panel-chart {
    display: flex;
    align-items: end;
    gap: 16px;
    height: 190px;
    margin: 48px 0 34px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(3, 7, 18, 0.34);
}
.tools-panel-chart span {
    flex: 1;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, #6d5efc, #14c5a2);
}
.tools-panel-list {
    display: grid;
    gap: 12px;
}
.tools-panel-list span {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(248, 250, 252, 0.82);
    font-weight: 700;
}
.tools-tabs {
    position: sticky;
    top: 0;
    z-index: 18;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}
.tools-tabs-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    scrollbar-width: none;
}
.tools-tabs-inner::-webkit-scrollbar {
    display: none;
}
.tools-tabs a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 800;
}
.tools-tabs a:hover,
.tools-tabs a:focus {
    border-color: rgba(109, 94, 252, 0.28);
    background: rgba(109, 94, 252, 0.1);
    color: #3527d7;
}
.tools-detail-wrap {
    padding: 72px 0 30px;
}
.tool-detail-section {
    scroll-margin-top: 90px;
    margin-bottom: 28px;
    padding: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}
.tool-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 46px;
    align-items: center;
}
.tool-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6d5efc, #14c5a2);
    color: #fff;
    font-weight: 900;
}
.tool-detail-copy h2 {
    margin: 18px 0 14px;
    color: #07111f;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
}
.tool-detail-copy p {
    max-width: 700px;
    color: #536178;
    font-size: 18px;
    line-height: 1.75;
}
.tool-detail-copy ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
.tool-detail-copy li {
    position: relative;
    padding-left: 30px;
    color: #18243a;
    font-weight: 700;
    line-height: 1.55;
}
.tool-detail-copy li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #14c5a2;
    box-shadow: 0 0 0 6px rgba(20, 197, 162, 0.12);
}
.tool-visual-card {
    min-height: 330px;
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 8%, rgba(109, 94, 252, 0.34), transparent 38%),
        linear-gradient(145deg, #0b1328, #172448);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.tool-card-bar {
    display: flex;
    gap: 8px;
}
.tool-card-bar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}
.tool-card-bar span:nth-child(2) {
    background: #6d5efc;
}
.tool-card-bar span:nth-child(3) {
    background: #14c5a2;
}
.tool-card-title {
    margin-top: 28px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}
.tool-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}
.tool-card-grid span {
    min-height: 76px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
}
.tool-card-lines {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}
.tool-card-lines span {
    height: 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.24);
}
.tool-card-lines span:nth-child(2) {
    width: 76%;
}
.tool-card-lines span:nth-child(3) {
    width: 58%;
    background: rgba(20, 197, 162, 0.58);
}
.tool-page {
    background: #fff;
}
.tool-page-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}
.tool-page-tabs-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0 0;
    scrollbar-width: none;
}
.tool-page-tabs-inner::-webkit-scrollbar {
    display: none;
}
.tool-page-tabs a {
    flex: 0 0 auto;
    padding: 13px 18px 15px;
    border-bottom: 3px solid transparent;
    color: #273249;
    font-size: 14px;
    font-weight: 800;
}
.tool-page-tabs a:hover,
.tool-page-tabs a.active {
    color: #6d5efc;
    border-bottom-color: #6d5efc;
}
.tool-page-hero {
    overflow: hidden;
    padding: 74px 0 84px;
    background:
        radial-gradient(circle at 88% 14%, rgba(109, 94, 252, 0.18), transparent 28%),
        radial-gradient(circle at 14% 6%, rgba(20, 197, 162, 0.12), transparent 24%),
        linear-gradient(135deg, #f9fbff 0%, #ffffff 54%, #f3ecff 100%);
}
.tool-page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 70px;
    align-items: center;
}
.tool-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(109, 94, 252, 0.1);
    color: #6d5efc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.tool-page-copy h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    color: #07111f;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1.04;
}
.tool-page-copy p {
    max-width: 680px;
    color: #536178;
    font-size: 18px;
    line-height: 1.8;
}
.tool-page-visual {
    position: relative;
    min-height: 390px;
}
.tool-preview-panel {
    position: absolute;
    inset: 34px 0 0 38px;
    padding: 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 94, 252, 0.3), transparent 34%),
        linear-gradient(145deg, #0b1328, #172448);
    box-shadow: 0 32px 80px rgba(21, 32, 72, 0.22);
}
.tool-orbit-card {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.88);
    color: #fff;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.2);
}
.tool-orbit-card span {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #14c5a2;
    box-shadow: 0 0 0 7px rgba(20, 197, 162, 0.18);
}
.tool-preview-top {
    width: 52%;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}
.tool-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.tool-preview-grid span {
    min-height: 92px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}
.tool-preview-line {
    width: 62%;
    height: 14px;
    margin-top: 16px;
    border-radius: 999px;
    background: rgba(20, 197, 162, 0.55);
}
.tool-preview-line.wide {
    width: 100%;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.22);
}
.tool-page-explain {
    padding: 72px 0 90px;
}
.tool-page-explain-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: 82px;
    align-items: center;
}
.tool-illustration-block {
    position: relative;
    min-height: 360px;
}
.tool-calendar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: min(360px, 100%);
    margin: 44px auto 0;
    padding: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}
.tool-calendar span {
    min-height: 70px;
    border-radius: 16px;
    background: #edf3ff;
}
.tool-calendar span:nth-child(2),
.tool-calendar span:nth-child(6) {
    background: rgba(20, 197, 162, 0.2);
}
.tool-calendar span:nth-child(4) {
    background: rgba(109, 94, 252, 0.2);
}
.tool-hourglass {
    position: absolute;
    right: 8%;
    bottom: 4px;
    width: 70px;
    height: 110px;
    border: 8px solid #ffb84d;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, transparent 48%, rgba(255, 184, 77, 0.25) 50%);
}
.tool-explain-copy h2 {
    margin: 12px 0 16px;
    color: #07111f;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
}
.tool-explain-copy p {
    color: #536178;
    font-size: 17px;
    line-height: 1.8;
}
.tool-explain-copy ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.tool-explain-copy li {
    position: relative;
    padding-left: 30px;
    color: #18243a;
    font-weight: 700;
    line-height: 1.55;
}
.tool-explain-copy li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #14c5a2;
    box-shadow: 0 0 0 6px rgba(20, 197, 162, 0.14);
}
.tool-how-section {
    padding: 72px 0 88px;
    background: #f7f9fd;
}
.section-head.compact {
    gap: 10px;
    margin-bottom: 34px;
}
.tool-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.tool-how-card {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}
.tool-how-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(109, 94, 252, 0.12);
    color: #6d5efc;
    font-size: 12px;
    font-weight: 900;
}
.tool-how-card h3 {
    margin: 22px 0 10px;
    color: #07111f;
    font-size: 20px;
}
.tool-how-card p {
    color: #657188;
    line-height: 1.65;
}
.tool-faq-section {
    padding: 96px 0;
}
.tool-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}
.tool-question-visual {
    display: grid;
    place-items: center;
    width: min(320px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 70% 30%, rgba(109, 94, 252, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(20, 197, 162, 0.14), rgba(109, 94, 252, 0.14));
    color: #6d5efc;
    font-size: 150px;
    font-weight: 900;
}
.tool-faq-action {
    margin-top: 24px;
}

@media (max-width: 1180px) {
    .hero-layout, .solutions-layout, .faq-layout { grid-template-columns: 1fr; }
    .tools-hero-layout, .tool-detail-layout, .tool-page-hero-layout, .tool-page-explain-layout, .tool-faq-layout { grid-template-columns: 1fr; }
    .hero-copy h1, .section-head h2, .solutions-copy h2, .faq-copy h2, .cta-copy h2 { max-width: none; }
    .hero-visual { min-height: 560px; }
    .illustration-shell { max-width: 760px; }
}

@media (max-width: 980px) {
    .navbar {
        flex-wrap: wrap;
        min-height: auto;
        padding: 18px 22px;
        border-radius: 28px;
    }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .nav-links, .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding-top: 8px;
    }
    .nav-links.open, .nav-actions.open { display: flex; }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav-dropdown-menu::before {
        display: none;
    }
    .tools-menu-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .tools-menu-head strong {
        text-align: left;
    }
    .tools-menu-grid {
        grid-template-columns: 1fr;
    }
    .tools-tabs {
        top: 0;
    }
    .feature-grid, .steps-grid, .solutions-grid, .reason-grid, .testimonial-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-head, .footer-inner, .topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-panel {
        grid-template-columns: 1fr;
    }
    .contact-form {
        justify-self: stretch;
        max-width: none;
    }
    .section-head.centered { align-items: center; }
    .section-head p { max-width: none; }
    .section-head-side {
        width: 100%;
        justify-items: start;
    }
    .page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container { width: min(1240px, calc(100% - 24px)); }
    .feature-grid, .steps-grid, .solutions-grid, .reason-grid, .testimonial-grid, .pricing-grid { grid-template-columns: 1fr; }
    .hero-layout { gap: 34px; }
    .tools-hero {
        padding: 52px 0 48px;
    }
    .tool-page-hero {
        padding: 52px 0 58px;
    }
    .tools-hero-copy h1 {
        font-size: 42px;
    }
    .tool-page-copy h1 {
        font-size: 42px;
    }
    .tools-hero-panel {
        min-height: 340px;
        padding: 20px;
        border-radius: 24px;
    }
    .tools-panel-chart {
        height: 150px;
        margin: 34px 0 24px;
        padding: 18px;
    }
    .tools-detail-wrap {
        padding-top: 42px;
    }
    .tool-detail-section {
        padding: 24px;
        border-radius: 22px;
    }
    .tool-preview-panel {
        inset: 34px 0 0 18px;
        padding: 22px;
    }
    .tool-page-visual {
        min-height: 330px;
    }
    .tool-how-grid {
        grid-template-columns: 1fr;
    }
    .tool-page-explain,
    .tool-how-section,
    .tool-faq-section {
        padding: 54px 0;
    }
    .tool-card-grid {
        grid-template-columns: 1fr;
    }
    .hero-section { padding: 28px 0 90px; }
    .hero-actions, .cta-actions, .topbar-links, .footer-brand { flex-direction: column; align-items: flex-start; }
    .hero-proof { display: grid; grid-template-columns: 1fr; }
    .dashboard-metrics { grid-template-columns: 1fr; }
    .dashboard-float {
        position: static;
        max-width: none;
        margin-top: 16px;
    }
    .hero-visual { min-height: auto; }
    .illustration-shell {
        padding: 16px;
        border-radius: 24px;
    }
    .illustration-badge {
        position: static;
        margin-bottom: 12px;
    }
    .orb-one,
    .orb-two,
    .grid-glow,
    .section-blur,
    .shape-ring {
        display: none;
    }
    .brand-band {
        margin-top: -22px;
        padding-bottom: 10px;
    }
    .brand-band-inner {
        min-height: 60px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
    }
    .brand-band-logo-panel {
        flex: 0 0 auto;
        min-height: auto;
        padding: 6px 0 2px;
    }
    .brand-band-logo {
        max-width: 180px;
    }
    .brand-band-text {
        font-size: 23px;
    }
    .brand-band-content {
        grid-template-columns: 1fr;
    }
    .brand-pill {
        white-space: normal;
        justify-content: flex-start;
        padding: 12px 14px;
    }
    .section { padding: 84px 0; }
    .cta-panel { padding: 28px; }
    .contact-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }
    .contact-card .contact-form,
    .light-form {
        padding: 0;
    }
    .feature-card, .solution-card, .reason-card, .testimonial-card, .pricing-card, .step-card, .dashboard-main { padding: 24px; }
    .mini-visual-card {
        height: 220px;
        padding: 16px;
    }
    .stat-chip {
        position: static;
        margin-top: 14px;
    }
}

.hero-layout-compliance {
    align-items: stretch;
}

.hero-text-strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-chip-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hero-chip-outline {
    color: #b7fff0;
}

.hero-disclaimer {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(248, 250, 252, 0.68);
    font-size: 14px;
}

.hero-visual-compliance .compliance-shell {
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.overview-card {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

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

.overview-card-panel {
    background:
        radial-gradient(circle at top right, rgba(109, 94, 252, 0.16), transparent 34%),
        linear-gradient(180deg, #121a32 0%, #0d1428 100%);
    color: #f8fafc;
}

.overview-panel-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #b7fff0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.overview-card-panel h3 {
    margin: 0 0 18px;
    font-size: 26px;
    color: #ffffff;
}

.overview-list,
.feature-list,
.compliance-list {
    margin: 0;
    padding-left: 18px;
}

.overview-list li,
.feature-list li,
.compliance-list li {
    margin-bottom: 10px;
}

.overview-list li:last-child,
.feature-list li:last-child,
.compliance-list li:last-child {
    margin-bottom: 0;
}

.feature-grid-compliance {
    align-items: stretch;
}

.feature-list {
    color: #5f6c87;
}

.steps-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compliance-section {
    background:
        radial-gradient(circle at top right, rgba(20, 197, 162, 0.12), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

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

.compliance-copy h2 {
    margin: 16px 0;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.compliance-copy p {
    color: #5f6c87;
    font-size: 17px;
}

.compliance-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.compliance-list li {
    color: #1f2a44;
    font-weight: 600;
}

.security-section {
    background: #ffffff;
}

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

.pricing-note {
    margin: 24px 0 0;
    text-align: center;
    color: #657188;
    font-size: 15px;
}

.about-company-section {
    background: #f8fbff;
}

.cta-footnote {
    margin-top: 18px;
    color: #5f6c87;
    font-size: 14px;
}

.footer-links-rich {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    align-items: start;
}

.footer-links-rich span {
    color: rgba(248, 250, 252, 0.72);
    font-size: 15px;
    font-weight: 500;
}

.footer-legal-note {
    padding: 0 0 40px;
    color: rgba(248, 250, 252, 0.6);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .overview-grid,
    .compliance-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 980px) {
    .security-grid,
    .company-grid,
    .footer-links-rich {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-chip-row {
        margin-top: 14px;
    }

    .hero-chip {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 48px;
    }

    .overview-card,
    .compliance-card {
        padding: 24px;
    }

    .steps-grid-four {
        grid-template-columns: 1fr;
    }

    .footer-legal-note {
        padding-bottom: 28px;
    }
}
