@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400&family=Alegreya+Sans:wght@400;500;700&display=swap');

:root {
    --font-display: 'Philosopher', Georgia, serif;
    --font-body: 'Alegreya Sans', system-ui, sans-serif;

    /* Type scale - perfect fourth (1.333) */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-md:   1.125rem;
    --text-lg:   1.333rem;
    --text-xl:   clamp(1.5rem, 2.5vw, 1.777rem);
    --text-2xl:  clamp(1.777rem, 3.5vw, 2.369rem);
    --text-3xl:  clamp(2.369rem, 5vw, 3.157rem);

    /* Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0e27;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f0ecff;
    --text-secondary: rgba(240, 236, 255, 0.78);
    --text-muted: rgba(240, 236, 255, 0.52);
    --accent: #c084fc;
    --accent-warm: #f093fb;
    --glow: rgba(118, 75, 162, 0.3);
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    background: var(--dark-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(118, 75, 162, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(102, 126, 234, 0.2) 0px, transparent 50%);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll progress bar ─────────────────────────── */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #764ba2, #c084fc, #f093fb);
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1000;
    pointer-events: none;
}

@supports (animation-timeline: scroll()) {
    .scroll-progress {
        animation: progress-grow linear;
        animation-timeline: scroll(root block);
    }
    @keyframes progress-grow {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
}

/* ── Container ───────────────────────────────────── */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50%       { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* ── Hero floating glyphs ────────────────────────── */

.hero-glyphs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-glyphs span {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(192, 132, 252, 0.09);
    animation: floatGlyph ease-in-out infinite;
    user-select: none;
    will-change: transform;
}

.hero-glyphs span:nth-child( 1) { left: 77.7%; top: 32.3%; font-size: 2.2rem; animation-duration: 25s; animation-delay: -22s; color: rgba(192, 132, 252, 0.14); }
.hero-glyphs span:nth-child( 2) { left: 54.6%; top: 58.9%; font-size: 2.0rem; animation-duration: 22s; animation-delay: -12s; color: rgba(192, 132, 252, 0.17); }
.hero-glyphs span:nth-child( 3) { left: 3.7%; top: 91.0%; font-size: 2.1rem; animation-duration: 25s; animation-delay: -12s; color: rgba(240, 147, 251, 0.17); }
.hero-glyphs span:nth-child( 4) { left: 18.6%; top: 31.9%; font-size: 1.9rem; animation-duration: 24s; animation-delay: -11s; color: rgba(192, 132, 252, 0.12); }
.hero-glyphs span:nth-child( 5) { left: 19.4%; top: 9.5%; font-size: 2.1rem; animation-duration: 21s; animation-delay: -14s; color: rgba(192, 132, 252, 0.16); }
.hero-glyphs span:nth-child( 6) { left: 8.3%; top: 80.1%; font-size: 3.5rem; animation-duration: 24s; animation-delay: -6s; color: rgba(240, 147, 251, 0.17); }
.hero-glyphs span:nth-child( 7) { left: 10.1%; top: 44.9%; font-size: 1.9rem; animation-duration: 24s; animation-delay: -11s; color: rgba(192, 132, 252, 0.11); }
.hero-glyphs span:nth-child( 8) { left: 43.7%; top: 74.2%; font-size: 2.7rem; animation-duration: 14s; animation-delay: -1s; color: rgba(192, 132, 252, 0.1); }
.hero-glyphs span:nth-child( 9) { left: 81.9%; top: 92.6%; font-size: 3.1rem; animation-duration: 27s; animation-delay: -11s; color: rgba(240, 147, 251, 0.12); }
.hero-glyphs span:nth-child(10) { left: 46.3%; top: 70.6%; font-size: 3.1rem; animation-duration: 18s; animation-delay: -1s; color: rgba(192, 132, 252, 0.1); }
.hero-glyphs span:nth-child(11) { left: 48.6%; top: 5.7%; font-size: 2.4rem; animation-duration: 27s; animation-delay: -22s; color: rgba(192, 132, 252, 0.18); }
.hero-glyphs span:nth-child(12) { left: 87.9%; top: 66.0%; font-size: 1.9rem; animation-duration: 20s; animation-delay: -7s; color: rgba(240, 147, 251, 0.11); }
.hero-glyphs span:nth-child(13) { left: 29.6%; top: 10.5%; font-size: 3.2rem; animation-duration: 26s; animation-delay: -1s; color: rgba(192, 132, 252, 0.16); }
.hero-glyphs span:nth-child(14) { left: 56.3%; top: 7.8%; font-size: 2.6rem; animation-duration: 24s; animation-delay: -6s; color: rgba(192, 132, 252, 0.1); }
.hero-glyphs span:nth-child(15) { left: 1.8%; top: 10.2%; font-size: 3.4rem; animation-duration: 14s; animation-delay: -15s; color: rgba(240, 147, 251, 0.14); }
.hero-glyphs span:nth-child(16) { left: 85.8%; top: 14.6%; font-size: 2.2rem; animation-duration: 24s; animation-delay: -22s; color: rgba(192, 132, 252, 0.11); }
.hero-glyphs span:nth-child(17) { left: 3.4%; top: 91.1%; font-size: 2.2rem; animation-duration: 20s; animation-delay: -15s; color: rgba(192, 132, 252, 0.18); }
.hero-glyphs span:nth-child(18) { left: 69.4%; top: 57.9%; font-size: 2.6rem; animation-duration: 17s; animation-delay: -4s; color: rgba(240, 147, 251, 0.11); }
.hero-glyphs span:nth-child(19) { left: 60.7%; top: 29.4%; font-size: 2.3rem; animation-duration: 19s; animation-delay: -20s; color: rgba(192, 132, 252, 0.15); }
.hero-glyphs span:nth-child(20) { left: 7.8%; top: 3.7%; font-size: 2.0rem; animation-duration: 14s; animation-delay: -3s; color: rgba(192, 132, 252, 0.14); }
.hero-glyphs span:nth-child(21) { left: 66.2%; top: 74.5%; font-size: 2.1rem; animation-duration: 27s; animation-delay: -15s; color: rgba(240, 147, 251, 0.14); }
.hero-glyphs span:nth-child(22) { left: 47.9%; top: 66.7%; font-size: 3.1rem; animation-duration: 15s; animation-delay: -4s; color: rgba(192, 132, 252, 0.13); }
.hero-glyphs span:nth-child(23) { left: 25.1%; top: 82.4%; font-size: 3.3rem; animation-duration: 25s; animation-delay: -16s; color: rgba(192, 132, 252, 0.17); }
.hero-glyphs span:nth-child(24) { left: 75.5%; top: 92.2%; font-size: 3.1rem; animation-duration: 27s; animation-delay: -13s; color: rgba(240, 147, 251, 0.16); }
.hero-glyphs span:nth-child(25) { left: 76.0%; top: 50.8%; font-size: 2.7rem; animation-duration: 19s; animation-delay: -3s; color: rgba(192, 132, 252, 0.13); }
.hero-glyphs span:nth-child(26) { left: 72.7%; top: 54.3%; font-size: 3.0rem; animation-duration: 17s; animation-delay: -23s; color: rgba(192, 132, 252, 0.15); }
.hero-glyphs span:nth-child(27) { left: 14.9%; top: 35.4%; font-size: 3.1rem; animation-duration: 13s; animation-delay: -2s; color: rgba(240, 147, 251, 0.15); }
.hero-glyphs span:nth-child(28) { left: 54.9%; top: 65.0%; font-size: 1.9rem; animation-duration: 13s; animation-delay: -6s; color: rgba(192, 132, 252, 0.15); }

@keyframes floatGlyph {
    0%   { transform: translateY(0)     rotate(0deg)   scale(1);    opacity: 1; }
    25%  { transform: translateY(-22px) rotate(7deg)   scale(1.04); opacity: 1.3; }
    60%  { transform: translateY(12px)  rotate(-5deg)  scale(0.97); opacity: 0.7; }
    100% { transform: translateY(0)     rotate(0deg)   scale(1);    opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glyphs span { animation: none; }
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

/* GSAP word-split spans */
.hero-title .gsap-word {
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 68ch;
    margin: 0 auto;
}

/* ── Intro ───────────────────────────────────────── */

.intro {
    margin-bottom: 60px;
}

.intro-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.intro-card:hover {
    box-shadow: 0 12px 48px rgba(118, 75, 162, 0.2);
}

.intro-text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.intro-list {
    list-style: none;
    margin-bottom: 28px;
}

.intro-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-md);
    line-height: 1.65;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.intro-list li:last-child {
    border-bottom: none;
}

.intro-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.highlight {
    color: var(--accent-warm);
    font-weight: 700;
    font-style: italic;
}

.intro-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    line-height: 1.6;
}

/* ── Options ─────────────────────────────────────── */

.options {
    display: block !important;
    margin-bottom: 60px;
    width: 100% !important;
    clear: both !important;
    overflow: visible;
    box-sizing: border-box !important;
}

.options > .section-title { display: block !important; }
.options > .options-grid  { display: grid !important; }

.section-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    text-align: center !important;
    margin: 0 auto 50px !important;
    padding: 0 !important;
    clear: both !important;
    float: none !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.options-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    width: 100% !important;
    max-width: 100% !important;
    clear: both !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    perspective: 1200px;
}

.option-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    will-change: transform;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.option-card:hover {
    border-color: rgba(118, 75, 162, 0.5);
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.3);
}

.option-card.featured {
    border: 2px solid rgba(118, 75, 162, 0.6);
    box-shadow: 0 0 40px rgba(118, 75, 162, 0.2);
}

.option-card.premium {
    border: 2px solid rgba(102, 126, 234, 0.6);
}

.option-badge-popular,
.option-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.option-badge-popular  { background: var(--primary-gradient);   color: white; }
.option-badge-premium  { background: var(--secondary-gradient); color: white; }

.option-header {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    padding: 30px;
    padding-right: 140px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--card-border);
    position: relative;
}

.option-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.option-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    flex: 1;
    word-break: normal;
    word-wrap: break-word;
}

.option-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.option-content {
    padding: 30px;
}

.option-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: var(--text-base);
    line-height: 1.75;
}

.option-includes {
    color: var(--accent-warm);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: var(--text-md);
    font-style: italic;
}

.option-list {
    list-style: none;
    margin-bottom: 25px;
}

.option-list li {
    padding: 10px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.65;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.option-list li:last-child { border-bottom: none; }

.option-list li::before {
    content: '\00B7';
    position: absolute;
    left: 4px;
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 0.75;
    font-weight: 700;
}

.option-footer {
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.option-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-warm);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

.option-price-detail {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 8px;
}

.option-price-uah {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 16px;
    min-height: 1.3em;
}

.option-requirement {
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-style: italic;
    line-height: 1.5;
}

/* ── Pay button ──────────────────────────────────── */

.pay-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: var(--primary-gradient);
    color: white;
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(118, 75, 162, 0.4);
    letter-spacing: 0.02em;
}

.pay-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(118, 75, 162, 0.5);
}

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

.pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.option-card.featured .pay-btn {
    background: linear-gradient(135deg, #764ba2 0%, #c084fc 100%);
}

.option-card.premium .pay-btn {
    background: var(--secondary-gradient);
}

/* ── Payment overlay ─────────────────────────────── */

.payment-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.payment-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.payment-result {
    background: rgba(30, 30, 60, 0.95);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s ease;
}

.payment-overlay.active .payment-result {
    transform: scale(1) translateY(0);
}

.payment-result-icon {
    margin-bottom: 24px;
}

.payment-result-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.payment-result-text {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: 28px;
}

.payment-result-btn {
    padding: 12px 36px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.payment-result-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ── Card Shine Effect ────────────────────────────── */
.option-card .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    border-radius: inherit;
}

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

.about {
    margin-bottom: 60px;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.about-photo {
    width: 200px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.about-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-role {
    color: var(--accent);
    font-size: var(--text-md);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

.about-link:hover {
    color: var(--accent-warm);
}

/* ── FAQ ─────────────────────────────────────────── */

.faq {
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(192, 132, 252, 0.3);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-primary);
    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.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.75;
}

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

.site-footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 20px;
    margin-top: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-muted);
}

.footer-links,
.footer-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

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

@media (max-width: 1200px) {
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container { padding: 20px 15px; }
    .hero      { margin-bottom: 40px; }

    .intro-card,
    .option-content { padding: 24px; }

    .option-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 20px;
    }

    .option-badge-popular,
    .option-badge-premium { top: 14px; right: 14px; }

    .options-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .hero-subtitle { font-size: var(--text-md); }

    .about-card {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-photo { width: 160px; }
    .about-links { justify-content: center; }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
