/*
 * PROJECT: detroitpages
 * DOMAIN: detroitpages.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Океанический (синий, зелёный, золотой, морские волны)
 * - Effect: Gradient Mesh + Glassmorphism
 * - Fonts: Playfair Display + Source Sans 3
 * - Buttons: Gradient
 *
 * Created: 2026
 */

/* =========================================================
   GOOGLE FONTS IMPORT (loaded in header via <link>)
   ========================================================= */

/* =========================================================
   CSS CUSTOM PROPERTIES — OCEAN THEME
   ========================================================= */
:root {
    --ocean-deep: #0a2342;
    --ocean-mid: #1a4a7a;
    --ocean-bright: #1e6fa5;
    --ocean-teal: #0d9488;
    --ocean-cyan: #22d3ee;
    --wave-green: #10b981;
    --seafoam: #6ee7b7;
    --gold-shimmer: #d4a843;
    --gold-light: #f5c842;
    --sand: #f0e6c8;
    --pearl: #f8fafc;
    --ninja-blade: #e2e8f0;
    --veggie-orange: #f97316;
    --veggie-red: #ef4444;
    --veggie-purple: #8b5cf6;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.15);
    --shadow-md: 0 4px 24px rgba(10, 35, 66, 0.2);
    --shadow-lg: 0 8px 48px rgba(10, 35, 66, 0.3);
    --shadow-glass: 0 8px 32px rgba(10, 35, 66, 0.25);

    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background: var(--ocean-deep);
    color: var(--pearl);
    line-height: 1.7;
    min-height: 100vh;
}

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

a {
    color: var(--ocean-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--pearl);
}

/* =========================================================
   BACKGROUND — GRADIENT MESH
   ========================================================= */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(13, 148, 136, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 10%, rgba(34, 211, 238, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(30, 111, 165, 0.2) 0%, transparent 45%),
        linear-gradient(160deg, #071a31 0%, #0a2342 40%, #0d3060 70%, #071a31 100%);
    background-attachment: fixed;
}

/* Wave decoration */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 35, 66, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    padding: 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* TEXT LOGO — NO IMG */
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold-shimmer);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--gold-light);
}

.logo span {
    color: var(--ocean-cyan);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ninja-blade);
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-cyan);
    transition: width var(--transition);
}

.site-nav__link:hover {
    color: var(--ocean-cyan);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__link--active {
    color: var(--ocean-cyan);
}

.site-nav__link--active::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle__bar {
    width: 26px;
    height: 2px;
    background: var(--pearl);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
    padding: 14px 32px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-lg);
    text-decoration: none;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold-shimmer) 0%, var(--gold-light) 50%, var(--veggie-orange) 100%);
    color: var(--ocean-deep);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4), 0 0 40px rgba(212, 168, 67, 0.15);
    transition: all var(--transition);
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.55), 0 0 60px rgba(212, 168, 67, 0.2);
    color: var(--ocean-deep);
}

.btn--primary {
    background: linear-gradient(135deg, var(--ocean-teal), var(--ocean-bright));
    color: var(--pearl);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.5);
    color: var(--pearl);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--ocean-cyan);
    color: var(--ocean-cyan);
    padding: 12px 30px;
}

.btn--outline:hover {
    background: var(--ocean-cyan);
    color: var(--ocean-deep);
    transform: translateY(-2px);
}

.btn--sm {
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--seafoam);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--wave-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--pearl);
}

.hero__title-highlight {
    color: var(--gold-shimmer);
    position: relative;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-shimmer), var(--ocean-cyan));
    border-radius: 2px;
}

.hero__description {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(34, 211, 238, 0.15);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-shimmer);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Game preview card */
.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-preview-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
}

.game-preview-card__icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-preview-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pearl);
    margin-bottom: 8px;
}

.game-preview-card__genre {
    font-size: 0.85rem;
    color: var(--ocean-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 20px;
}

.game-preview-card__tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tag {
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.35);
    color: var(--seafoam);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

/* Floating veggie icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.5;
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1.5s; }
.floating-icon:nth-child(3) { bottom: 25%; left: 8%; animation-delay: 3s; }
.floating-icon:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 4.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(15deg); }
    66% { transform: translateY(6px) rotate(-10deg); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ocean-cyan);
    margin-bottom: 12px;
}

.section-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header__desc {
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

/* =========================================================
   SECTIONS PADDING
   ========================================================= */
.section {
    padding: 80px 0;
}

.section--alt {
    background: rgba(255, 255, 255, 0.025);
}

/* =========================================================
   FEATURES GRID
   ========================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: var(--shadow-md), 0 0 24px rgba(34, 211, 238, 0.08);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--pearl);
}

.feature-card__text {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.7;
}

/* =========================================================
   HOW TO PLAY STEPS
   ========================================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ocean-teal), var(--ocean-cyan), var(--ocean-teal), transparent);
}

.step-card {
    position: relative;
    text-align: center;
    padding: 28px 20px;
}

.step-card__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-teal), var(--ocean-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pearl);
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(13, 148, 136, 0.4);
    position: relative;
    z-index: 1;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gold-shimmer);
}

.step-card__text {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.6;
}

/* =========================================================
   ARTICLE CARDS — BEM
   ========================================================= */
.article-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: var(--shadow-lg);
}

.article-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.article-card__content {
    padding: 28px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.article-card__category {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ocean-cyan);
}

.article-card__date {
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.45);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--pearl);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card__link {
    position: relative;
    z-index: 2;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ocean-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-card__link:hover {
    color: var(--gold-light);
}

/* =========================================================
   BLOG GRID
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.25);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    color: var(--pearl);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--ocean-cyan);
}

.faq-item__icon {
    font-size: 1.2rem;
    color: var(--ocean-cyan);
    transition: transform var(--transition);
    flex-shrink: 0;
    font-style: normal;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.75;
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* =========================================================
   STARS RATING
   ========================================================= */
.stars {
    color: #ffc107;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.25) 0%, rgba(30, 111, 165, 0.25) 100%);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--pearl);
}

.cta-box__desc {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: rgba(5, 15, 30, 0.95);
    border-top: 1px solid rgba(34, 211, 238, 0.1);
    padding: 64px 0 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold-shimmer);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand__logo span {
    color: var(--ocean-cyan);
}

.footer-brand__desc {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.5);
    line-height: 1.7;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__link {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col__link:hover {
    color: var(--ocean-cyan);
}

.site-footer__bottom {
    border-top: 1px solid rgba(34, 211, 238, 0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer__copyright {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.35);
}

.site-footer__legal {
    display: flex;
    gap: 24px;
}

.site-footer__legal a {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.35);
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: var(--ocean-cyan);
}

/* =========================================================
   INNER PAGE — HERO SMALL
   ========================================================= */
.page-hero {
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
}

.page-hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ocean-cyan);
    margin-bottom: 12px;
    display: block;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero__desc {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================
   ARTICLE / CONTENT PAGE
   ========================================================= */
.article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--gold-shimmer);
    margin: 40px 0 16px;
}

.article-body h3 {
    font-size: 1.3rem;
    color: var(--ocean-cyan);
    margin: 28px 0 12px;
}

.article-body p {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 0;
    padding-left: 28px;
    list-style: disc;
    color: rgba(248, 250, 252, 0.75);
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-body strong {
    color: var(--pearl);
    font-weight: 700;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.45);
    margin-bottom: 32px;
}

.breadcrumb a {
    color: rgba(248, 250, 252, 0.45);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--ocean-cyan);
}

.breadcrumb__sep {
    color: rgba(248, 250, 252, 0.25);
}

/* =========================================================
   INFO BOXES
   ========================================================= */
.info-box {
    background: rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-left: 4px solid var(--ocean-teal);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box p {
    margin: 0;
    color: rgba(248, 250, 252, 0.8);
}

/* =========================================================
   CONTROLS TABLE
   ========================================================= */
.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.controls-table th {
    background: rgba(13, 148, 136, 0.3);
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--ocean-cyan);
    letter-spacing: 0.05em;
}

.controls-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.08);
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.95rem;
}

.controls-table tr:last-child td {
    border-bottom: none;
}

.controls-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

/* =========================================================
   TEAM / ABOUT CARDS
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--pearl);
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.values-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.values-list__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.values-list__text strong {
    display: block;
    color: var(--pearl);
    font-weight: 700;
    margin-bottom: 4px;
}

.values-list__text span {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.6);
}

.about-visual {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
}

.about-visual__emoji {
    font-size: 6rem;
    margin-bottom: 20px;
    display: block;
}

.about-visual__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-shimmer);
    margin-bottom: 10px;
}

.about-visual__text {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.55);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.contact-info__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info__text {
    color: rgba(248, 250, 252, 0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
}

.contact-detail__icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

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

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--pearl);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--ocean-cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(248, 250, 252, 0.3);
}

.form-textarea {
    height: 140px;
    resize: vertical;
}

/* Form messages */
.form-success {
    display: none;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--seafoam);
    font-size: 0.95rem;
    margin-top: 16px;
}

.form-error {
    display: none;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #fca5a5;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* =========================================================
   PRIVACY / TERMS CONTENT
   ========================================================= */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--gold-shimmer);
    margin: 40px 0 14px;
    font-family: var(--font-heading);
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--ocean-cyan);
    margin: 24px 0 10px;
    font-family: var(--font-heading);
}

.legal-content p {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 18px;
}

.legal-content li {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 35, 66, 0.97);
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    padding: 20px 0;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.7);
    flex: 1;
}

.cookie-banner__text a {
    color: var(--ocean-cyan);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ocean-teal), var(--ocean-bright));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--pearl);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 99;
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* =========================================================
   OFFER / CARD BASE (required)
   ========================================================= */
.offer-card,
.card {
    position: relative;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

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

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

    .steps-grid::before {
        display: none;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .section-header__title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 35, 66, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(34, 211, 238, 0.15);
        padding: 24px;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__stats {
        gap: 20px;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .cta-box__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .btn-play {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .page-hero__title {
        font-size: 2.2rem;
    }
}