:root {
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --accent: #3b82f6;
    --accent-light: #eff6ff;
    --bg: #f8fafc;
    --card: #fff;
    --text: #1a1d21;
    --muted: #64748b;
    --border: #e2e8f0;
    --success: #059669;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
}

* { box-sizing: border-box; }

body.website-body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.site-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px;
}

.site-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
}

.site-logo:hover { text-decoration: none; }

.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.site-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.site-nav a:hover { background: var(--accent-light); text-decoration: none; }
.site-nav a.active { background: var(--accent-light); color: var(--primary); font-weight: 600; }

.text-center { text-align: center; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Home hero */
.hero-home { padding: 64px 0 72px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}
.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin: 0 0 12px;
}
.hero-highlight { color: #7dd3fc; }
.hero-lead { font-size: 1.125rem; max-width: 520px; opacity: 0.95; margin-bottom: 28px; }
.hero-panel-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 28px;
}
.hero-panel-title { font-weight: 700; margin: 0 0 16px; font-size: 1rem; }
.hero-checklist { list-style: none; padding: 0; margin: 0 0 20px; }
.hero-checklist li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}
.hero-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #7dd3fc;
}
.btn-block { display: block; width: 100%; text-align: center; }

.stats-bar {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-value { display: block; font-size: 1.35rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--muted); }

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}
.section-head .section-sub { margin-bottom: 0; flex: 1; min-width: 200px; }
.section-link { font-weight: 600; font-size: 14px; white-space: nowrap; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.services-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.services-page-section {
    padding-top: 48px;
    padding-bottom: 56px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px 26px;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 14px 40px rgba(30, 58, 95, 0.12);
}

.service-card-icon-wrap {
    margin-bottom: 18px;
}

.service-card-title {
    margin: 0 0 10px;
    font-size: 1.12rem;
    line-height: 1.35;
    color: var(--primary);
}

.service-card-summary {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.service-card-expanded {
    padding-bottom: 24px;
}

.service-card-expanded .service-card-summary {
    margin-bottom: 16px;
    flex: 0;
}

.service-card-points {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.service-card-points li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
}

.service-card-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.85;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--accent-light) 0%, #dbeafe 100%);
    color: var(--accent);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.step-card {
    text-align: center;
    padding: 28px 20px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 16px;
}
.step-card h3 { margin: 0 0 10px; color: var(--primary); }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.plans-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.plan-teaser-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.plan-teaser-card.featured { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.plan-teaser-card h3 { margin: 0 0 8px; color: var(--primary); }
.plan-teaser-price { font-size: 1.5rem; font-weight: 700; margin: 0 0 8px; }
.plan-teaser-price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.plan-teaser-desc { font-size: 13px; color: var(--muted); margin: 0; }

.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a8a 100%);
    color: #fff;
    padding: 56px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h2 { margin: 0 0 8px; font-size: 1.75rem; }
.cta-inner p { margin: 0; opacity: 0.9; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-outline {
    border-color: rgba(255,255,255,0.5) !important;
    color: #fff !important;
}
.cta-outline:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }

/* Services page */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a8a 100%);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}
.page-hero h1 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 2.5rem); }
.page-hero .hero-eyebrow { opacity: 0.9; }
.page-hero-lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.125rem;
    opacity: 0.92;
    line-height: 1.65;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(30, 58, 95, 0.1);
}

.why-card-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h3 { margin: 0 0 10px; color: var(--primary); font-size: 1.08rem; }
.why-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

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

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

.btn-outline:hover { background: var(--accent-light); color: var(--primary); }

.btn-sm { padding: 6px 14px; font-size: 13px; }

.hero {
    padding: 72px 0 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a8a 100%);
    color: #fff;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 700;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 0 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero .btn-primary { background: #fff; color: var(--primary); }
.hero .btn-primary:hover { background: #f1f5f9; color: var(--primary-dark); }

.hero .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

.section { padding: 56px 0; }

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--primary);
}

.section-sub { color: var(--muted); margin: 0 0 32px; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.feature-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--primary); }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Blog */
.page-hero.blog-hero {
    padding: 56px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e4976 100%);
    color: #fff;
}
.page-hero.blog-hero h1 { margin: 0 0 12px; font-size: 2.25rem; }
.page-hero.blog-hero .lead { margin: 0; opacity: 0.92; max-width: 560px; font-size: 1.1rem; }

.blog-list-section { padding-top: 40px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.15s, box-shadow 0.15s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.14);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eef5 0%, #d4dce8 100%);
    text-decoration: none;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.03);
}

.blog-card-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.35;
    background: linear-gradient(145deg, #eef3f9 0%, #dce6f2 100%);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}

.blog-card-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--accent);
}

.blog-meta {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 10px;
}

.blog-meta-sep { margin: 0 6px; opacity: 0.6; }

.blog-excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}

.blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: auto;
}

.blog-card-read-more:hover {
    text-decoration: underline;
}

.blog-post-section { padding-top: 32px; }

.blog-post-container {
    max-width: 820px;
    margin: 0 auto;
}

.blog-breadcrumb {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

.blog-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.blog-breadcrumb a:hover { text-decoration: underline; }

.blog-breadcrumb span:last-child {
    color: var(--text);
    font-weight: 500;
}

.blog-back-link {
    margin-top: 32px;
    font-size: 15px;
}

.blog-back-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.blog-back-link a:hover { text-decoration: underline; }

.post-article {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.post-article-single {
    max-width: none;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

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

.post-meta { margin-bottom: 14px; }

.post-title {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.2;
    color: var(--primary);
}

.post-lead {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 640px;
}

.post-featured {
    margin: 0 0 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.post-featured img {
    display: block;
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

.post-empty-body {
    font-style: italic;
    margin: 0;
}

.post-body { margin-top: 8px; }
.post-body p { margin: 0 0 1em; }

.cms-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.cms-content h2, .cms-content h3 { color: var(--primary); margin: 1.5em 0 0.5em; }
.cms-content ul, .cms-content ol { margin: 0 0 1em; padding-left: 1.5em; }
.cms-content a { color: var(--accent); }
.cms-content blockquote {
    margin: 1em 0;
    padding: 12px 20px;
    border-left: 4px solid var(--accent);
    background: var(--bg);
    color: var(--muted);
}

.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}

/* Registration form — full width */
.register-section {
    padding-top: 40px;
    padding-bottom: 64px;
}



.register-header {
    text-align: center;
    margin-bottom: 32px;
}

.register-header h1 {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
}

.register-header p {
    margin: 0 auto;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
}

.register-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 44px;
}

.form-section {
    border: none;
    margin: 0 0 36px;
    padding: 0 0 36px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 28px;
}

.form-section legend {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

.form-section-intro {
    margin: -8px 0 20px;
    font-size: 14px;
    color: var(--muted);
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.required {
    color: #dc2626;
    font-weight: 600;
}

.form-readonly {
    margin: 0;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: ui-monospace, monospace;
    color: var(--primary);
    word-break: break-all;
}

.color-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-input-row input[type="color"] {
    width: 48px;
    height: 42px;
    padding: 2px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.color-input-row input[type="text"] {
    flex: 1;
}

.plan-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.plan-option {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.plan-option:hover {
    border-color: var(--accent);
}

.plan-option.selected {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.plan-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-option-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
}

.plan-option-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.plan-option-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 4px;
    width: auto;
    flex-shrink: 0;
}

.form-actions {
    text-align: center;
    padding-top: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    min-width: 240px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

.form-error { color: #dc2626; font-size: 13px; margin-top: 4px; }

.form-group.has-error .form-hint { color: #dc2626; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea,
.input-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.plan-select-grid.has-error .plan-option {
    border-color: #dc2626;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2);
}

.register-alert {
    margin-bottom: 24px;
}

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

.register-success-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 44px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.register-success-note {
    color: var(--muted);
    margin: 20px 0 24px;
    line-height: 1.6;
}

.register-form.is-submitting {
    opacity: 0.65;
    pointer-events: none;
}

.register-form.is-submitting [type="submit"] {
    cursor: wait;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success { background: #ecfdf5; color: var(--success); border: 1px solid #a7f3d0; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    color: var(--text);
}
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    padding: 32px 0;
    margin-top: auto;
    font-size: 14px;
}

.site-footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer a { color: rgba(255,255,255,.9); }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.pricing-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    color: var(--primary);
}

.pricing-price { margin: 0 0 16px; }
.pricing-price .amount { font-size: 2rem; font-weight: 700; color: var(--text); }
.pricing-price .period { font-size: 14px; color: var(--muted); }

.pricing-desc {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { max-width: 400px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid, .why-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .register-form {
        padding: 24px 20px;
    }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; width: 100%; }
    .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .hero { padding: 48px 0; }
    .form-card, .post-article { padding: 24px; }
    .site-nav .nav-hide-mobile { display: none; }
    .register-container { padding: 0 16px; }
}

.ticket-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.ticket-message {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border, #e2e8f0);
    background: #fff;
}
.ticket-message-staff {
    border-left: 4px solid var(--primary, #0d6efd);
    background: #f0f7ff;
}
.ticket-message-guest {
    border-left: 4px solid #cbd5e1;
}
.ticket-message-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.ticket-message-meta strong { color: #0f172a; }
.ticket-message-body { line-height: 1.6; }
