@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color-top: #FBF9F6;
    --bg-color-bottom: #F4F0EA;
    --surface: #FFFFFF;
    --surface-muted: #F8F6F2;

    --primary-color: #C2410C;
    --primary-hover: #A23709;
    --primary-ink: #8A3208;
    --primary-soft: rgba(194, 65, 12, 0.08);
    --accent-color: #C2410C;

    --violet: #6444F6;
    --violet-hover: #5233DC;

    --ink: #0B1F36;
    --text-main: #0B1F36;
    --text-secondary: rgba(11, 31, 54, 0.62);
    --text-tertiary: rgba(11, 31, 54, 0.42);
    --border-light: #E5DFD5;
    --border-card: rgba(11, 31, 54, 0.08);
    --border-strong: rgba(11, 31, 54, 0.16);

    --font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    --max-width: 1120px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --space-section: clamp(72px, 9vw, 112px);
    --space-section-sm: clamp(56px, 7vw, 80px);

    --shadow-sm: 0 1px 2px rgba(11, 31, 54, 0.04);
    --shadow-md: 0 8px 28px rgba(11, 31, 54, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background:
        linear-gradient(180deg, var(--bg-color-top) 0%, var(--bg-color-bottom) 420px, var(--bg-color-bottom) 100%);
    color: var(--text-main);
    line-height: 1.55;
    font-size: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(251, 249, 246, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    transition: padding 0.2s ease;
}

.header.scrolled .header-inner {
    padding: 10px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: height 0.2s ease;
}

.header.scrolled .logo-img {
    height: 38px;
}

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

.header-nav a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background-color 0.15s ease;
}

.header-nav a:hover {
    color: var(--text-main);
    background: rgba(11, 31, 54, 0.04);
}

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

.header-actions .btn {
    padding: 9px 16px;
    font-size: 13.5px;
}

.header.scrolled .header-actions .btn {
    padding: 8px 14px;
    font-size: 13px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid transparent;
    box-shadow: none;
    white-space: nowrap;
}

.btn:active {
    transform: none;
    opacity: 0.92;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(194, 65, 12, 0.22);
}

.btn-purple {
    background-color: var(--violet);
    color: #FFFFFF;
    border-color: var(--violet);
}

.btn-purple:hover {
    background-color: var(--violet-hover);
    border-color: var(--violet-hover);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background-color: rgba(11, 31, 54, 0.04);
    border-color: rgba(11, 31, 54, 0.28);
    color: var(--ink);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-strong);
}

.btn-outline-primary:hover {
    background-color: rgba(11, 31, 54, 0.04);
    border-color: rgba(11, 31, 54, 0.28);
    color: var(--text-main);
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.btn-outline-secondary:hover {
    background-color: rgba(11, 31, 54, 0.04);
    color: var(--text-main);
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 15px;
    border-radius: var(--radius-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 12px 12px;
    font-weight: 600;
}

.btn-ghost:hover {
    color: var(--primary-color);
    background: transparent;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none !important;
    filter: grayscale(0.35);
    transform: none !important;
}

/* ========== Hero ========== */
.hero {
    padding: 132px 0 0;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.content-rail {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hero-motto {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 8px 10px;
    margin-top: -2px;
    font-size: clamp(17px, 1.9vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--text-main);
    line-height: 1.2;
    scroll-margin-top: 88px;
}

.hero-motto-sep {
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    background: rgba(11, 31, 54, 0.035);
    border: 1px solid rgba(11, 31, 54, 0.08);
}

.pill-accent {
    color: var(--primary-ink);
    background: var(--primary-soft);
    border-color: rgba(194, 65, 12, 0.16);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0;
    text-align: center;
}

.hero-title-brand {
    display: block;
    font-size: clamp(72px, 9vw, 108px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.brand-part-main {
    color: var(--primary-color);
}

.brand-part-k {
    color: var(--primary-color);
    opacity: 0.72;
}

.brand-part-a {
    color: var(--text-main);
}

.brand-part-en {
    display: inline-block;
    margin-left: 0.02em;
    font-size: 1.18em;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--primary-color);
    vertical-align: 0.08em;
}

.hero-title-sub {
    display: block;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    max-width: 28em;
}

.hero-title-line {
    display: block;
}

.brand-text {
    color: var(--text-main);
}

.hero-os {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.55;
}

.hero-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 640px;
    text-align: left;
}

.hero-benefits-list li {
    position: relative;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.45;
    padding: 4px 0 4px 18px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.hero-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.hero-benefits-list li svg {
    display: none;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
    width: 100%;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
}

.trust-badge svg {
    width: 15px;
    height: 15px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

/* ========== Integration Stripe ========== */
.integration-stripe {
    padding: 8px 0 36px;
    border-top: none;
    border-bottom: none;
    background: transparent;
}

.integration-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px 24px;
    flex-wrap: wrap;
    max-width: 760px;
}

.integration-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.integration-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
}

.integration-app {
    display: inline;
    color: var(--text-secondary);
}

.integration-more {
    color: var(--text-tertiary);
    font-weight: 500;
}

.integration-icon {
    display: none;
}

/* ========== Section chrome ========== */
.section-header {
    margin-bottom: 36px;
    max-width: 640px;
}

.section-header.centered,
.pricing .section-header,
.faq .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
}

.benefits .section-header,
.use-cases .section-header,
.speech-development .section-header {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-lead {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 40em;
}

/* ========== How it works ========== */
.how-it-works {
    padding: var(--space-section) 0 0;
    text-align: center;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.hiw-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hiw-image {
    width: 100%;
    max-width: 224px;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hiw-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.hiw-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ========== Essentials ========== */
.essentials {
    margin-top: 28px;
    padding: 0;
    border-top: none;
    background: transparent;
}

.essentials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 8px;
}

.essentials-list li {
    position: relative;
    padding: 2px 0 2px 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--text-main);
}

.essentials-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* ========== Benefits ========== */
.benefits {
    padding: var(--space-section) 0 0;
}

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

.benefits-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.15s ease;
    box-shadow: none;
}

.benefit-card::before {
    display: none;
}

.benefit-card:hover {
    border-color: rgba(11, 31, 54, 0.16);
}

.benefit-image {
    display: none;
}

.benefit-title {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ========== Use cases ========== */
.use-cases {
    padding: var(--space-section) 0 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.use-case-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    box-shadow: none;
    transition: border-color 0.15s ease;
}

.use-case-card:hover {
    border-color: rgba(11, 31, 54, 0.16);
}

.use-case-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.use-case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ========== Speech / accuracy ========== */
.speech-development {
    padding: var(--space-section) 0 0;
}

.speech-note-banner {
    margin: 28px 0 0;
    max-width: none;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: none;
}

.speech-note-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(11, 31, 54, 0.06);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.speech-note-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-secondary);
}

.speech-note-highlight {
    color: var(--text-main);
    font-weight: 700;
}

.speech-note-thumb {
    display: inline-block;
    margin-left: 2px;
    font-size: 0.95em;
    line-height: 1;
    opacity: 0.72;
    vertical-align: -0.05em;
}

/* ========== Privacy ========== */
.privacy-block {
    padding: var(--space-section) 0 0;
}

.privacy-card {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 44px 44px;
    box-shadow: none;
}

.privacy-content h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.privacy-content > p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 38em;
}

.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

.privacy-aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-stat {
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px 24px;
}

.privacy-stat strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 6px;
}

.privacy-stat span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ========== Pricing ========== */
.pricing {
    padding: clamp(48px, 6vw, 72px) 0 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin: 0;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.pricing-card.featured {
    border-color: rgba(194, 65, 12, 0.35);
    box-shadow: inset 0 0 0 1px rgba(194, 65, 12, 0.12);
    position: relative;
}

.pricing-card-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 28px 40px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--surface) 0%, rgba(194, 65, 12, 0.03) 100%);
    border-color: rgba(11, 31, 54, 0.1);
}

.pricing-wide-info {
    flex: 0 0 auto;
    width: min(240px, 100%);
    display: flex;
    flex-direction: column;
}

.pricing-card-wide .pricing-name {
    margin-bottom: 10px;
}

.pricing-card-wide .pricing-desc {
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-card-wide .pricing-features {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin-bottom: 0;
    min-width: 0;
}

.pricing-card-wide .pricing-btn {
    width: 100%;
    margin-top: auto;
}

.featured-badge {
    display: none;
}

.pricing-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
}

.price-period {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.45;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
}

.pricing-features svg {
    width: 15px;
    height: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.feature-limit {
    color: var(--text-secondary);
}

.pricing-features li.feature-limit svg {
    color: var(--text-tertiary);
    opacity: 1;
}

.pricing-btn {
    width: 100%;
}

.pricing-card.featured .pricing-btn {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.pricing-card.featured .pricing-btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(194, 65, 12, 0.22);
}

.pricing-reassurance {
    text-align: left;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    line-height: 1.5;
    max-width: none;
}

.pricing-reassurance svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-tertiary);
}

/* Free Trial Banner */
.free-trial-banner {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin: 36px auto 20px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: none;
}

.free-trial-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.free-trial-content p {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.free-trial-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Comparison Table */
.comparison-section {
    margin-top: 48px;
    max-width: none;
}

.comparison-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: none;
    padding: 8px 8px 4px;
}

.comparison-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.01em;
}

.comparison-table th:not(:first-child) {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.015em;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

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

.comparison-table .name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 14px;
}

.comparison-table .sub {
    color: var(--text-secondary);
    font-size: 12.5px;
    margin-top: 3px;
    font-weight: 500;
}

.comparison-table .good-text,
.comparison-table .mark-yes {
    color: var(--text-main);
    font-weight: 600;
}

.comparison-table .mark-no {
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ========== FAQ ========== */
.faq {
    padding: var(--space-section) 0 calc(var(--space-section) * 0.7);
}

.faq-container {
    max-width: none;
    margin: 0;
    display: block;
}

.faq .section-header {
    max-width: none;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 4px;
    font-size: 15px;
    font-weight: 650;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.15s;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--primary-ink);
}

.faq-icon {
    transition: transform 0.25s ease;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-bottom: 0;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0;
    transition: padding 0.25s, opacity 0.25s;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 18px;
    opacity: 1;
}

/* ========== Final CTA ========== */
.final-cta {
    padding: var(--space-section) 0 0;
}

.final-cta-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.final-cta-card h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.final-cta-card > p {
    color: var(--text-secondary);
    font-size: 15.5px;
    margin-bottom: 28px;
    max-width: 36em;
    line-height: 1.55;
}

.final-cta-card .hero-actions {
    justify-content: center;
}

/* ========== Closing banner ========== */
.closing-banner {
    padding: 0 0 calc(var(--space-section) * 0.7);
}

.closing-banner-card {
    text-align: center;
    background: transparent;
    border: none;
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.closing-banner-logo {
    height: 120px;
    width: auto;
    margin-bottom: 4px;
    background: transparent;
}

.closing-banner-line1,
.closing-banner-line2 {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.closing-banner-motto {
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-main);
}

.closing-banner-text {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.3;
}

@media (max-width: 640px) {
    .closing-banner-line1,
    .closing-banner-line2 {
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 8px;
    }
}

/* ========== Footer ========== */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    padding: 48px 0 40px;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    max-width: 360px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0;
    flex-shrink: 0;
}

.footer-slogan {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.4;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-tertiary);
}

.footer-contacts {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}

.footer-contacts a {
    color: var(--text-secondary);
    transition: color 0.15s;
}

.footer-contacts a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

/* ========== Skip link / nav ========== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 12px 16px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--text-main);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 28px 20px;
    background: rgba(251, 249, 246, 0.98);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 31, 54, 0.06);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav .btn {
    margin-top: 12px;
    width: 100%;
}

.mobile-nav:not([hidden]) {
    display: flex;
}

/* ========== Docs ========== */
.docs-hero {
    padding: 140px 0 36px;
    text-align: left;
    background: transparent;
}

.docs-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.docs-subtitle {
    font-size: 15.5px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.55;
}

.docs-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    margin: 28px auto 80px;
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 88px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: none;
}

.docs-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.docs-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.docs-menu-item:hover {
    color: var(--text-main);
    background: rgba(11, 31, 54, 0.04);
}

.docs-menu-item.active {
    color: #FFFFFF;
    background: var(--primary-color);
    box-shadow: none;
}

.docs-menu-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.docs-content-wrapper {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    box-shadow: none;
    min-height: 500px;
}

.docs-section {
    display: none;
    animation: docsFadeIn 0.3s ease-out;
}

.docs-section.active {
    display: block;
}

.docs-mobile-header {
    display: none;
}

@keyframes docsFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.legal-content p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}

.legal-content p strong {
    color: var(--text-main);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
}

.legal-content a:hover {
    border-bottom-style: solid;
}

.legal-content hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 24px 0;
}

/* ========== Modal / Checkout ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 54, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay:not([aria-hidden="true"]) {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 56px rgba(11, 31, 54, 0.18);
    transform: translateY(12px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-light);
}

.modal-overlay:not([aria-hidden="true"]) .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(11, 31, 54, 0.04);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background-color 0.15s, color 0.15s;
}

.modal-close:hover {
    background: rgba(11, 31, 54, 0.08);
    color: var(--text-main);
}

.modal-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-logo {
    height: 34px;
    width: auto;
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
    text-align: center;
    letter-spacing: -0.02em;
}

.checkout-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}

#checkout-widget-view {
    min-height: 360px;
}

.checkout-widget-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 280px;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

.checkout-widget-loading[hidden] {
    display: none !important;
}

.checkout-widget-loading p {
    margin: 0;
}

.checkout-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(11, 31, 54, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: checkout-spin 0.7s linear infinite;
}

@keyframes checkout-spin {
    to { transform: rotate(360deg); }
}

.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.plan-option input {
    display: none;
}

.plan-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    background: #FFFFFF;
}

.plan-option input:checked + .plan-content {
    border-color: var(--primary-color);
    background: var(--primary-soft);
    box-shadow: none;
}

.plan-title {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.plan-badge {
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.plan-price {
    font-weight: 800;
    font-size: 15px;
    white-space: nowrap;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s;
    outline: none;
    background: #fff;
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.checkout-agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
    background: var(--surface-muted);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.agreement-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border-strong);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all 0.15s;
    background: #fff;
}

.agreement-label:hover input ~ .checkbox-custom {
    border-color: var(--primary-color);
}

.agreement-label input:checked ~ .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-label input:checked ~ .checkbox-custom:after {
    display: block;
}

.agreement-text {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.agreement-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkout-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ========== SmartScreen / download ========== */
.smartscreen-hint-bar {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-secondary);
    background: var(--surface-muted);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    line-height: 1.5;
    text-align: left;
}

.smartscreen-hint-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
    white-space: nowrap;
}

.download-instructions {
    text-align: left;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.instructions-header {
    text-align: center;
    margin-bottom: 20px;
}

.instructions-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.instructions-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text-main);
    letter-spacing: -0.015em;
}

.instructions-subtitle {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.instructions-step-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: none;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-right: 8px;
}

.step-badge-1 {
    background: rgba(194, 65, 12, 0.12);
    color: var(--primary-ink);
}

.step-badge-2 {
    background: rgba(100, 68, 246, 0.12);
    color: var(--violet);
}

.step-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 8px 0 12px;
    line-height: 1.5;
}

.step-tip {
    background: var(--surface-muted);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-main);
    border-left: 3px solid var(--primary-color);
    line-height: 1.45;
}

.smartscreen-mockup {
    background: #005a9e;
    color: #ffffff;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-bottom: 12px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.smartscreen-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.smartscreen-mockup-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.smartscreen-mockup-text {
    font-size: 12.5px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.45;
}

.smartscreen-mockup-details {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.smartscreen-mockup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.smartscreen-link-highlight {
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.22);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px dashed #ffffff;
    font-size: 12.5px;
}

.smartscreen-btn-highlight {
    background: #ffffff;
    color: #005a9e;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12.5px;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.instructions-security-box {
    background: rgba(47, 143, 91, 0.07);
    border: 1px solid rgba(47, 143, 91, 0.22);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.security-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: #2f8f5b;
    margin-bottom: 6px;
}

.security-box-text {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    color: var(--text-main);
}

.security-box-text a {
    color: #2f8f5b;
    text-decoration: underline;
    font-weight: 700;
}

/* ========== Success page ========== */
.success-hero-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: none;
    max-width: 800px;
    margin: 0 auto;
}

.success-key-box {
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-top: 28px;
}

.key-code-display {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.06em;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 12px 0;
    border: 1px solid var(--border-light);
    box-shadow: none;
}

/* ========== Inner pages ========== */
.page-section {
    padding: 120px 0 80px;
}

.page-narrow {
    max-width: 560px;
}

.page-header {
    margin-bottom: 28px;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.page-title-sm {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.page-lead {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 28px;
}

.page-note {
    margin-top: 18px;
    font-size: 13.5px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.page-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.page-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(47, 143, 91, 0.12);
    color: #2f8f5b;
    font-size: 24px;
    font-weight: 700;
}

.support-card,
.subscription-card,
.sub-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: none;
}

.sub-card {
    text-align: center;
}

.sub-card .form-group label {
    display: block;
    text-align: center;
}

.support-card-center {
    text-align: center;
}

.support-card .form-group:last-of-type {
    margin-bottom: 20px;
}

.support-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    outline: none;
    background: #fff;
    color: var(--text-main);
    transition: border-color 0.15s;
}

.support-card textarea:focus {
    border-color: var(--primary-color);
}

.sub-meta {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: left;
}

.sub-meta li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.sub-meta li:last-child {
    border-bottom: none;
}

.sub-meta li span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.sub-meta li span:last-child {
    font-weight: 600;
    color: var(--text-main);
    text-align: right;
}

.sub-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-msg {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.45;
    display: none;
}

.sub-msg.ok {
    display: block;
    background: rgba(47, 143, 91, 0.1);
    color: #1a7a42;
    border: 1px solid rgba(47, 143, 91, 0.25);
}

.sub-msg.err {
    display: block;
    background: rgba(217, 83, 79, 0.08);
    color: #c0392b;
    border: 1px solid rgba(217, 83, 79, 0.25);
}

.sub-msg.info {
    display: block;
    background: rgba(100, 68, 246, 0.08);
    color: var(--violet);
    border: 1px solid rgba(100, 68, 246, 0.22);
}

.sub-links {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    font-size: 13.5px;
}

.sub-links a {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-danger-outline {
    background: transparent;
    border: 1px solid #d9534f;
    color: #d9534f;
}

.btn-danger-outline:hover:not(:disabled) {
    background: rgba(217, 83, 79, 0.08);
}

.btn-danger-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-page-wrap {
    padding: 120px 0 80px;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .header-nav {
        gap: 0;
    }

    .header-nav a {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 22px;
    }

    .benefits-grid,
    .benefits-grid-6,
    .use-cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .pricing-card-wide {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 26px;
        gap: 0;
    }

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

    .pricing-card-wide .pricing-desc {
        margin-bottom: 22px;
        padding-bottom: 22px;
        border-bottom: 1px solid var(--border-light);
    }

    .pricing-card-wide .pricing-features {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .privacy-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 24px;
    }

    .free-trial-banner {
        flex-direction: column;
        text-align: left;
        padding: 24px;
        align-items: stretch;
    }

    .speech-note-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px 20px;
    }

    .free-trial-content h3 {
        justify-content: flex-start;
    }

    .free-trial-btn {
        width: 100%;
    }

    .free-trial-btn .btn {
        width: 100%;
    }

    .faq-container {
        max-width: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 36px;
    }

    .footer-brand {
        flex-direction: row;
    }

    .footer-links {
        gap: 36px;
        flex-wrap: wrap;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px auto 60px;
    }

    .docs-sidebar {
        display: none;
    }

    .docs-content-wrapper {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .docs-section {
        display: block;
        background: var(--surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        margin-bottom: 10px;
        overflow: hidden;
        box-shadow: none;
    }

    .docs-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 15px;
        font-weight: 700;
        color: var(--text-main);
    }

    .docs-mobile-header-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .docs-mobile-header-title svg {
        width: 18px;
        height: 18px;
        stroke: var(--primary-color);
        fill: none;
        stroke-width: 2;
    }

    .docs-mobile-chevron {
        width: 18px;
        height: 18px;
        stroke: var(--text-secondary);
        fill: none;
        stroke-width: 2;
        transition: transform 0.25s;
    }

    .docs-section.active .docs-mobile-chevron {
        transform: rotate(180deg);
        stroke: var(--primary-color);
    }

    .docs-section.active .docs-mobile-header {
        border-bottom: 1px solid var(--border-light);
        background-color: var(--surface-muted);
    }

    .docs-section-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.25s ease;
    }

    .docs-section.active .docs-section-content {
        grid-template-rows: 1fr;
    }

    .docs-section-inner {
        overflow: hidden;
        opacity: 0;
        transition: padding 0.25s, opacity 0.25s;
    }

    .docs-section.active .docs-section-inner {
        padding: 20px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .header-nav {
        display: none;
    }

    .header-actions .btn-outline-primary,
    .header-actions .open-checkout:not(.btn-primary) {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 112px 0 0;
    }

    .hero-inner {
        gap: 28px;
        max-width: none;
    }

    .hero-title-brand {
        font-size: clamp(56px, 14vw, 72px);
    }

    .hero-title-sub {
        font-size: clamp(15px, 4vw, 18px);
        letter-spacing: 0.06em;
        max-width: none;
    }

    .hero-motto {
        font-size: clamp(16px, 4.2vw, 19px);
    }

    .hero-benefits-list {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: none;
        text-align: center;
    }

    .hero-benefits-list li {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-benefits-list li::before {
        display: none;
    }

    .hero-bottom {
        width: 100%;
    }

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

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

    .benefits-grid,
    .benefits-grid-6,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .final-cta-card {
        padding: 32px 22px;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 28px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 12px;
    }

    .modal-container {
        padding: 28px 20px;
    }

    .integration-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        max-width: none;
    }

    .essentials-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-primary {
        padding: 8px 12px;
        font-size: 12.5px;
    }

    .logo-img {
        height: 38px;
    }

    .privacy-stat strong {
        font-size: 28px;
    }

    .price-value {
        font-size: 32px;
    }
}
