/* Public marketing site — modern SaaS landing */

:root {
    --website-primary: #000b5d;
    --website-primary-dark: #000849;
    --website-primary-light: #e8ebf7;
    --website-accent: #001a8a;
    --website-link-on-dark: #8da4e0;
    --website-border-accent: #b8c6e8;
    --website-text: #0f172a;
    --website-muted: #64748b;
    --website-border: #e2e8f0;
    --website-surface: #ffffff;
    --website-bg-muted: #f8fafc;
    --website-radius-sm: 8px;
    --website-radius: 12px;
    --website-radius-lg: 16px;
    --website-radius-pill: 999px;
    --website-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --website-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --website-shadow-lg: 0 20px 50px rgba(0, 11, 93, 0.18);
    --website-container: 1180px;
    --website-header-h: 72px;
}

* { box-sizing: border-box; }

.website-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.website-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--website-text);
    background: var(--website-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.website-container {
    width: min(100% - 2.5rem, var(--website-container));
    margin: 0 auto;
}

/* ── Topbar ─────────────────────────────────────────────── */

.website-topbar {
    background: var(--website-primary);
    color: #e2e8f0;
    font-size: 0.8125rem;
}

.website-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.website-topbar-text { margin: 0; }

.website-topbar a {
    color: var(--website-link-on-dark);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.35rem;
}

.website-topbar a:hover { color: #b3c1eb; }

.website-topbar-actions a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
}

.website-topbar-actions a:hover { color: #fff; }

/* ── Header ─────────────────────────────────────────────── */

.website-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--website-border);
}

.website-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--website-header-h);
}

.website-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.website-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.website-nav a {
    color: var(--website-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--website-radius-sm);
    transition: color 0.15s, background 0.15s;
}

.website-nav a:hover {
    color: var(--website-text);
    background: var(--website-bg-muted);
}

.website-nav a.website-btn,
.website-nav a.website-btn:hover {
    color: #fff;
    background: var(--website-primary);
}

.website-nav a.website-btn-primary:hover {
    background: var(--website-primary-dark);
    color: #fff;
}

.website-nav-login { margin-right: 0.25rem; }

.website-nav-dropdown {
    position: relative;
}

.website-nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--website-muted);
    background: none;
    border: 0;
    font: inherit;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--website-radius-sm);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.website-nav-dropdown-trigger:hover,
.website-nav-dropdown.is-open .website-nav-dropdown-trigger,
.website-nav-dropdown.is-active .website-nav-dropdown-trigger {
    color: var(--website-text);
    background: var(--website-bg-muted);
}

.website-nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 180px;
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-sm);
    box-shadow: var(--website-shadow);
    padding: 0.35rem;
    z-index: 120;
}

.website-nav-dropdown-panel a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
}

.website-user-menu {
    position: relative;
    margin-left: 0.25rem;
}

.website-user-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.55rem 0.35rem 0.35rem;
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-pill);
    background: var(--website-surface);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.website-user-menu-trigger:hover,
.website-user-menu.is-open .website-user-menu-trigger {
    border-color: var(--website-border-accent);
    box-shadow: 0 0 0 3px rgba(0, 11, 93, 0.12);
}

.website-user-menu-avatar,
.website-user-menu-head-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.website-user-menu-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--website-text);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.website-user-menu-chevron {
    color: var(--website-muted);
}

.website-user-menu-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(280px, 88vw);
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius);
    box-shadow: var(--website-shadow-lg);
    z-index: 130;
    overflow: hidden;
}

.website-user-menu-head {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--website-border);
    background: var(--website-bg-muted);
}

.website-user-menu-head strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--website-text);
}

.website-user-menu-head span {
    display: block;
    font-size: 0.8125rem;
    color: var(--website-muted);
    word-break: break-word;
}

.website-user-menu-links {
    padding: 0.5rem;
}

.website-user-menu-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: var(--website-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.website-user-menu-links a:hover {
    background: var(--website-bg-muted);
    color: var(--website-primary-dark);
}

.website-user-menu-footer {
    border-top: 1px solid var(--website-border);
    padding: 0.5rem;
}

.website-user-menu-logout {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: #b91c1c;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}

.website-user-menu-logout:hover {
    background: #fef2f2;
}

.website-topbar-user {
    color: #cbd5e1;
    margin-right: 0.75rem;
    font-weight: 600;
}

.website-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.35rem;
    cursor: pointer;
    border-radius: var(--website-radius-sm);
}

.website-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--website-text);
    border-radius: 1px;
}

/* ── Buttons ────────────────────────────────────────────── */

.website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--website-radius-sm);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    font-family: inherit;
    line-height: 1.2;
}

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

.website-btn-primary:hover {
    background: var(--website-primary-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 11, 93, 0.4);
}

.website-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.website-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.website-header .website-btn-ghost {
    background: transparent;
    border-color: var(--website-border);
    color: var(--website-text);
}

.website-header .website-btn-ghost:hover {
    background: var(--website-bg-muted);
    border-color: var(--website-border);
    color: var(--website-text);
}

.website-btn-light {
    background: #fff;
    color: var(--website-primary-dark);
    box-shadow: var(--website-shadow-sm);
}

.website-btn-light:hover {
    background: #f8fafc;
    color: var(--website-primary-dark);
    box-shadow: var(--website-shadow);
}

.website-btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.website-btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
.website-btn-block { width: 100%; }

.website-btn-search {
    border-radius: 0 var(--website-radius-sm) var(--website-radius-sm) 0;
    padding: 0 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────────────── */

.website-hero {
    position: relative;
    color: #fff;
    padding: 3.5rem 0 5rem;
    overflow: hidden;
}

.website-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 26, 138, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 11, 93, 0.35) 0%, transparent 50%),
        linear-gradient(155deg, #0f172a 0%, #1e1b4b 42%, #312e81 100%);
    z-index: 0;
}

.website-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.website-eyebrow {
    display: inline-block;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--website-link-on-dark);
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--website-radius-pill);
}

.website-hero h1 {
    font-size: clamp(2.125rem, 4.5vw, 3.375rem);
    line-height: 1.08;
    margin: 0 0 1.125rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.website-lead {
    font-size: 1.0625rem;
    color: #cbd5e1;
    max-width: 34rem;
    margin: 0 0 1.75rem;
    line-height: 1.65;
}

.website-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.website-hero-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--website-radius-lg);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.website-hero-stat {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.website-hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.website-hero-stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.website-hero-stat span {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ── Domain search ──────────────────────────────────────── */

.website-domain-search {
    max-width: 100%;
    margin: 0;
}

.website-domain-input-wrap {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: var(--website-radius);
    overflow: hidden;
    box-shadow: var(--website-shadow-lg);
}

.website-domain-prefix {
    display: flex;
    align-items: center;
    padding: 0 0 0 1.125rem;
    color: var(--website-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    background: #f8fafc;
    border-right: 1px solid var(--website-border);
    flex-shrink: 0;
}

.website-domain-input-wrap input {
    flex: 1;
    border: 0;
    padding: 1rem 1.125rem;
    font-size: 1rem;
    outline: none;
    min-width: 0;
    color: var(--website-text);
    font-family: inherit;
}

.website-domain-hint {
    color: #94a3b8;
    font-size: 0.8125rem;
    margin: 0.75rem 0 0;
}

.website-domain-results {
    margin: 1rem 0 0;
}

.website-domain-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius);
    overflow: hidden;
    color: var(--website-text);
    box-shadow: var(--website-shadow);
}

.website-domain-table th,
.website-domain-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--website-border);
    font-size: 0.9375rem;
}

.website-domain-table th {
    background: var(--website-bg-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--website-muted);
    font-weight: 600;
}

.website-domain-table tr:last-child td { border-bottom: 0; }

.website-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: var(--website-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

.website-badge-success { background: #dcfce7; color: #166534; }
.website-badge-danger { background: #fee2e2; color: #991b1b; }
.website-badge-info { background: var(--website-primary-light); color: var(--website-primary-dark); }
.website-badge-muted { background: #f1f5f9; color: #475569; }

/* ── Sections ───────────────────────────────────────────── */

.website-section { padding: 5rem 0; }
.website-section-muted { background: var(--website-bg-muted); }

.website-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.website-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--website-primary);
    margin: 0 0 0.75rem;
}

.website-section-head h2 {
    margin: 0 0 0.875rem;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.website-section-head p {
    margin: 0;
    color: var(--website-muted);
    font-size: 1.0625rem;
}

/* ── Feature cards ──────────────────────────────────────── */

.website-feature-grid,
.website-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.website-feature-card {
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    padding: 2rem;
    box-shadow: var(--website-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.website-pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    overflow: hidden;
}

.website-feature-card:hover {
    box-shadow: var(--website-shadow);
    transform: translateY(-3px);
    border-color: var(--website-border-accent);
}

.website-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--website-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.website-feature-icon-domains {
    background: #eef2ff;
    color: var(--website-primary);
}

.website-feature-icon-hosting {
    background: #ecfdf5;
    color: #059669;
}

.website-feature-icon-email {
    background: #fef3c7;
    color: #d97706;
}

.website-feature-card h3,
.website-pricing-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.website-feature-card p,
.website-pricing-desc {
    color: var(--website-muted);
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.website-link-arrow {
    color: var(--website-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

.website-link-arrow:hover {
    color: var(--website-primary-dark);
}

/* ── Pricing ────────────────────────────────────────────── */

.website-pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    padding: 0.35rem;
    background: var(--website-bg-muted);
    border-radius: var(--website-radius-pill);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--website-border);
}

.website-pricing-tab {
    border: none;
    background: transparent;
    color: var(--website-muted);
    padding: 0.55rem 1.25rem;
    border-radius: var(--website-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.website-pricing-tab.is-active {
    background: var(--website-surface);
    color: var(--website-primary);
    box-shadow: var(--website-shadow-sm);
}

.website-pricing-tab:hover:not(.is-active) {
    color: var(--website-text);
}

.website-pricing-card:hover {
    box-shadow: var(--website-shadow);
    border-color: var(--website-border-accent);
}

.website-pricing-badge {
    display: inline-block;
    background: var(--website-primary-light);
    color: var(--website-primary-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: var(--website-radius-pill);
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.website-pricing-card-header,
.website-pricing-card-body,
.website-pricing-card-footer {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.website-pricing-card-header {
    padding-top: 1.75rem;
}

.website-pricing-card-body {
    flex: 1 1 auto;
    padding-top: 0.25rem;
    padding-bottom: 1rem;
}

.website-pricing-card-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.75rem;
    border-top: 1px solid var(--website-border);
    background: linear-gradient(180deg, #fff 0%, var(--website-bg-muted) 100%);
}

.website-pricing-features {
    margin-bottom: 1.25rem;
}

.website-pricing-features-title {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--website-primary-dark);
}

.website-pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.website-pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--website-text);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.website-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--website-primary);
    box-shadow: 0 0 0 3px var(--website-primary-light);
}

.website-pricing-amount {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--website-primary-dark);
    letter-spacing: -0.02em;
}

.website-pricing-price-note {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    color: var(--website-muted);
    line-height: 1.5;
}

.website-pricing-card .website-pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff !important;
    background: var(--website-primary) !important;
    border: 2px solid var(--website-primary-dark) !important;
    border-radius: var(--website-radius);
    box-shadow: 0 6px 18px rgba(0, 11, 93, 0.28);
}

.website-pricing-card .website-pricing-cta:hover:not(:disabled) {
    background: var(--website-primary-dark) !important;
    border-color: var(--website-primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 11, 93, 0.34);
}

.website-pricing-card .website-pricing-cta:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.website-pricing-note {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
    color: var(--website-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.website-pricing-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--website-radius-lg);
    border: 1px solid var(--website-border);
    background: var(--website-bg-muted);
}

.website-pricing-context-copy {
    flex: 1 1 20rem;
}

.website-pricing-context-copy strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--website-text);
    font-size: 1rem;
}

.website-pricing-context-copy p {
    margin: 0;
    color: var(--website-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.website-pricing-context-copy a {
    color: var(--website-primary-dark);
    font-weight: 600;
}

.website-pricing-context-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.website-pricing-context-auth {
    background: linear-gradient(135deg, var(--website-primary-light) 0%, #fff 100%);
    border-color: var(--website-border-accent);
}

.website-pricing-context-guest {
    background: linear-gradient(135deg, #fff 0%, var(--website-primary-light) 100%);
}

.website-pricing-footer-cta {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--website-border);
}

.website-pricing-footer-cta p {
    margin: 0 0 1rem;
    color: var(--website-muted);
    font-size: 1rem;
    font-weight: 600;
}

.website-support-pricing {
    background: var(--website-bg-muted);
}

.website-user-subscriptions {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-sm);
}

.website-user-subscriptions-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.website-user-subscriptions-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.375rem;
}

.website-user-subscriptions-head p {
    margin: 0;
    color: var(--website-muted);
    font-size: 0.9375rem;
}

.website-user-subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.website-user-subscription-card {
    padding: 1.25rem;
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius);
    background: var(--website-bg-muted);
}

.website-user-subscription-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.website-user-subscription-top h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.website-user-subscription-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.website-user-subscription-meta dt {
    margin: 0 0 0.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--website-muted);
}

.website-user-subscription-meta dd {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--website-text);
}

.website-user-subscription-interval {
    font-weight: 500;
    color: var(--website-muted);
    font-size: 0.8125rem;
}

.website-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px dashed var(--website-border);
    border-radius: var(--website-radius-lg);
    color: var(--website-muted);
    background: var(--website-bg-muted);
}

.website-empty-state .website-btn { margin-top: 1rem; }

/* ── CTA ────────────────────────────────────────────────── */

.website-cta {
    background: linear-gradient(135deg, var(--website-primary) 0%, var(--website-primary-dark) 100%);
    color: #fff;
    padding: 4rem 0;
}

.website-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.website-cta-copy h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.website-cta-copy p {
    margin: 0;
    color: #b3c1eb;
    font-size: 1.0625rem;
}

/* ── Footer ─────────────────────────────────────────────── */

.website-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2.5rem;
}

.website-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
}

.website-footer-logo {
    height: 34px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.website-footer h6 {
    color: #f1f5f9;
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.website-footer a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

.website-footer a:hover { color: #f1f5f9; }

.website-footer-copy {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 280px;
}

/* ── Alerts ─────────────────────────────────────────────── */

.website-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--website-radius);
    font-size: 0.9375rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.website-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.website-alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* ── Cart ───────────────────────────────────────────────── */

.website-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--website-muted);
    padding: 0.5rem;
    border-radius: var(--website-radius-sm);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    margin-left: 0.25rem;
}

.website-cart-btn:hover {
    background: var(--website-primary-light);
    color: var(--website-primary);
}

.website-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--website-radius-pill);
    background: var(--website-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Form controls ──────────────────────────────────────── */

.website-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--website-muted);
    margin-bottom: 0.4rem;
}

.website-input,
.website-select {
    width: 100%;
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-sm);
    padding: 0.65rem 0.875rem;
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--website-surface);
    transition: border-color 0.15s, box-shadow 0.15s;
    color: var(--website-text);
}

.website-input:focus,
.website-select:focus {
    outline: none;
    border-color: var(--website-primary);
    box-shadow: 0 0 0 3px rgba(0, 11, 93, 0.15);
}

.website-pricing-domain,
.website-pricing-select {
    margin-bottom: 0.875rem;
}

.website-add-to-cart.is-added {
    background: #059669;
    border-color: #059669;
}

.website-link-btn {
    background: none;
    border: 0;
    color: var(--website-primary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.website-link-btn:hover { text-decoration: underline; }

/* ── Toast ──────────────────────────────────────────────── */

.website-toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    padding: 0.875rem 1.25rem;
    border-radius: var(--website-radius);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--website-shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s;
}

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

.website-toast-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.website-toast-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Checkout page ──────────────────────────────────────── */

.website-checkout-hero {
    background: linear-gradient(180deg, var(--website-primary-light) 0%, var(--website-surface) 85%);
    padding: 3rem 0 2rem;
    text-align: center;
}

.website-checkout-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--website-text);
}

.website-checkout-lead {
    margin: 0 auto;
    max-width: 520px;
    color: var(--website-muted);
    font-size: 1.0625rem;
}

.website-checkout-empty-icon {
    color: var(--website-primary);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.website-checkout-empty h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.website-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--website-radius-sm);
    background: var(--website-primary-light);
    color: var(--website-primary);
    flex-shrink: 0;
}

.website-checkout-section {
    padding-top: 0;
    margin-top: -0.5rem;
    padding-bottom: 4rem;
}

.website-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.75rem;
    align-items: start;
}

.website-checkout-card {
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--website-shadow-sm);
}

.website-checkout-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.website-checkout-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.website-checkout-sub {
    color: var(--website-muted);
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
}

.website-checkout-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--website-muted);
}

.website-checkout-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.website-checkout-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--website-border);
}

.website-checkout-line:last-child { border-bottom: 0; }

.website-checkout-line-info strong {
    display: block;
    margin-bottom: 0.2rem;
}

.website-checkout-line-meta,
.website-checkout-line-domain {
    display: block;
    font-size: 0.875rem;
    color: var(--website-muted);
}

.website-checkout-line-domain {
    color: var(--website-primary);
    font-weight: 500;
    margin-top: 0.15rem;
}

.website-checkout-line-actions {
    text-align: right;
    flex-shrink: 0;
}

.website-checkout-line-price {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.website-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.website-form-field {
    margin-bottom: 1rem;
}

.website-checkout-login-hint {
    font-size: 0.875rem;
    color: var(--website-muted);
    margin: 0;
}

.website-checkout-login-hint a {
    color: var(--website-primary);
    font-weight: 600;
}

.website-checkout-signed-in {
    background: var(--website-primary-light);
    border-color: var(--website-border-accent);
}

.website-checkout-summary {
    position: sticky;
    top: calc(var(--website-header-h) + 1rem);
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--website-shadow);
}

.website-checkout-summary h2 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.website-summary-lines {
    margin-bottom: 1rem;
}

.website-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
    padding: 0.45rem 0;
    color: var(--website-muted);
}

.website-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--website-border);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.website-summary-total strong {
    font-size: 1.125rem;
    color: var(--website-primary-dark);
}

.website-checkout-trust {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--website-muted);
}

.website-checkout-trust li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4rem 0;
}

.website-checkout-inquiry-alert {
    margin: 0 0 1.25rem;
    text-align: left;
    max-width: none;
}

.website-checkout-inquiry-required .website-btn {
    margin-top: 0.25rem;
}

.website-checkout-note {
    color: #991b1b;
    font-size: 0.875rem;
    text-align: center;
    margin: 0.75rem 0 0;
}

.website-checkout-inquiry-link {
    text-align: center;
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
}

.website-checkout-inquiry-link a {
    color: var(--brand-primary, #000b5d);
    font-weight: 600;
    text-decoration: none;
}

.website-checkout-inquiry-link a:hover {
    text-decoration: underline;
}

.website-link-center {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--website-muted);
    font-size: 0.875rem;
    text-decoration: none;
}

.website-link-center:hover { color: var(--website-primary); }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 992px) {
    .website-hero-grid,
    .website-feature-grid,
    .website-pricing-grid,
    .website-footer-grid,
    .website-checkout-grid {
        grid-template-columns: 1fr;
    }

    .website-hero-visual {
        order: -1;
    }

    .website-hero-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.25rem;
    }

    .website-hero-stat {
        padding-bottom: 0;
        border-bottom: none;
        text-align: center;
    }

    .website-hero-stat strong {
        font-size: 1.5rem;
    }

    .website-form-row {
        grid-template-columns: 1fr;
    }

    .website-checkout-summary {
        position: static;
    }

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

    .website-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--website-surface);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        border-bottom: 1px solid var(--website-border);
        box-shadow: var(--website-shadow);
        gap: 0.25rem;
    }

    .website-nav.is-open { display: flex; }

    .website-nav-dropdown-panel {
        position: static;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 0.75rem;
        margin-top: 0.25rem;
    }

    .website-user-menu-panel {
        right: 0;
        left: auto;
    }

    .website-header { position: sticky; }

    .website-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .website-cta .website-btn-light {
        width: 100%;
        max-width: 320px;
    }
}

/* ── Support page ───────────────────────────────────────── */

.website-body-support {
    background: var(--website-bg-muted);
}

.website-support-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.website-support-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0, 11, 93, 0.22), transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0, 26, 138, 0.18), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    pointer-events: none;
}

.website-support-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.website-support-hero-copy h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--website-text);
}

.website-support-hero-copy .website-eyebrow,
.website-support-section .website-eyebrow,
.website-support-access .website-eyebrow,
.website-support-channels .website-eyebrow,
.website-support-faq .website-eyebrow,
.website-support-inquiry .website-eyebrow {
    color: var(--website-primary-dark);
    background: var(--website-primary-light);
    border-color: var(--website-border-accent);
}

.website-support-hero-copy .website-lead {
    color: #475569;
}

.website-support-hero-card {
    display: grid;
    gap: 1rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-lg);
    backdrop-filter: blur(12px);
}

.website-support-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--website-primary-light);
    border-radius: var(--website-radius);
}

.website-support-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--website-primary-dark);
    letter-spacing: -0.02em;
}

.website-support-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--website-muted);
    text-align: right;
}

.website-support-section {
    background: var(--website-surface);
}

.website-support-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.website-support-card {
    padding: 1.5rem;
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.website-support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--website-shadow);
    border-color: var(--website-border-accent);
}

.website-support-card-lg {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.website-support-card-accent {
    background: linear-gradient(135deg, var(--website-primary) 0%, var(--website-primary-dark) 100%);
    border-color: transparent;
    color: #fff;
}

.website-support-card-accent h3,
.website-support-card-accent p {
    color: inherit;
}

.website-support-card-accent p {
    opacity: 0.92;
}

.website-support-card-accent .website-support-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.website-support-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--website-primary-light);
    color: var(--website-primary-dark);
    border-radius: var(--website-radius-sm);
    margin-bottom: 1rem;
}

.website-support-card-icon svg {
    width: 22px;
    height: 22px;
}

.website-support-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

.website-support-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--website-muted);
    line-height: 1.55;
}

.website-support-card-accent p {
    color: rgba(255, 255, 255, 0.94);
}

.website-support-access {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.website-support-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.website-support-access-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
}

.website-support-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.website-support-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--website-muted);
}

.website-support-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--website-primary);
    box-shadow: 0 0 0 4px var(--website-primary-light);
}

.website-support-checklist a {
    color: var(--website-primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.website-support-checklist a:hover {
    text-decoration: underline;
}

.website-support-alert {
    margin-top: 1.5rem;
}

.website-support-steps {
    display: grid;
    gap: 1rem;
}

.website-support-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-sm);
}

.website-support-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--website-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.9375rem;
    border-radius: var(--website-radius-pill);
}

.website-support-step h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.website-support-step p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--website-muted);
}

.website-support-channels {
    background: var(--website-surface);
}

.website-support-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.website-support-channel {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--website-bg-muted);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.website-support-channel:hover {
    transform: translateY(-4px);
    box-shadow: var(--website-shadow);
    border-color: var(--website-border-accent);
    color: inherit;
}

.website-support-channel-highlight {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: var(--website-border-accent);
}

.website-support-channel-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--website-surface);
    color: var(--website-primary-dark);
    border-radius: var(--website-radius);
    margin-bottom: 1.25rem;
    box-shadow: var(--website-shadow-sm);
}

.website-support-channel-icon svg {
    width: 24px;
    height: 24px;
}

.website-support-channel h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.website-support-channel p {
    margin: 0 0 1.25rem;
    flex: 1;
    font-size: 0.9375rem;
    color: var(--website-muted);
    line-height: 1.55;
}

.website-support-channel-cta {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--website-primary-dark);
}

.website-support-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--website-bg-muted);
    border-radius: var(--website-radius-pill);
    font-size: 0.9375rem;
    color: var(--website-muted);
}

.website-support-contact-bar a {
    color: var(--website-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.website-support-faq {
    background: var(--website-bg-muted);
}

.website-support-faq-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
}

.website-support-faq-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
}

.website-support-faq-list {
    display: grid;
    gap: 0.75rem;
}

.website-support-faq-item {
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius);
    overflow: hidden;
}

.website-support-faq-item summary {
    padding: 1.125rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.website-support-faq-item summary::-webkit-details-marker {
    display: none;
}

.website-support-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--website-primary);
    flex-shrink: 0;
}

.website-support-faq-item[open] summary::after {
    content: '−';
}

.website-support-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.125rem;
    color: var(--website-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.website-support-faq-item a {
    color: var(--website-primary-dark);
    font-weight: 600;
}

.website-support-inquiry {
    background: var(--website-surface);
}

.website-support-inquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.website-support-inquiry-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
}

.website-support-inquiry-perks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.65rem;
}

.website-support-inquiry-perks li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--website-muted);
    font-size: 0.9375rem;
}

.website-support-inquiry-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--website-primary);
    font-weight: 800;
}

.website-support-form-card {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-lg);
    box-shadow: var(--website-shadow-lg);
}

.website-support-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.website-support-field {
    margin-bottom: 1rem;
}

.website-support-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--website-text);
}

.website-support-field label span {
    color: #ef4444;
}

.website-support-field input,
.website-support-field select,
.website-support-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--website-text);
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.website-support-field input:focus,
.website-support-field select:focus,
.website-support-field textarea:focus {
    outline: none;
    border-color: var(--website-primary);
    box-shadow: 0 0 0 3px rgba(0, 11, 93, 0.15);
}

.website-support-field textarea {
    resize: vertical;
    min-height: 120px;
}

.website-support-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.website-support-form-alert {
    padding: 0.875rem 1rem;
    border-radius: var(--website-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.website-support-form-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.website-support-form-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.website-support-captcha .g-recaptcha {
    transform-origin: left top;
}

.website-support-captcha-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--website-muted);
}

.website-support-webform-embed .website-support-webform-fields {
    margin-bottom: 0.5rem;
}

.website-support-webform-embed .webform-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 0;
}

.website-support-webform-embed .webform-row-1 {
    grid-template-columns: 1fr;
}

.website-support-webform-embed .webform-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-support-webform-embed .webform-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.website-support-webform-embed .webform-field {
    margin-bottom: 1rem;
}

.website-support-webform-embed .webform-field label,
.website-support-webform-embed .form-heading h4 {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--website-text);
}

.website-support-webform-embed .form-heading {
    margin: 0 0 1rem;
}

.website-support-webform-embed .form-heading h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.website-support-webform-embed .form-paragraph {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: var(--website-muted);
    line-height: 1.6;
}

.website-support-webform-embed .webform-field .form-control,
.website-support-webform-embed .webform-field input[type="text"],
.website-support-webform-embed .webform-field input[type="email"],
.website-support-webform-embed .webform-field input[type="tel"],
.website-support-webform-embed .webform-field input[type="number"],
.website-support-webform-embed .webform-field textarea,
.website-support-webform-embed .webform-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--website-text);
    background: var(--website-surface);
    border: 1px solid var(--website-border);
    border-radius: var(--website-radius-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.website-support-webform-embed .webform-field .form-control:focus,
.website-support-webform-embed .webform-field input:focus,
.website-support-webform-embed .webform-field textarea:focus,
.website-support-webform-embed .webform-field select:focus {
    outline: none;
    border-color: var(--website-primary);
    box-shadow: 0 0 0 3px rgba(0, 11, 93, 0.15);
}

.website-support-webform-embed .webform-field textarea {
    resize: vertical;
    min-height: 120px;
}

.website-support-webform-embed .website-support-webform-errors {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.website-support-webform-embed .hidden {
    display: none !important;
}

.website-support-webform-embed .website-support-upload-field {
    margin-bottom: 1rem;
}

.website-support-webform-embed .website-support-dropzone {
    min-height: 140px;
    border: 2px dashed var(--website-border-accent) !important;
    border-radius: var(--website-radius-sm) !important;
    background: #f8fafc !important;
    padding: 1.25rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.website-support-webform-embed .website-support-dropzone:hover,
.website-support-webform-embed .website-support-dropzone.dz-drag-hover {
    border-color: var(--website-primary) !important;
    background: #eef2ff !important;
}

.website-support-webform-embed .website-support-dropzone .dz-message {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

.website-support-webform-embed .website-support-dropzone .dz-preview {
    margin: 0.5rem 0.35rem 0;
}

.website-support-webform-embed .website-support-captcha .g-recaptcha {
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .website-support-webform-embed .webform-row-2,
    .website-support-webform-embed .webform-row-3 {
        grid-template-columns: 1fr;
    }
}

.website-support-cta {
    background: linear-gradient(135deg, var(--website-primary) 0%, var(--website-primary-dark) 100%);
}

.website-nav a.is-active {
    color: var(--website-primary-dark);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .website-support-hero-inner,
    .website-support-access-grid,
    .website-support-faq-inner,
    .website-support-inquiry-grid {
        grid-template-columns: 1fr;
    }

    .website-support-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .website-support-card-lg {
        grid-column: span 2;
    }

    .website-support-channel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .website-support-bento {
        grid-template-columns: 1fr;
    }

    .website-support-card-lg {
        grid-column: span 1;
    }

    .website-support-form-row {
        grid-template-columns: 1fr;
    }

    .website-support-hero {
        padding: 2.5rem 0 3.5rem;
    }
}

@media (max-width: 640px) {
    .website-section { padding: 3.5rem 0; }

    .website-hero {
        padding: 2.5rem 0 3.5rem;
    }

    .website-hero-card {
        grid-template-columns: 1fr;
    }

    .website-domain-input-wrap {
        flex-direction: column;
        border-radius: var(--website-radius);
    }

    .website-domain-prefix {
        padding: 0.65rem 1rem;
        border-right: none;
        border-bottom: 1px solid var(--website-border);
    }

    .website-domain-input-wrap input {
        padding: 0.875rem 1rem;
    }

    .website-btn-search {
        border-radius: 0 0 var(--website-radius-sm) var(--website-radius-sm);
        padding: 0.875rem;
    }

    .website-pricing-tabs {
        width: 100%;
        border-radius: var(--website-radius);
    }

    .website-pricing-tab {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}
