/*
 * PROJECT: gloryisgoddart.com
 * DOMAIN: gloryisgoddart.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Спортивный (Champion/Court)
 * - Effect: Gradient Mesh
 * - Fonts: Oswald (heading) + DM Sans (body)
 * - Buttons: Gradient
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --champion-gold: #f5a623;
    --court-green: #26a96c;
    --court-green-dark: #1a7a4e;
    --energy-red: #e63946;
    --team-blue: #0077b6;
    --team-blue-dark: #005a8e;
    --net-white: #f5f5f7;
    --racket-gray: #6b7280;
    --dark-text: #1a1a2e;
    --light-text: #4b5563;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --body-bg: #f5f5f7;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden !important; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--dark-text);
    line-height: 1.65;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--light-text); }

/* ─── LAYOUT ─── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section { padding: 4.5rem 0; }
.section--alt { background: #fff; }

/* ─── MANDATORY CARD RULES ─── */
.article-card, .offer-card, .card { position: relative; }
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.stars { color: #ffc107; }

/* ─── COOKIE CONSENT ─── */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem;
    max-width: 380px;
    z-index: 9999;
    animation: slideUp 0.4s ease;
}
.cookie-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.cookie-consent__text {
    font-size: 0.88rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.55;
}
.cookie-consent__text a {
    color: var(--team-blue);
    text-decoration: underline;
}

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

/* ─── HEADER ─── */
.header {
    background: #fff;
    border-bottom: 1.5px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--team-blue);
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.logo span {
    color: var(--champion-gold);
}
.logo:hover { color: var(--court-green); }

.nav__list {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav__link {
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--light-text);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.nav__link:hover, .nav__link--active {
    background: var(--body-bg);
    color: var(--team-blue);
}
.nav__link--cta {
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
    color: #fff !important;
    padding: 0.45rem 1.15rem;
    border-radius: 99px;
    font-weight: 600;
}
.nav__link--cta:hover {
    opacity: 0.88;
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.3rem;
}
.nav__toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f4ec 0%, #e8f4fb 50%, #fff8e7 100%);
    padding: 5rem 0 4rem;
}
.hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(38,169,108,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(0,119,182,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 80%, rgba(245,166,35,0.13) 0%, transparent 45%);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--champion-gold), #e8951a);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.hero__title {
    margin-bottom: 1.1rem;
    color: var(--dark-text);
}
.hero__title em {
    font-style: normal;
    color: var(--court-green);
}
.hero__desc {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}
.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--team-blue);
}
.hero__stat-label {
    font-size: 0.82rem;
    color: var(--racket-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero__img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__game-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    width: 100%;
    max-width: 360px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero__game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--court-green), var(--team-blue), var(--champion-gold));
}
.hero__game-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}
.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.4rem;
}
.hero__game-meta {
    font-size: 0.85rem;
    color: var(--racket-gray);
    margin-bottom: 1.2rem;
}
.hero__game-meta span {
    display: inline-block;
    background: var(--body-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    margin: 0.2rem;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(38,169,108,0.3);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(38,169,108,0.38);
    opacity: 0.93;
}
.btn--primary {
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
    color: #fff;
    box-shadow: 0 4px 16px rgba(38,169,108,0.25);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(38,169,108,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--team-blue);
    border: 2px solid var(--team-blue);
}
.btn--outline:hover {
    background: var(--team-blue);
    color: #fff;
}
.btn--gold {
    background: linear-gradient(135deg, var(--champion-gold), #e8951a);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

/* ─── FEATURES ─── */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card__icon--green { background: #e0f4ec; }
.feature-card__icon--blue { background: #e0f0fb; }
.feature-card__icon--gold { background: #fff8e7; }
.feature-card__icon--red { background: #fde8ea; }
.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}
.feature-card__text {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* ─── HOW TO PLAY (HOME) ─── */
.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    counter-reset: steps;
}
.how-step {
    text-align: center;
    position: relative;
}
.how-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(38,169,108,0.25);
}
.how-step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}
.how-step__text {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* ─── SECTION HEADER ─── */
.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.section__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--court-green);
    background: #e0f4ec;
    padding: 0.25rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.section__title { margin-bottom: 0.75rem; }
.section__subtitle { color: var(--light-text); font-size: 1rem; margin: 0; }

/* ─── BLOG / ARTICLE CARDS ─── */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}
.article-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.article-card__thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f4ec, #e8f4fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.article-card__thumb-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e0f4ec 0%, #e8f4fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.article-card__content {
    padding: 1.4rem;
}
.article-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--court-green);
    margin-bottom: 0.5rem;
}
.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--racket-gray);
    margin-bottom: 0.75rem;
}
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ─── GAME PREVIEW / CTA BAND ─── */
.cta-band {
    background: linear-gradient(135deg, var(--team-blue) 0%, var(--court-green) 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(245,166,35,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.cta-band__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
.cta-band__title {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: var(--font-heading);
    font-weight: 700;
}
.cta-band__text {
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    font-size: 1.05rem;
    margin: 0;
}

/* ─── TESTIMONIALS / RATINGS ─── */
.ratings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.rating-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}
.rating-card__stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}
.rating-card__text {
    font-size: 0.92rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-style: italic;
}
.rating-card__author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* ─── FAQ ─── */
.faq__list {
    max-width: 760px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq__item {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq__item:hover { box-shadow: var(--shadow-sm); }
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    gap: 1rem;
    transition: background var(--transition);
}
.faq__question:hover { background: var(--body-bg); }
.faq__chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--court-green);
    transition: transform var(--transition);
}
.faq__item--open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.4rem;
}
.faq__item--open .faq__answer {
    max-height: 400px;
    padding: 0 1.4rem 1.2rem;
}
.faq__answer p { margin: 0; font-size: 0.95rem; color: var(--light-text); }

/* ─── PAGE HEADER ─── */
.page-hero {
    background: linear-gradient(135deg, #e0f4ec 0%, #e8f4fb 60%, #fff8e7 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(38,169,108,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(0,119,182,0.10) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero__inner { position: relative; text-align: center; }
.page-hero__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--court-green);
    background: rgba(38,169,108,0.12);
    padding: 0.25rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.page-hero__title { margin-bottom: 0.75rem; }
.page-hero__subtitle { color: var(--light-text); max-width: 540px; margin: 0 auto; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--racket-gray);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--team-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--border-color); }

/* ─── ARTICLE PAGE ─── */
.article-body {
    max-width: 740px;
    margin: 0 auto;
}
.article-body h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.45rem;
}
.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol {
    margin: 0 0 1rem 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body strong { color: var(--dark-text); }
.article-body blockquote {
    border-left: 4px solid var(--court-green);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: #e0f4ec;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--dark-text);
    font-style: italic;
}
.article-meta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--racket-gray);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.article-meta__category {
    background: #e0f4ec;
    color: var(--court-green-dark);
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* ─── HOW TO PLAY PAGE ─── */
.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.controls-table th,
.controls-table td {
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
}
.controls-table th {
    background: var(--body-bg);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-text);
}
.controls-table tr:nth-child(even) { background: #f9fafb; }
.tip-box {
    background: linear-gradient(135deg, #e0f4ec, #e8f4fb);
    border-left: 4px solid var(--court-green);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    position: relative;
}
.tip-box__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--court-green-dark);
    margin-bottom: 0.4rem;
}
.tip-box p { margin: 0; font-size: 0.95rem; color: var(--dark-text); }

/* ─── ABOUT PAGE ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}
.team-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--court-green), var(--team-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}
.team-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}
.team-card__role {
    font-size: 0.82rem;
    color: var(--racket-gray);
    margin: 0;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e0f4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--racket-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.contact-info__value {
    font-size: 0.97rem;
    color: var(--dark-text);
    margin: 0;
}

/* ─── FORM ─── */
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__label { font-size: 0.88rem; font-weight: 500; color: var(--dark-text); }
.form__input,
.form__textarea,
.form__select {
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--dark-text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--court-green);
    box-shadow: 0 0 0 3px rgba(38,169,108,0.12);
}
.form__textarea { min-height: 130px; resize: vertical; }

/* ─── PRIVACY / TERMS ─── */
.prose {
    max-width: 820px;
    margin: 0 auto;
}
.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
    color: var(--dark-text);
}
.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.prose p, .prose li { color: var(--light-text); font-size: 0.97rem; line-height: 1.75; }
.prose ul { list-style: disc; margin: 0.75rem 0 1rem 1.5rem; }
.prose a { color: var(--team-blue); text-decoration: underline; }
.prose strong { color: var(--dark-text); }

/* ─── FOOTER ─── */
.footer {
    background: var(--dark-text);
    color: rgba(255,255,255,0.75);
    padding: 3.5rem 0 1.5rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.75rem;
}
.footer__logo span { color: var(--champion-gold); }
.footer__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}
.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.footer__link:hover { color: var(--champion-gold); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}
.footer__copy { color: rgba(255,255,255,0.5); }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color var(--transition);
}
.footer__legal a:hover { color: #fff; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__desc { margin: 0 auto 2rem; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__img-wrap { display: none; }
    .nav__list { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border-color); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); gap: 0.25rem; z-index: 99; }
    .nav__list--open { display: flex; }
    .nav__toggle { display: flex; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .form__row { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .hero__stats { gap: 1.25rem; flex-wrap: wrap; }
    .cookie-consent { right: 0.75rem; left: 0.75rem; max-width: none; bottom: 0.75rem; }
}