/* Ticket HQ — design tokens */
:root {
    --background: hsl(0 0% 100%);
    --foreground: hsl(222 47% 11%);
    --primary: hsl(232 94% 63%);
    --primary-foreground: hsl(210 40% 98%);
    --secondary: hsl(210 40% 96%);
    --muted: hsl(210 40% 96%);
    --muted-foreground: hsl(215.4 16.3% 46.9%);
    --border: hsl(214 32% 91%);
    --card: hsl(0 0% 100%);
    --radius: 0.5rem;
    --highlight-red: hsl(0 84% 60%);
    --container: 1280px;
    --header-height: 5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

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

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.container-narrow {
    max-width: 48rem;
}

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

/* Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-on-primary { color: var(--primary-foreground); }
.icon-primary { color: var(--primary); }
.icon-emerald { color: hsl(160 84% 39%); }
.icon-amber { color: hsl(38 92% 50%); }
.icon-blue { color: hsl(217 91% 60%); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md), 0 4px 14px hsl(232 94% 63% / 0.2);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

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

.btn-outline:hover {
    background: var(--muted);
}

.btn-outline-light {
    background: hsl(210 40% 98% / 0.1);
    color: var(--primary-foreground);
    border: 2px solid hsl(210 40% 98% / 0.2);
}

.btn-outline-light:hover {
    background: hsl(210 40% 98% / 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
}

.btn-secondary:hover {
    filter: brightness(0.97);
}

.btn-lg {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: hsl(0 0% 100% / 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--foreground);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: flex;
    padding: 0.5rem;
    color: var(--foreground);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu-actions {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-actions .btn {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-desktop,
    .header-actions {
        display: flex;
    }

    .mobile-toggle,
    .mobile-menu {
        display: none !important;
    }
}

/* Hero */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 12rem 0 8rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, hsl(232 94% 63% / 0.1), var(--background) 50%, var(--background));
    z-index: -1;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-content {
    max-width: 42rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--highlight-red);
    background: hsl(0 84% 60% / 0.1);
    border-radius: 9999px;
    box-shadow: inset 0 0 0 1px hsl(0 84% 60% / 0.2);
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--highlight-red);
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-actions .btn-primary {
    box-shadow: var(--shadow-xl), 0 8px 24px hsl(232 94% 63% / 0.25);
}

.hero-actions .btn-outline {
    border-width: 2px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: none;
        margin: 0;
    }
}

.hero-image-frame {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(214 32% 91% / 0.5);
    box-shadow: var(--shadow-2xl);
    background: var(--background);
    position: relative;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.1);
    pointer-events: none;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-muted {
    background: hsl(210 40% 96% / 0.5);
    border-top: 1px solid hsl(214 32% 91% / 0.5);
    border-bottom: 1px solid hsl(214 32% 91% / 0.5);
}

.section-muted-light {
    background: hsl(210 40% 96% / 0.3);
    border-top: 1px solid hsl(214 32% 91% / 0.5);
    border-bottom: 1px solid hsl(214 32% 91% / 0.5);
}

.section-dark {
    background: var(--foreground);
    color: var(--background);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2,
.section-title {
    font-size: clamp(1.875rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.section-header-light p {
    color: hsl(215.4 16.3% 46.9% / 0.8);
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    padding: 1.5rem;
    background: var(--background);
    border-radius: 1rem;
    border: 1px solid hsl(214 32% 91% / 0.6);
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: hsl(232 94% 63% / 0.1);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Features */
.features-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-copy h2 {
    font-size: clamp(1.875rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-copy > p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(232 94% 63% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid hsl(214 32% 91% / 0.6);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.feature-card-highlight {
    border: 2px solid var(--highlight-red);
    background: hsl(0 84% 60% / 0.05);
}

.feature-card-highlight .icon {
    color: var(--highlight-red);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Comparison table */
.comparison-layout {
    width: 100%;
}

.comparison-mobile {
    display: none;
}

.comparison-desktop {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
}

.comparison-table thead tr {
    border-bottom: 1px solid hsl(214 32% 91% / 0.2);
}

.comparison-table th {
    font-weight: 500;
    color: hsl(215.4 16.3% 46.9% / 0.8);
}

.comparison-table th.col-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.comparison-table tbody tr {
    border-bottom: 1px solid hsl(214 32% 91% / 0.2);
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: hsl(0 0% 100% / 0.05);
}

.comparison-table td.col-highlight {
    font-weight: 700;
    color: white;
    background: hsl(232 94% 63% / 0.1);
}

.comparison-table td:not(:first-child):not(.col-highlight) {
    color: var(--muted-foreground);
}

@media (max-width: 767px) {
    .comparison-desktop {
        display: none;
    }

    .comparison-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-mobile-card {
        background: hsl(0 0% 100% / 0.04);
        border: 1px solid hsl(214 32% 91% / 0.2);
        border-radius: calc(var(--radius) + 4px);
        padding: 1.25rem;
    }

    .comparison-mobile-feature {
        font-size: 1.0625rem;
        font-weight: 700;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid hsl(214 32% 91% / 0.2);
        line-height: 1.3;
    }

    .comparison-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .comparison-mobile-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .comparison-mobile-item dt {
        font-weight: 500;
        color: hsl(215.4 16.3% 46.9% / 0.85);
        flex-shrink: 0;
    }

    .comparison-mobile-item dd {
        font-weight: 600;
        text-align: right;
        color: hsl(210 40% 96% / 0.85);
    }

    .comparison-mobile-item-hq {
        background: hsl(232 94% 63% / 0.12);
        margin: 0 -0.75rem;
        padding: 0.75rem;
        border-radius: var(--radius);
        border: 1px solid hsl(232 94% 63% / 0.35);
    }

    .comparison-mobile-item-hq dt {
        color: var(--primary);
        font-weight: 700;
    }

    .comparison-mobile-item-hq dd {
        color: white;
        font-weight: 700;
    }
}

/* Pricing */
.pricing-card-wrap {
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid hsl(214 32% 91% / 0.6);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--card);
}

.pricing-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem;
    text-align: center;
}

.pricing-rate {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-label {
    font-weight: 500;
    opacity: 0.8;
}

.pricing-sub {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body h4 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
}

.pricing-row.muted {
    color: var(--muted-foreground);
}

.pricing-total {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-body .btn {
    margin-top: 1.5rem;
    height: 3rem;
    font-size: 1rem;
}

/* Pricing comparison calculator */
.pricing-compare {
    max-width: 56rem;
    margin: 4rem auto 0;
}

.pricing-compare-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-compare-lead {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.pricing-compare-input {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-compare-input label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-input-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.price-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(232 94% 63% / 0.15);
}

.price-input-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

#ticket-price {
    width: 3rem;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: left;
}

#ticket-price:focus {
    outline: none;
}

#ticket-price::-webkit-outer-spin-button,
#ticket-price::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#ticket-price {
    -moz-appearance: textfield;
    appearance: textfield;
}

.pricing-compare-hint {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-compare-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-compare-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.pricing-compare-card {
    background: var(--card);
    border: 1px solid hsl(214 32% 91% / 0.6);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.pricing-compare-card-hq {
    border: 2px solid var(--primary);
    background: hsl(232 94% 63% / 0.03);
}

.pricing-compare-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-compare-rate {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pricing-compare-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.875rem;
}

.pricing-compare-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-compare-row dt {
    font-weight: 500;
}

.pricing-compare-row dd {
    font-weight: 600;
    white-space: nowrap;
}

.pricing-compare-row.muted dt,
.pricing-compare-row.muted dd {
    color: var(--muted-foreground);
    font-weight: 500;
}

.pricing-compare-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

.pricing-compare-row.receive {
    font-size: 1.0625rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.pricing-compare-card-hq .pricing-compare-row.receive dd {
    color: var(--primary);
}

.pricing-compare-card-eb .pricing-compare-row.receive dd {
    color: var(--muted-foreground);
}

.pricing-compare-notes {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    list-style: disc;
    padding-left: 1.125rem;
}

.pricing-compare-notes li + li {
    margin-top: 0.375rem;
}

.pricing-compare-savings {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: hsl(152 76% 36% / 0.08);
    border: 1px solid hsl(152 76% 36% / 0.2);
    border-radius: var(--radius);
    color: hsl(152 50% 28%);
}

.pricing-compare-savings strong {
    color: hsl(152 60% 24%);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid hsl(214 32% 91% / 0.6);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: hsl(38 92% 50%);
}

.testimonial-quote {
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    background: var(--muted);
}

.author-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.author-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Accordion */
.accordion {
    margin-top: 3rem;
}

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

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
}

.accordion-chevron {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--muted-foreground);
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
    max-height: 12rem;
    padding-bottom: 1.25rem;
}

.accordion-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
    z-index: -1;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--primary-foreground);
}

.cta-content h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

/* Footer */
.site-footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--muted-foreground);
    max-width: 24rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-in,
    .fade-in-delay,
    .badge-dot {
        animation: none;
        opacity: 1;
    }
}

/* Contact form */
.contact-section {
    padding-top: calc(var(--header-height) + 3rem);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-back {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.contact-back:hover {
    color: var(--primary);
}

.contact-header h1 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.contact-header > p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
}

.contact-subject-note {
    margin-top: 1rem !important;
    font-size: 0.875rem !important;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: var(--highlight-red);
}

.optional {
    font-weight: 400;
    color: var(--muted-foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font: inherit;
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(232 94% 63% / 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 9rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.turnstile-wrap {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.alert {
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.alert-success {
    background: hsl(152 76% 36% / 0.08);
    border: 1px solid hsl(152 76% 36% / 0.25);
    text-align: center;
}

.alert-success h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(152 60% 30%);
}

.alert-error {
    background: hsl(0 84% 60% / 0.08);
    border: 1px solid hsl(0 84% 60% / 0.25);
    color: hsl(0 60% 35%);
}

.alert-error ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}
