/* ═══════════════════════════════════════════════════════════════════════════
   Operari — Public Marketing Stylesheet
   ═══════════════════════════════════════════════════════════════════════════
   Brand palette: Royal Blue / Steel / White
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────── */

:root {
    /* ── Brand ── */
    --royal-blue: #1e3a5f;
    --royal-blue-light: #264b7a;
    --royal-blue-dark: #162d4a;
    --action: #2563eb;
    --action-hover: #1d4ed8;
    --action-light: #3b82f6;
    --action-50: #eff6ff;
    --action-100: #dbeafe;

    /* ── Steel ── */
    --steel: #64748b;
    --steel-light: #94a3b8;
    --steel-dark: #475569;

    /* ── Neutrals ── */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;

    --font-sans:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
        Arial, sans-serif;
    --font-brand: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    --font-stack: var(--font-sans);
    --nav-height: 72px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md:
        0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl:
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* ── CSS Reset ──────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

ul,
ol {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.25;
}

/* ── Typography ─────────────────────────────────────────────────────────── */

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--steel);
}

/* ── Layout ─────────────────────────────────────────────────────────────── */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.section-alt {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--steel);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Site Header
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--space-sm);
}

.logo-img {
    height: 64px;
    width: auto;
}

.brand-wordmark {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--royal-blue);
    user-select: none;
}

/* ── Desktop Navigation ─────────────────────────────────────────────────── */

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--steel);
    transition: color var(--transition-fast);
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link:hover {
    color: var(--gray-900);
}

.nav-link.active {
    color: var(--action);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--action);
    border-radius: 1px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--action);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--action-hover);
    transform: translateY(-1px);
}

.nav-cta.active::after {
    display: none;
}

/* ── Hamburger ──────────────────────────────────────────────────────────── */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
    z-index: 1010;
}

.hamburger:hover {
    background-color: var(--gray-100);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--steel-dark);
    border-radius: 2px;
    transition:
        transform var(--transition-base),
        opacity var(--transition-base);
    transform-origin: center;
}

.hamburger-line + .hamburger-line {
    margin-top: 5px;
}

/* X animation */
.nav-open .hamburger .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .hamburger .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-open .hamburger .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Main Content
   ═══════════════════════════════════════════════════════════════════════════ */

.site-main {
    padding-top: var(--nav-height);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
    text-align: center;
    user-select: none;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--action);
    color: var(--white);
    border-color: var(--action);
}

.btn-primary:hover {
    background-color: var(--action-hover);
    border-color: var(--action-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--action);
    border-color: var(--action);
}

.btn-outline:hover {
    background-color: var(--action);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--royal-blue);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(
        135deg,
        var(--royal-blue) 0%,
        var(--action) 100%
    );
    color: var(--white);
    text-align: center;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(
        ellipse,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Features Section
   ═══════════════════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--royal-blue);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-lg);
    transition:
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

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

.feature-card h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   How It Works — Steps
   ═══════════════════════════════════════════════════════════════════════════ */

.steps {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 260px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--action-50);
    border: 2px solid var(--action);
    color: var(--action);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.step h3 {
    color: var(--gray-900);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Pricing Section
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
    transition:
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

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

.pricing-card.featured {
    border: 2px solid var(--action);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--action);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 20px;
    border-radius: var(--radius-full);
}

.pricing-tier {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--steel-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--royal-blue);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.pricing-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--steel-light);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--steel);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 0.95rem;
    color: var(--steel-dark);
    line-height: 1.5;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: var(--action-50);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a5f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-features li + li {
    border-top: 1px solid var(--gray-100);
}

.pricing-savings {
    background-color: var(--action-50);
    color: var(--royal-blue);
    text-align: center;
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-2xl);
    font-size: 1rem;
    line-height: 1.5;
}

/* ── Pricing grid — responsive breakpoints ─────────────────────────────── */

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

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

/* ═══════════════════════════════════════════════════════════════════════════
   Bottom CTA Section
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    background: linear-gradient(
        135deg,
        var(--royal-blue) 0%,
        var(--action) 100%
    );
    color: var(--white);
    text-align: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(
        ellipse,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.cta-etymology {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Sign-In Chooser
   ═══════════════════════════════════════════════════════════════════════════ */

.signin-chooser {
    min-height: calc(100vh - 72px - 200px);
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    background-color: var(--gray-50);
}

.signin-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.signin-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.signin-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
}

.signin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 720px;
    margin: 0 auto;
}

.signin-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow var(--transition-base),
        transform var(--transition-base),
        border-color var(--transition-base);
    cursor: pointer;
}

.signin-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--action);
}

.signin-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-blue), var(--action));
    border-radius: 50%;
    margin-bottom: var(--space-lg);
}

.signin-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.signin-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.signin-card-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.signin-card-btn {
    display: inline-block;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--action);
    transition: color var(--transition-fast);
}

.signin-card:hover .signin-card-btn {
    color: var(--royal-blue);
}

@media (max-width: 600px) {
    .signin-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .signin-title {
        font-size: 1.5rem;
    }

    .signin-chooser {
        padding: var(--space-2xl) 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
    background-color: var(--gray-900);
    color: var(--gray-400, #9ca3af);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-2xl);
}

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

.footer-brand .brand-wordmark {
    color: var(--white);
    font-size: 1.25rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--steel-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.footer-links a {
    color: var(--steel-light);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-copy {
    text-align: right;
    flex-shrink: 0;
}

.footer-copy p {
    color: var(--steel);
    font-size: 0.85rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Legal Pages
   ═══════════════════════════════════════════════════════════════════════════ */

.page-legal {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-legal h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.page-legal .legal-updated {
    color: var(--steel-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.page-legal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.page-legal h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.page-legal p {
    color: var(--steel-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.page-legal ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.page-legal ul li {
    position: relative;
    padding-left: var(--space-md);
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
    color: var(--steel-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.page-legal ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--action);
    font-weight: 700;
}

.page-legal a {
    color: var(--action);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.page-legal a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.page-legal strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   About Page
   ═══════════════════════════════════════════════════════════════════════════ */

.about-hero {
    background: var(--royal-blue);
    color: var(--white);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.about-hero-inner {
    display: flex;
    justify-content: center;
}

.about-hero-content {
    max-width: 640px;
}

.about-etymology {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.about-title {
    font-family: var(--font-brand);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-definition {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.about-definition strong {
    color: var(--white);
    font-weight: 600;
}

.about-body {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.about-block {
    margin-bottom: var(--space-3xl);
}

.about-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: var(--space-md);
}

.about-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--steel-dark);
    margin-bottom: var(--space-md);
}

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

.about-lead {
    font-size: 1.35rem;
    line-height: 1.85;
    color: var(--gray-800);
    font-weight: 400;
    border-left: 4px solid var(--royal-blue);
    padding-left: var(--space-lg);
}

.about-beliefs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.about-belief {
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.about-belief h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: var(--space-sm);
}

.about-belief p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--steel-dark);
    margin-bottom: 0;
}

.about-closing {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.about-closing p {
    font-size: 1.25rem;
    font-family: var(--font-brand);
    color: var(--royal-blue);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive — Tablet / Mobile (max-width: 768px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* ── Hamburger visible ──────────────────────────────────────────── */

    .hamburger {
        display: flex;
    }

    /* ── Mobile navigation dropdown ────────────────────────────────── */

    .site-nav {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height var(--transition-base),
            opacity var(--transition-base),
            padding var(--transition-base);
        padding: 0 var(--space-lg);
    }

    .nav-open .site-nav {
        max-height: 400px;
        opacity: 1;
        padding: var(--space-md) var(--space-lg) var(--space-lg);
    }

    .site-nav .nav-link {
        display: block;
        padding: var(--space-md) 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .site-nav .nav-link:last-child {
        border-bottom: none;
    }

    .site-nav .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        background-color: var(--action);
        text-align: center;
        border-radius: var(--radius-md);
    }

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

    .hero {
        padding: 80px 0 100px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

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

    .section {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* ── Features grid → 1 column ──────────────────────────────────── */

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* ── Steps → vertical stack ────────────────────────────────────── */

    .steps {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2xl);
    }

    .step {
        max-width: 360px;
    }

    .pricing-card.featured {
        order: -1;
    }

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

    .cta-section {
        padding: var(--space-3xl) 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    /* ── Footer → stacked ──────────────────────────────────────────── */

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-xl);
    }

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

    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    /* ── Legal pages ───────────────────────────────────────────────── */

    .page-legal h1 {
        font-size: 1.75rem;
    }

    .page-legal h2 {
        font-size: 1.25rem;
    }

    /* ── About page ────────────────────────────────────────────────── */

    .about-hero {
        padding: var(--space-3xl) 0;
    }

    .about-title {
        font-size: 2.75rem;
    }

    .about-definition {
        font-size: 1rem;
    }

    .about-lead {
        font-size: 1.15rem;
    }

    .about-beliefs {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-block h2 {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive — Small phones (max-width: 480px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .about-hero {
        padding: var(--space-2xl) 0;
    }

    .about-title {
        font-size: 2.25rem;
    }

    .about-lead {
        font-size: 1.05rem;
    }

    .about-block p {
        font-size: 1rem;
    }

    .about-closing p {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .feature-card {
        padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-md);
    }

    .pricing-card {
        padding: var(--space-xl) var(--space-md);
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Print Styles
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
    .site-header,
    .hamburger,
    .hero-actions,
    .cta-section,
    .site-footer {
        display: none;
    }

    .site-main {
        padding-top: 0;
    }

    .hero {
        background: none;
        color: var(--gray-900);
        padding: var(--space-xl) 0;
    }

    .hero-title {
        color: var(--gray-900);
    }

    .hero-subtitle {
        color: var(--steel);
    }

    .section {
        padding: var(--space-xl) 0;
    }

    body {
        font-size: 12pt;
    }
}
