/* ============================================================
   RESET & ROOT
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #4a8c2a;
    --green-dark: #3a6e20;
    --green-light: #5fa832;
    --green-bg: #eef5e9;
    --green-bg2: #dcefd2;
    --ink: #1a2212;
    --ink-soft: #3d4a35;
    --ink-muted: #6b7a62;
    --surface: #ffffff;
    --surface-2: #f7faf4;
    --surface-3: #eff5ea;
    --border: rgba(74, 140, 42, 0.15);
    --border-strong: rgba(74, 140, 42, 0.28);
    --gray-border: rgba(0, 0, 0, 0.09);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-pill: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--surface);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-h {
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 540px;
    line-height: 1.68;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--gray-border);
}

.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
    color: var(--green);
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(74, 140, 42, 0.35);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 26px;
    font-size: 15px;
}

.btn-xl {
    padding: 14px 32px;
    font-size: 16px;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--green);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

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

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
}


/* HERO */
.hero-wrap {
    background: var(--surface-2);
    border-bottom: 1px solid var(--gray-border);
}

.hero {
    padding: 80px 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    color: var(--green-dark);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-trust-text {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 7px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
}

/* Hero dashboard */
.dashboard-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.dash-topbar {
    background: var(--ink);
    padding: 0 14px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-topbar-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dash-topbar-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--green-light);
    margin-left: 10px;
}

.dash-topbar-nav {
    display: flex;
    gap: 14px;
    margin-left: 14px;
}

.dash-topbar-nav span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.dash-topbar-nav span.active {
    color: #fff;
    font-weight: 600;
}

.dash-body {
    padding: 16px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dash-metric {
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-radius: 7px;
    padding: 10px 11px;
}

.dash-metric-label {
    font-size: 9px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    font-weight: 700;
}

.dash-metric-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
}

.dash-metric-val.green {
    color: var(--green);
}

.dash-metric-sub {
    font-size: 9px;
    color: var(--ink-muted);
    margin-top: 2px;
}

.ai-alert {
    background: var(--green-bg);
    border: 1px solid var(--border-strong);
    border-radius: 7px;
    padding: 10px 12px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ai-chip {
    background: var(--green);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 1px;
}

.ai-alert-text {
    font-size: 11px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.ai-alert-text strong {
    color: var(--ink);
}

.channel-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.chan-tag {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chan-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 36px 0;
    background: #fff;
}

.logos-strip-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    margin-bottom: 28px;
    font-weight: 700;
    text-align: center;
}

/* Two rows: channels top, carriers bottom */
.logos-section-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-section-row+.logos-section-row {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.logos-row-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

/* Each logo item */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    opacity: 0.75;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Logos on white/transparent bg — just display the image */
.logo-item img {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Logos with dark/colored backgrounds — wrap in a rounded card */
.logo-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}

.logo-card img {
    display: block;
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-card-dark {
    background: #000;
}

.logo-card-blue {
    background: #1A73E8;
}

/* Walmart blue */
.logo-card-green {
    background: #000;
}

/* Shopify (white logo on black) */

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
    padding: 72px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 140, 42, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--ink);
}

.feature-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.feature-pill {
    display: inline-block;
    margin-top: 10px;
    background: var(--green-bg);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section-wrap {
    background: var(--ink);
    padding: 72px 0;
}

.ai-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-section .section-label {
    color: var(--green-light);
}

.ai-section .section-h {
    color: #fff;
}

.ai-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.ai-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ai-point-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(74, 140, 42, 0.25);
    border: 1px solid rgba(74, 140, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ai-point-text h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.ai-point-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

.patent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 140, 42, 0.2);
    border: 1px solid rgba(74, 140, 42, 0.35);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 12px;
    color: var(--green-light);
    margin-top: 24px;
    font-weight: 600;
}

.ai-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}

.ai-visual-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forecast-bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 90px;
    margin-bottom: 14px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: rgba(74, 140, 42, 0.35);
}

.bar.active {
    background: var(--green);
}

.bar.warn {
    background: rgba(230, 160, 30, 0.75);
}

.bar-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.ai-rec {
    background: rgba(74, 140, 42, 0.15);
    border: 1px solid rgba(74, 140, 42, 0.3);
    border-radius: 8px;
    padding: 12px 13px;
}

.ai-rec-tag {
    font-size: 10px;
    color: var(--green-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.ai-rec-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

.ai-rec-btns {
    display: flex;
    gap: 7px;
    margin-top: 9px;
}

.mini-btn {
    padding: 4px 11px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
}

.mini-btn-primary {
    background: var(--green);
    color: #fff;
}

.mini-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* HOW IT WORKS */
.steps-wrap {
    background: var(--surface-2);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 72px 0;
}

.steps-section {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--green-bg2);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    padding: 0 14px;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink-muted);
    margin: 0 auto 18px;
}

.step.active .step-num {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 7px var(--green-bg);
}

.step h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.step p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section .section-h {
    font-size: 36px;
    margin-bottom: 14px;
}

.cta-section .section-sub {
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.free-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 14px;
}

.free-note strong {
    color: var(--green);
    font-weight: 700;
}

/* FOOTER */
footer {
    background: #1a2212;
    color: rgba(255, 255, 255, 0.55);
    padding: 48px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--green-light);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-patent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.footer-col h5 {
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.65);
}


/* ============================================================
   IMPRESSUM
   ============================================================ */
.impressum-section {
    background: #111;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.impressum-section h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.impressum-section p,
.impressum-section a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    text-decoration: none;
}

.impressum-section a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1a2212;
    border-top: 2px solid var(--green);
    padding: 16px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    line-height: 1.55;
}

.cookie-banner p a {
    color: var(--green-light);
    text-decoration: underline;
}

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

.cookie-accept {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: var(--green-dark);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.2s;
}

.cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cookie-banner.hidden {
    display: none;
}

/* ============================================================
   JURISDICTION NOTICE (EU/UK/CH)
   ============================================================ */
.jurisdiction-notice {
    background: var(--green-bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 12px;
    color: var(--ink-soft);
    text-align: center;
    display: none;
    margin-bottom: 0;
}

.jurisdiction-notice.visible {
    display: block;
}

.jurisdiction-notice a {
    color: var(--green);
    font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.pricing-hero {
    background: var(--surface-2);
    border-bottom: 1px solid var(--gray-border);
    padding: 64px 0 52px;
    text-align: center;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.1;
}

.pricing-hero p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

.trial-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 32px;
}

.trial-note-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

/* Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-pill);
    padding: 4px;
}

.toggle-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.toggle-label.active {
    background: var(--green);
    color: #fff;
}

.save-badge {
    background: #fff3cd;
    color: #856404;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid #ffc107;
}

/* Currency selector */
.currency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.currency-bar span {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-btn {
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--gray-border);
    background: var(--surface);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Nunito Sans', sans-serif;
}

.currency-btn:hover {
    border-color: var(--border-strong);
    color: var(--green);
}

.currency-btn.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-section {
    padding: 56px 0 64px;
}

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

.plan-card {
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all 0.2s;
}

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

.plan-card.featured {
    border-color: var(--green);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.plan-card.featured:hover {
    transform: translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.plan-tagline {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    min-height: 38px;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 6px;
}

.price-amount {
    font-family: 'Nunito', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1;
}

.price-currency {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: var(--ink-soft);
}

.price-period {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 4px;
}

.price-annual-note {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    min-height: 18px;
    margin-bottom: 20px;
}

.plan-cta {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    display: block;
}

.plan-cta-primary {
    background: var(--green);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.2s;
    font-family: 'Nunito Sans', sans-serif;
    border: 2px solid var(--green);
}

.plan-cta-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(74, 140, 42, 0.3);
}

.plan-cta-outline {
    background: transparent;
    color: var(--green);
    padding: 12px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.2s;
    font-family: 'Nunito Sans', sans-serif;
    border: 2px solid var(--green);
}

.plan-cta-outline:hover {
    background: var(--green);
    color: #fff;
}

.plan-limits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.limit-item {
    background: var(--surface-2);
    border-radius: 8px;
    padding: 10px 12px;
}

.limit-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-muted);
    font-weight: 700;
    margin-bottom: 3px;
}

.limit-val {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.features-divider {
    border: none;
    border-top: 1px solid var(--gray-border);
    margin: 20px 0 16px;
}

.features-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink-muted);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.feature-item.included {
    color: var(--ink-soft);
}

.feature-item.excluded {
    color: var(--ink-muted);
    opacity: 0.5;
}

.fi-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    margin-top: 1px;
}

.fi-icon.yes {
    background: var(--green-bg);
    color: var(--green);
}

.fi-icon.no {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Enterprise card special */
.plan-card.enterprise {
    background: var(--ink);
    border-color: var(--ink);
}

.plan-card.enterprise .plan-name {
    color: rgba(255, 255, 255, 0.5);
}

.plan-card.enterprise .plan-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.plan-card.enterprise .price-amount {
    color: #fff;
}

.plan-card.enterprise .price-currency {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card.enterprise .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.plan-card.enterprise .price-annual-note {
    color: var(--green-light);
}

.plan-card.enterprise .limit-item {
    background: rgba(255, 255, 255, 0.07);
}

.plan-card.enterprise .limit-label {
    color: rgba(255, 255, 255, 0.4);
}

.plan-card.enterprise .limit-val {
    color: #fff;
}

.plan-card.enterprise .features-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-card.enterprise .features-label {
    color: rgba(255, 255, 255, 0.4);
}

.plan-card.enterprise .feature-item.included {
    color: rgba(255, 255, 255, 0.75);
}

.plan-card.enterprise .feature-item.excluded {
    color: rgba(255, 255, 255, 0.25);
}

.plan-card.enterprise .fi-icon.yes {
    background: rgba(74, 140, 42, 0.3);
    color: #5fa832;
}

.plan-card.enterprise .fi-icon.no {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

.plan-card.enterprise .plan-cta-primary {
    background: var(--green);
    border-color: var(--green);
}

.plan-card.enterprise:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   FULL FEATURE TABLE
   ============================================================ */
.feature-table-section {
    padding: 0 0 72px;
}

.feature-table-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.ft-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ft-table thead th {
    padding: 14px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    background: var(--surface-2);
    border-bottom: 2px solid var(--gray-border);
}

.ft-table thead th:first-child {
    text-align: left;
    width: 38%;
}

.ft-table thead th.col-featured {
    background: var(--green-bg);
    color: var(--green);
    border-bottom-color: var(--green);
}

.ft-table thead th.col-enterprise {
    background: var(--ink);
    color: #fff;
}

.ft-table tbody td {
    padding: 11px 18px;
    font-size: 13px;
    border-bottom: 1px solid var(--gray-border);
    text-align: center;
    color: var(--ink-soft);
}

.ft-table tbody td:first-child {
    text-align: left;
    color: var(--ink);
    font-weight: 500;
}

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

.ft-table tbody tr:hover td {
    background: var(--surface-2);
}

.ft-table .section-row td {
    background: var(--surface-3);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    padding: 8px 18px;
    border-bottom: 1px solid var(--gray-border);
    text-align: left;
}

.ft-table .section-row td.col-featured-bg {
    background: rgba(74, 140, 42, 0.06);
}

.ft-table .section-row td.col-enterprise-bg {
    background: rgba(26, 34, 18, 0.05);
}

.ft-check {
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
}

.ft-dash {
    color: #d1d5db;
    font-size: 18px;
}

.ft-val {
    font-weight: 600;
    color: var(--ink);
}

td.col-featured-bg {
    background: rgba(74, 140, 42, 0.03);
}

td.col-enterprise-bg {
    background: rgba(26, 34, 18, 0.02);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--surface-2);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 64px 0;
}

.faq-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
}

.faq-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 28px;
}

.cta-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 12px;
}

.cta-note strong {
    color: var(--green);
}

/* ============================================================
   Other Pages (Legal/Impressum)
   ============================================================ */

#legal.page-hero {
    background: #9b8fa8;
    padding: 56px 0;
    text-align: center;
}

#legal.page-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.legal-body {
    padding: 56px 0 80px;
}

.legal-inner {
    max-width: 780px;
    margin: 0 auto;
}

.legal-inner h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin: 32px 0 10px;
}

.legal-inner h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 8px;
}

.legal-inner p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 12px;
    line-height: 1.75;
}

.legal-inner ul {
    margin: 8px 0 14px 20px;
}

.legal-inner ul li {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 6px;
    line-height: 1.7;
}

.legal-inner a {
    color: var(--green);
    text-decoration: none;
}

.legal-inner a:hover {
    text-decoration: underline;
}

.legal-date {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-border);
}

.jurisdiction-box {
    background: var(--green-bg);
    border: 1px solid rgba(74, 140, 42, 0.25);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 16px 0;
}

.jurisdiction-box p {
    margin: 0;
    font-size: 13px;
}


/* HERO BANNER */
.contact-us .page-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #2d3a25;
}

.contact-us .page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
    opacity: 0.35;
}

.contact-us .page-hero-content {
    position: relative;
    z-index: 1;
}

.contact-us .page-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.contact-us .page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* CONTACT BODY */
.contact-section {
    padding: 64px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

/* FORM */
.contact-form-wrap h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 14px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 140, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 10px;
}

.btn-submit {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(74, 140, 42, 0.35);
}

/* FIND US */
.find-us {
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.find-us h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ink);
}

.find-us-block {
    margin-bottom: 24px;
}

.find-us-block:last-child {
    margin-bottom: 0;
}

.find-us-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.find-us-block p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.find-us-block a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.find-us-block a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 16px;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-bg);
}


/* ============================================================
   Register 
   ============================================================ */

#register.page-hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2d3a25;
}

#register .page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
    opacity: 0.3;
}

#register .page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

#register.page-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

#register.page-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    margin-top: 12px;
}

.trial-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

/* ============================================================
   REGISTER LAYOUT
   ============================================================ */
.register-section {
    padding: 48px 0 80px;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-card-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--gray-border);
    background: var(--surface-2);
}

.form-card-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}

.form-card-header p {
    font-size: 13px;
    color: var(--ink-muted);
}

.form-card-body {
    padding: 28px;
}

/* Section headers within form */
.form-section {
    margin-bottom: 28px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Form groups */
.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.form-label .req {
    color: var(--green);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    line-height: 1.4;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 140, 42, 0.1);
}

.form-control::placeholder {
    color: var(--ink-muted);
    opacity: 0.6;
}

.form-hint {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 5px;
    line-height: 1.5;
}

/* Domain field */
.domain-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.domain-prefix {
    padding: 10px 12px;
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.form-group .domain-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--gray-border);
    border-radius: 0;
    border-right: none;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group .domain-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 140, 42, 0.1);
}

.domain-suffix {
    padding: 10px 12px;
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-left: none;
    border-right: none;
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-check-avail {
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    white-space: nowrap;
    transition: all 0.15s;
}

.btn-check-avail:hover {
    background: var(--green-bg);
    border-color: var(--border-strong);
}

.avail-result {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.avail-result.available {
    color: var(--green);
}

.avail-result.taken {
    color: #dc2626;
}

/* Password strength */
.password-strength {
    margin-top: 6px;
    display: none;
}

.strength-bar {
    height: 4px;
    border-radius: 2px;
    background: var(--gray-border);
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
    width: 0%;
}

.strength-label {
    font-size: 11px;
    color: var(--ink-muted);
}

/* Terms checkbox */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.terms-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green);
    cursor: pointer;
}

.terms-row label {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    cursor: pointer;
}

.terms-row label a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.terms-row label a:hover {
    text-decoration: underline;
}

/* Submit button */
.btn-submit-full {
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

.btn-submit-full:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-submit-full:disabled {
    background: var(--ink-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-note {
    font-size: 12px;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 10px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.register-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
}

.trial-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trial-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.tf-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-compare {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-border);
    font-size: 13px;
}

.plan-row:last-child {
    border-bottom: none;
}

.plan-row-label {
    color: var(--ink-soft);
}

.plan-row-val {
    font-weight: 700;
    color: var(--ink);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
}

.plan-row-val.green {
    color: var(--green);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-soft);
}

.sec-icon {
    font-size: 16px;
    flex-shrink: 0;
}