/* ==========================================================================
   MyServerGuy Website
   Aesthetic: Nordic Precision — confident, engineered, alive
   ========================================================================== */

/* --- Design Tokens — Light (default) --- */
:root {
    --font-display: 'Syne', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --bg: #f8fafc;
    --bg-elevated: #ffffff;
    --bg-subtle: #f1f5f9;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #0479ad;
    --accent-hover: #036491;
    --accent-text: #ffffff;
    --accent-glow: rgba(4, 137, 194, 0.1);
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --input-bg: #ffffff;
    --input-border: #d1d5db;
    --input-focus: #0479ad;
    --navbar-bg: rgba(255, 255, 255, 0.82);
    --navbar-border: rgba(226, 232, 240, 0.8);
    --section-alt: #f1f5f9;
    --footer-bg: #f8fafc;
    --success-bg: #ecfdf5;
    --success-border: #a7f3d0;
    --success-text: #047857;
    --error-bg: #fef2f2;
    --error-border: #fecaca;
    --error-text: #991b1b;
    --warning-bg: #fffbeb;
    --warning-border: #fde68a;
    --warning-text: #92400e;

    --hero-from: #0f172a;
    --hero-via: #1a2332;
    --hero-to: #0f172a;
    --hero-accent: #22d3ee;
}

/* --- Design Tokens — Dark --- */
[data-theme="dark"] {
    --bg: #060b18;
    --bg-elevated: #0d1424;
    --bg-subtle: #111827;
    --card-bg: #111827;
    --card-border: #1e293b;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    --card-shadow-hover: 0 12px 40px rgba(56,189,248,0.06);
    --text: #f1f5f9;
    --text-secondary: #a8b8cc;
    --text-muted: #8899ab;
    --accent: #38bdf8;
    --accent-hover: #7dd3fc;
    --accent-text: #060b18;
    --accent-glow: rgba(56,189,248,0.1);
    --border: #1e293b;
    --border-hover: #334155;
    --input-bg: #0d1424;
    --input-border: #1e293b;
    --input-focus: #38bdf8;
    --navbar-bg: rgba(6, 11, 24, 0.82);
    --navbar-border: rgba(30, 41, 59, 0.8);
    --section-alt: #0d1424;
    --footer-bg: #060b18;
    --success-bg: #052e16;
    --success-border: #166534;
    --success-text: #a7f3d0;
    --error-bg: #450a0a;
    --error-border: #991b1b;
    --error-text: #fca5a5;
    --warning-bg: #451a03;
    --warning-border: #92400e;
    --warning-text: #fde68a;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

a { color: var(--accent); }

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

.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;
}

.hidden { display: none !important; }

/* --- Container --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    line-height: 1.4;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-outline {
    background: var(--card-bg);
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: var(--border-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
    padding: 0.375rem 0.75rem;
}
.btn-ghost:hover {
    background: var(--accent-glow);
    color: var(--text);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    min-height: 36px;
}

.btn-lg {
    font-size: 1.0625rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
}

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

/* --- Inputs & Forms --- */
.input, input[type="text"], input[type="email"],
input[type="password"], input[type="tel"],
input[type="url"], input[type="search"],
textarea, select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.5;
    background: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus, input:focus, textarea:focus, select:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.input-error { border-color: var(--error-text) !important; }

.text-error {
    color: var(--error-text);
    font-size: 0.8125rem;
    margin: 0.375rem 0 0;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text);
    letter-spacing: 0.01em;
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.form-testimonial {
    margin: 1.5rem 0 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--accent);
    background: var(--bg-subtle);
    border-radius: 0 8px 8px 0;
}

.form-testimonial p {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0 0 0.375rem;
    line-height: 1.5;
}

.form-testimonial cite {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

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

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

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-fieldset {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.form-fieldset legend {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 0.375rem;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.radio-label, .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.radio-label input, .checkbox-label input {
    width: auto;
    accent-color: var(--accent);
}

/* --- Alerts --- */
.alert-success {
    padding: 1rem 1.25rem;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0 0 0.375rem;
}

.alert-success p { margin: 0; font-size: 0.875rem; }

.alert-error {
    padding: 1rem 1.25rem;
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navbar-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--navbar-border);
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar-logo {
    height: 36px;
    width: auto;
}

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

.navbar-nav > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.navbar-nav > a:hover {
    color: var(--text);
    background: var(--accent-glow);
}
.navbar-nav > a.btn-primary {
    color: var(--accent-text);
    white-space: nowrap;
}
.navbar-nav > a.btn-primary:hover {
    color: var(--accent-text);
    background: var(--accent-hover);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.nav-dropdown-trigger:hover {
    color: var(--text);
    background: var(--accent-glow);
}

.nav-chevron {
    font-size: 0.625rem;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 12rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    box-shadow: var(--card-shadow-hover);
    padding: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.1s, color 0.1s;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-glow);
    color: var(--text);
}

.nav-dropdown-menu a.active {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile toggle */
.navbar-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        gap: 0.5rem;
    }

    .navbar-nav.open { display: flex; }

    .navbar-mobile-toggle { display: flex; }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 1rem;
    }

    .theme-toggle-form { order: 10; }
}

/* Theme toggle */
.theme-toggle-form { display: inline-flex; }

.theme-toggle {
    font-size: 1.125rem;
    line-height: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--hero-from), var(--hero-via), var(--hero-to));
    color: #f1f5f9;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin: 0 0 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero-detail {
    font-size: 0.9375rem;
    color: #64748b;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hero-accent);
    margin: 0 0 0.75rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hero-accent);
    border: 1px solid var(--hero-accent);
    border-radius: 999px;
    padding: 0.25rem 0.875rem;
    margin-top: 1rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero .btn-primary {
    background: var(--hero-accent);
    border-color: var(--hero-accent);
    color: #0f172a;
}

.hero .btn-primary:hover {
    background: #67e8f9;
    border-color: #67e8f9;
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.3);
}

.hero .btn-outline {
    background: transparent;
    color: #f1f5f9;
    border-color: rgba(241, 245, 249, 0.25);
}

.hero .btn-outline:hover {
    background: rgba(241, 245, 249, 0.08);
    border-color: rgba(241, 245, 249, 0.4);
}

.hero-urgent {
    background: linear-gradient(135deg, #1c0a0a, #2d1212, #1c0a0a);
}

/* Emergency badge */
.emergency-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

/* Danger button */
.btn-danger {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}
.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Emergency process steps */
.emergency-process {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}
.emergency-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
}
.emergency-step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.12);
    color: #fca5a5;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}
.emergency-step-content h3 {
    font-size: 1rem;
    margin: 0 0 0.375rem;
}
.emergency-step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Emergency needs */
.emergency-needs {
    max-width: 48rem;
    margin: 0 auto;
}
.emergency-needs-header {
    margin-bottom: 2rem;
}
.emergency-needs-header h2 {
    margin-bottom: 0.5rem;
}
.emergency-needs-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .emergency-needs-items { grid-template-columns: 1fr; }
}
.emergency-need-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}
.emergency-need-icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.emergency-need-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Emergency response */
.emergency-response {
    max-width: 48rem;
    margin: 0 auto;
}
.emergency-response h2 {
    margin-bottom: 1rem;
}
.emergency-response p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Emergency scope (covers / doesn't cover) */
.emergency-scope {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .emergency-scope { grid-template-columns: 1fr; }
}
.emergency-scope-yes, .emergency-scope-no {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
}
.emergency-scope-yes {
    border-color: rgba(4, 137, 194, 0.3);
}
.emergency-scope-no {
    border-color: rgba(220, 38, 38, 0.2);
}
.emergency-scope h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Emergency pricing */
.emergency-pricing-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .emergency-pricing-split { grid-template-columns: 1fr; }
}
.emergency-pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
}
.emergency-pricing-card h3 {
    font-size: 1.125rem;
    margin: 0 0 0.75rem;
}
.emergency-pricing-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.emergency-pricing-items {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.emergency-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    font-size: 0.875rem;
}
.emergency-price-line strong {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.125rem;
}
.emergency-price-accent {
    border: 1px solid rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.05);
}
.emergency-price-accent strong {
    color: #fca5a5;
}
.emergency-pricing-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}
.emergency-pricing-existing {
    border-color: var(--accent);
    border-style: dashed;
}

/* Emergency after */
.emergency-after {
    max-width: 48rem;
    margin: 0 auto;
}
.emergency-after h2 {
    margin-bottom: 0.75rem;
}
.emergency-after > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.emergency-after-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .emergency-after-options { grid-template-columns: 1fr; }
}
.emergency-after-option {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.emergency-after-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.emergency-after-option p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--section-alt);
    background-image: radial-gradient(circle, var(--border) 0.75px, transparent 0.75px);
    background-size: 24px 24px;
}

.section-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-subtle) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-cta .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.section-cta .section-header {
    text-align: left;
    margin-bottom: 0;
}

.section-cta .hero-actions {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .section-cta .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-cta .section-header { text-align: center; }
    .section-cta .hero-actions { justify-content: center; }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.75rem;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto;
}

.section-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
}

/* --- Prose --- */
.prose {
    max-width: 48rem;
    margin: 0 auto;
}

.prose p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.prose p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.card ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.card ul li { margin-bottom: 0.375rem; }

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.card-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
}

.card-warning {
    border-color: var(--warning-border);
    background: var(--warning-bg);
}

.card-warning p { color: var(--warning-text); }

/* Card grid */
.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

@media (max-width: 1024px) {
    .columns-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .columns-2, .columns-3, .columns-4 {
        grid-template-columns: 1fr;
    }
}

/* Scroll reveal */
.card[data-delay] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card[data-delay].visible {
    opacity: 1;
    transform: translateY(0);
}

.card[data-delay="1"] { transition-delay: 0.08s; }
.card[data-delay="2"] { transition-delay: 0.16s; }
.card[data-delay="3"] { transition-delay: 0.24s; }
.card[data-delay="4"] { transition-delay: 0.32s; }
.card[data-delay="5"] { transition-delay: 0.4s; }
.card[data-delay="6"] { transition-delay: 0.48s; }
.card[data-delay="7"] { transition-delay: 0.56s; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-top: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
}

.service-card-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.service-card[data-delay] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card[data-delay].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step[data-delay] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step[data-delay].visible {
    opacity: 1;
    transform: translateY(0);
}

.step[data-delay="1"] { transition-delay: 0.1s; }
.step[data-delay="2"] { transition-delay: 0.2s; }
.step[data-delay="3"] { transition-delay: 0.3s; }

.step-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.step-number::before {
    content: "0";
}

.step h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURE LIST (platform page)
   ========================================================================== */
.feature-list {
    max-width: 48rem;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child { border-bottom: none; }

.feature-item[data-delay] {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-item[data-delay].visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item[data-delay="1"] { transition-delay: 0.06s; }
.feature-item[data-delay="2"] { transition-delay: 0.12s; }
.feature-item[data-delay="3"] { transition-delay: 0.18s; }
.feature-item[data-delay="4"] { transition-delay: 0.24s; }
.feature-item[data-delay="5"] { transition-delay: 0.3s; }
.feature-item[data-delay="6"] { transition-delay: 0.36s; }
.feature-item[data-delay="7"] { transition-delay: 0.42s; }

.feature-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

.feature-item h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
/* Currency switcher */
.currency-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.currency-switcher select {
    background: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    cursor: pointer;
}
.currency-switcher select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Pricing spotlight — featured product */
.pricing-spotlight {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(56,189,248,0.08);
}
@media (max-width: 768px) {
    .pricing-spotlight { grid-template-columns: 1fr; gap: 2rem; }
}
.pricing-spotlight h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}
.pricing-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    font-style: italic;
}
.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.pricing-spotlight-action {
    text-align: center;
    min-width: 220px;
}
.pricing-detail-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
}
.pricing-detail-link:hover { color: var(--accent); }

/* Pricing service cards */
.pricing-service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.pricing-service-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}
.pricing-service-card .btn {
    align-self: flex-start;
    margin-top: 1rem;
}
.pricing-service-header {
    margin-bottom: 1rem;
}
.pricing-service-header h2 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}
.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Add-on cards */
.pricing-addons-grid {
    margin-top: 3rem;
}
.pricing-addon-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.5rem;
}
.pricing-addon-card h4 {
    font-size: 0.9375rem;
    margin: 0 0 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.pricing-addon-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
}

/* Emergency callout */
.pricing-emergency {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--warning-border);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}
@media (max-width: 768px) {
    .pricing-emergency { flex-direction: column; text-align: center; }
}
.pricing-emergency-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.pricing-emergency-content {
    flex-grow: 1;
}
.pricing-emergency-content h2 {
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
}
.pricing-emergency-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}
.pricing-emergency .btn {
    flex-shrink: 0;
}

/* Legacy layout (keep for compat) */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.pricing-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--card-shadow);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.pricing-addons {
    padding: 0;
}

.pricing-addons h3 {
    font-size: 1.125rem;
    margin: 0 0 1rem;
}

.pricing-addons-heading {
    font-size: 1.25rem;
    margin: 3rem 0 1.5rem;
}

.pricing-addon {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing-addon-header h4 {
    font-size: 0.9375rem;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

.pricing-addon-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9375rem;
}

.pricing-addon p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Pricing table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.pricing-table th {
    font-weight: 600;
    color: var(--text);
    background: var(--bg-subtle);
}

.pricing-table td { color: var(--text-secondary); }

/* Intake total */
.intake-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--border);
    margin: 1.5rem 0;
}

.intake-total-label {
    font-weight: 600;
    font-size: 1rem;
}

.intake-total-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.testimonial-card blockquote::before { content: "\201C"; }
.testimonial-card blockquote::after { content: "\201D"; }

.testimonial-card cite {
    display: block;
    text-align: center;
    font-style: normal;
}

.testimonial-card cite strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text);
}

.testimonial-card cite span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev, .testimonial-next {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: border-color 0.15s, color 0.15s;
}

.testimonial-prev:hover, .testimonial-next:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
}

.testimonial-dot::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--text-muted);
    transition: background 0.2s;
}
.testimonial-dot.active::after {
    background: var(--accent);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

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

.faq-question {
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: "\2212";
}

.faq-answer {
    padding: 0 0 1.25rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   LISTS
   ========================================================================== */
.check-list {
    list-style: none;
    padding: 0;
    max-width: 48rem;
    margin: 0 auto;
}

.check-list li {
    padding: 0.625rem 0 0.625rem 2rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.exclusion-list {
    list-style: none;
    padding: 0;
    max-width: 48rem;
    margin: 0 auto;
}

.exclusion-list li {
    padding: 0.625rem 0 0.625rem 2rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.exclusion-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--error-text);
    font-weight: 700;
}

.numbered-list {
    max-width: 48rem;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.numbered-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SERVICE DETAIL
   ========================================================================== */
.service-detail-content {
    max-width: 48rem;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 3rem;
}

.service-section h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.service-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.service-replaces {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.replaces-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.replaces-value {
    font-size: 0.9375rem;
    color: var(--text);
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.case-study-card {
    display: flex;
    flex-direction: column;
}

.case-study-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin: -0.25rem 0 0.75rem;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
    padding-top: 1rem;
}

.tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    background: var(--accent-glow);
    color: var(--accent);
    white-space: nowrap;
}

.case-study-proves {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ==========================================================================
   CONTACT LAYOUT
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-aside h3 {
    font-size: 1.125rem;
    margin: 0 0 0.75rem;
}

/* Contact success */
.contact-success {
    text-align: center;
    padding: 3rem 1.5rem;
}

.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-success h2 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
}

.contact-success p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-content {
    max-width: 48rem;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

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

.about-company h2 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
}

.about-company p {
    margin: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ==========================================================================
   LOOM
   ========================================================================== */
.loom-differentiator {
    max-width: 48rem;
    margin: 0 auto;
}

.loom-differentiator p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.loom-signup-form-wrap {
    max-width: 32rem;
    margin: 0 auto;
}

.loom-signup-form .form-row {
    margin-bottom: 1rem;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-placeholder {
    text-align: center;
    padding: 3rem 0;
}

.blog-placeholder p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.blog-card {
    display: block;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.blog-card h2 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--text);
}
.blog-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}
.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-post-date {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-post-body {
    max-width: 48rem;
    margin: 0 auto;
}
.blog-post-body .lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.blog-post-body h2 {
    margin-top: 2.5rem;
}

/* ==========================================================================
   SUNNY
   ========================================================================== */
.sunny-intro {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.sunny-intro h2 {
    font-size: 1.75rem;
    margin: 0 0 1rem;
}

.sunny-intro p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    line-height: 1.7;
}

/* ==========================================================================
   ERROR PAGE
   ========================================================================== */
.error-page {
    text-align: center;
    padding: 3rem 0;
}

.error-code {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--hero-accent);
    margin: 0;
    line-height: 1;
}

.error-message {
    font-size: 1.25rem;
    color: #94a3b8;
    margin: 1rem 0 2rem;
}

/* ==========================================================================
   TERMS
   ========================================================================== */
.terms-content {
    max-width: 48rem;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.terms-content ul {
    padding-left: 1.25rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-content a {
    color: var(--accent);
}

/* ==========================================================================
   INTAKE FORM
   ========================================================================== */
.intake-form {
    max-width: 40rem;
    margin: 0 auto;
}

.intake-reference {
    font-size: 1rem;
    margin-top: 0.75rem;
}

.intake-success {
    max-width: 40rem;
    margin: 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}

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

.footer-company {
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

.footer-tax {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s;
}

.footer-nav a:hover { color: var(--text); }

.footer-support {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   DATA-REVEAL (scroll animation)
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   UTILITY: columns-2 non-grid (for side-by-side sections)
   ========================================================================== */
.columns-2:not(.card-grid) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

/* --- Missing utility classes used in templates --- */
.footer-brand {
    flex-shrink: 0;
}

.nav-lang-dropdown .nav-dropdown-menu {
    right: 0;
    left: auto;
}

.sunny-intro-text {
    max-width: 36rem;
    margin: 0 auto;
}

.contact-form {
    max-width: 100%;
}

/* --- Currency notice bar --- */
.currency-notice {
    background: var(--color-primary, #0479ad);
    color: #fff;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
}
.currency-notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.currency-notice p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.currency-notice .btn {
    white-space: nowrap;
}

/* Loading-state pill replacing the Sunny CTA after click. */
.is-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}
