/* ---------------------------------------------------------
   CSS Custom Properties
   --------------------------------------------------------- */
:root {
    --primary:      #4169E1;
    --primary-dark: #2F54C0;
    --dark:         #0c1a3d;
    --dark-alt:     #162040;
    --text:         #1a2035;
    --text-muted:   #6b7280;
    --border:       #e5e7eb;
    --bg-light:     #f8fafc;
    --white:        #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: var(--white);
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.25;
}

p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------------------
   Site Header / Nav
   --------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 46px;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.15s;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.nav-lang {
    display: flex;
    gap: 0.25rem;
    font-size: 0.8125rem;
}

.nav-lang a {
    color: #9ca3af;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.nav-lang a.active,
.nav-lang a:hover {
    color: var(--primary);
    background: #eff6ff;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-lang {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.75rem;
    font-size: 1.4rem;
    align-items: center;
}

.mobile-lang a {
    color: #9ca3af;
    border: none !important;
    padding: 0 !important;
    font-weight: 400 !important;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.15s;
}

.mobile-lang a.active,
.mobile-lang a:hover { opacity: 1; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.15s, transform 0.1s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.15s, transform 0.1s;
}

.btn-outline:hover {
    background: #eff6ff;
    transform: translateY(-1px);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.15s, transform 0.1s;
}

.btn-store:hover {
    background: #1c2d5a;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-store svg {
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.about-hero { padding: 88px 32px 80px; background: var(--white); position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px); background-size: 28px 28px; opacity: 0.45; pointer-events: none; }
.about-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none; }
.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hero h1 { font-size: 4rem; font-weight: 700; line-height: 1.08; color: var(--dark); margin: 0 0 24px; letter-spacing: -0.035em; }
.about-hero h1 em { font-style: normal; color: var(--primary); }
.about-hero p {
    margin: 0 0 24px;
    font-size: 1.1875rem; color: var(--text-muted); line-height: 1.75; max-width: 650px; }
/*.hero {*/
/*    padding: 120px 2rem 80px;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 4rem;*/
/*    align-items: center;*/
/*}*/

/*.hero h1 {*/
/*    font-size: 3rem;*/
/*    font-weight: 700;*/
/*    line-height: 1.2;*/
/*    color: var(--dark);*/
/*    margin-bottom: 0;*/
/*}*/

/*.hero p {*/
/*    font-size: 1.125rem;*/
/*    color: var(--text-muted);*/
/*    line-height: 1.7;*/
/*    margin: 1.5rem 0;*/
/*}*/

/*.hero-buttons {*/
/*    display: flex;*/
/*    gap: 1rem;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*}*/

/*.hero-img img {*/
/*    width: 100%;*/
/*    border-radius: 16px;*/
/*    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);*/
/*}*/

/* Page hero (non-home) */
/*.page-hero {*/
/*    background: var(--bg-light);*/
/*    padding: 120px 2rem 80px;*/
/*    text-align: center;*/
/*    border-bottom: 1px solid var(--border);*/
/*}*/

/*.page-hero h1 {*/
/*    font-size: 2.75rem;*/
/*    font-weight: 700;*/
/*    color: var(--dark);*/
/*    max-width: 700px;*/
/*    margin: 0 auto 1rem;*/
/*}*/

/*.page-hero p {*/
/*    font-size: 1.125rem;*/
/*    color: var(--text-muted);*/
/*    max-width: 600px;*/
/*    margin: 0 auto;*/
/*    line-height: 1.7;*/
/*}*/

/* ---------------------------------------------------------
   Feature Sections (alternating)
   --------------------------------------------------------- */
.features-wrapper {
    overflow: hidden;
}

.feature-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-section:nth-child(even) .feature-text {
    order: 2;
}

.feature-section:nth-child(even) .feature-img {
    order: 1;
}

.feature-number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.feature-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1rem;
}

.feature-section p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.0625rem;
    margin: 0;
}

.feature-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------
   Feature Grid
   --------------------------------------------------------- */
.feature-grid-section {
    background: var(--bg-light);
    padding: 80px 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-subheading {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.feature-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.5rem;
}

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

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonials-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.testimonial-card blockquote {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 2px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------
   Brands
   --------------------------------------------------------- */
.brands-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--white);
}

.brands-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.brands-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.brands-row img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: opacity 0.2s, filter 0.2s;
}

.brands-row img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
    background: var(--primary); padding: 96px 32px; text-align: center; }
.cta-section h2 {
    font-size: 3rem; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -0.03em; line-height: 1.15; }
.cta-section p { font-size: 1.125rem; color: rgba(255,255,255,0.55); margin: 0 auto; line-height: 1.7; }
.cta-stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.btn-store-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 18px; font-family: inherit; font-size: 0.8125rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.btn-store-cta:hover { background: rgba(255,255,255,0.14); color: #fff; }
.cta-section .cta-actions {
    margin-top: 40px;
    gap: 12px;
    display: flex;
    justify-content: center;
}
.cta-section .cta-actions, .cta-section .cta-stores {
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    .cta-section {
        padding: 64px 20px;
    }
}

/* ---------------------------------------------------------
   Blog
   --------------------------------------------------------- */
.blog-section {
    padding: 60px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-top: 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.post-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.post-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
}

.post-category:hover {
    background: #dbeafe;
    color: var(--primary-dark);
}

.post-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

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

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.post-meta {
    font-size: 0.875rem;
    color: #9ca3af;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-posts li {
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.sidebar-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-posts a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.15s;
}

.sidebar-posts a:hover {
    color: var(--primary);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-categories li a {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.sidebar-categories li a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #eff6ff;
}

/* Blog Post / Article */
.article-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.article-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-hero-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    max-height: 450px;
    object-fit: cover;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
}

.post-body p {
    margin-bottom: 1.25rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 2rem;
}

.back-to-blog:hover {
    color: var(--primary-dark);
}

/* ---------------------------------------------------------
   About Page
   --------------------------------------------------------- */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ---------------------------------------------------------
   Contact Page
   --------------------------------------------------------- */
.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 91, 220, 0.12);
}

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

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

.form-privacy a {
    color: var(--primary);
}

.alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-img {
    width: 100%;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------
   Document Pages (Privacy, Terms, Delete Data)
   --------------------------------------------------------- */
.doc-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 2rem 80px;
}

.doc-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.doc-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.doc-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
}

.doc-content p,
.doc-content li {
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
}

.doc-content ul,
.doc-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.doc-content li {
    margin-bottom: 0.375rem;
}

.doc-content a {
    color: var(--primary);
}

/* ---------------------------------------------------------
   Sport Page
   --------------------------------------------------------- */
.sport-hero {
    padding: 120px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sport-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sport-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sport-hero-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 2rem 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-store-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-store-links .btn-store {
    font-size: 0.8125rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-store-links .btn-store:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.15s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

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

/* ---------------------------------------------------------
   Container helper
   --------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------------------------------------------------------
   Responsive — 768px
   --------------------------------------------------------- */
@media (max-width: 960px) {
    .hamburger {
        display: block;
    }

    .lang-dropdown {
        display: none !important;
    }

    .header-inner {
        .get-started {
            display: flex;
            flex: 1 0 0;
            justify-content: flex-end;
        }
    }

    .stats-bar-section {
        display: none;
    }

    .problem-grid {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links,
    .nav-lang {
        display: none;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-img {
        order: -1;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .stats-bar-section {
        display: none;
    }

    /* Feature sections */
    .feature-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 60px 1.5rem;
    }

    .feature-section:nth-child(even) .feature-text {
        order: 0;
    }

    .feature-section:nth-child(even) .feature-img {
        order: 0;
    }

    .feature-section h2 {
        font-size: 1.625rem;
    }

    /* Feature grid */
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Blog */
    .blog-layout {
        grid-template-columns: 1fr;
    }

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

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

    .blog-sidebar {
        position: static;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 60px 1.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    /* Sport */
    .sport-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 100px;
    }

    .sport-hero h1 {
        font-size: 2rem;
    }

    /* Article */
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 40px 1.5rem 60px;
    }

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

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .footer-new-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================
   NEW DESIGN SYSTEM — English site (app.blade.php)
   Coexists with legacy classes used by BS / SR / HR layouts.
   ========================================================== */

/* ── New header ─────────────────────────────────────────── */
.header {
    position: sticky; top: 0; z-index: 200;
    height: var(--header-h, 70px);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-color: transparent; }
.header-inner {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; padding: 0 32px; gap: 28px;
}
.logo-img-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img-link img { height: 32px; width: auto; display: block; }
.header-nav { display: flex; gap: 24px; flex: 1; }
.header-nav a {
    font-size: 0.9375rem; font-weight: 500; color: #374151;
    text-decoration: none; transition: color 0.15s;
}
.header-nav a:hover, .header-nav a.active { color: var(--primary); }
.lang-dropdown { position: relative; }
.lang-dropdown-btn {
    display: flex; align-items: center; gap: 5px;
    background: transparent; border: 1px solid #e5e7eb;
    border-radius: 6px; padding: 5px 10px;
    cursor: pointer; font-size: 1.15rem; line-height: 1;
    color: #374151; transition: border-color 0.15s, background 0.15s;
    font-family: inherit;
}
.lang-dropdown-btn:hover { border-color: var(--primary); background: #eff6ff; }
.lang-chevron { color: #9ca3af; transition: transform 0.2s; flex-shrink: 0; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
    display: none; position: absolute; right: 0; top: calc(100% + 6px);
    background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); min-width: 150px; z-index: 200;
    overflow: hidden;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-item {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 14px; text-decoration: none;
    font-size: 0.875rem; font-weight: 500; color: #374151;
    transition: background 0.1s;
}
.lang-dropdown-item:hover { background: #f9fafb; }
.lang-dropdown-item.active { color: var(--primary); background: #eff6ff; }

/* ── New button variants ─────────────────────────────────── */
.btn-primary-lg {
    background: var(--primary); color: #fff; border: none;
    border-radius: 8px; padding: 13px 30px;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.15s, transform 0.1s;
}
.btn-primary-lg:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
    border-radius: 8px; padding: 10px 22px;
    font-family: inherit; font-size: 0.9375rem; font-weight: 600;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.15s, transform 0.1s;
}
.btn-ghost:hover { background: #eff6ff; color: var(--primary); transform: translateY(-1px); }
.btn-ghost-lg {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
    border-radius: 8px; padding: 13px 30px;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background 0.15s, transform 0.1s;
}
.btn-ghost-lg:hover { background: #eff6ff; color: var(--primary); transform: translateY(-1px); }
.btn-cta {
    background: #fff; color: var(--primary); border: none;
    border-radius: 8px; padding: 13px 30px;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: transform 0.1s, box-shadow 0.15s;
    text-decoration: none; display: inline-block;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: var(--primary); }
.btn-cta-ghost {
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
    padding: 13px 30px; font-family: inherit; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s, transform 0.1s;
    text-decoration: none; display: inline-block;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-1px); }

/* ── Overline pills ──────────────────────────────────────── */
.overline {
    display: inline-flex; align-items: center;
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.10em;
    color: var(--primary); margin-bottom: 14px;
    background: #eff6ff; border: 1px solid #c7d7fd;
    border-radius: 999px; padding: 4px 12px;
}
.overline-light {
    display: inline-flex; align-items: center;
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.10em;
    color: rgba(65,105,225,0.9); margin-bottom: 14px;
    background: rgba(65,105,225,0.12); border: 1px solid rgba(65,105,225,0.2);
    border-radius: 999px; padding: 4px 12px;
}

/* ── Updated page-hero (dot-grid style) ─────────────────── */
.page-hero-new {
    padding: 88px 32px 80px; background: var(--white);
    position: relative; overflow: hidden;
}
.page-hero-new::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.45; pointer-events: none;
}
.page-hero-new::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none;
}
.page-hero-inner {
    max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.page-hero-new.centered { text-align: center; }
.page-hero-new.centered .page-hero-inner { max-width: 720px; }
.page-hero-new h1 {
    font-size: 3.5rem; font-weight: 700; line-height: 1.1;
    color: var(--dark); margin: 0 0 20px; letter-spacing: -0.03em;
}
.page-hero-new h1 em { font-style: normal; color: var(--primary); }
.page-hero-new p {
    font-size: 1.125rem; color: var(--text-muted); line-height: 1.75;
    margin: 0 0 36px; max-width: 560px;
}
.page-hero-new.centered p { margin-left: auto; margin-right: auto; }


.cta-note { font-size: 0.875rem !important; color: rgba(255,255,255,0.28) !important; margin-top: 16px !important; }

/* ── New footer ──────────────────────────────────────────── */
.footer-new { background: #162040; padding: 56px 32px 28px; }
.footer-new-inner { max-width: 1200px; margin: 0 auto; }
.footer-new-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 24px;
}
.footer-new-logo {
    font-size: 1.25rem; font-weight: 700; color: #fff;
    letter-spacing: -0.02em; margin-bottom: 12px; text-decoration: none;
}
.footer-new-logo span { color: var(--primary); }
.footer-new-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-new-tagline {
    font-size: 0.9375rem; color: rgba(255,255,255,0.45);
    line-height: 1.6; max-width: 240px; margin-bottom: 20px;
}
.footer-new-lang { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-lang-btn {
    font-size: 0.75rem; font-weight: 600; padding: 4px 9px;
    border-radius: 4px; border: 1px solid rgba(255,255,255,0.12);
    background: transparent; cursor: pointer; color: rgba(255,255,255,0.4);
    font-family: inherit; transition: color 0.15s, background 0.15s;
    text-decoration: none; display: inline-block;
}
.footer-lang-btn.active { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.footer-col-head-new {
    font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #fff; margin-bottom: 14px;
}
.footer-links-new { display: flex; flex-direction: column; gap: 10px; }
.footer-links-new a {
    font-size: 0.9375rem; color: rgba(255,255,255,0.45);
    text-decoration: none; transition: color 0.15s;
}
.footer-links-new a:hover { color: #fff; }
.footer-new-bottom {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-new-copy { font-size: 0.875rem; color: rgba(255,255,255,0.28); }
.footer-new-socials { display: flex; gap: 18px; }
.footer-new-socials a {
    font-size: 0.875rem; color: rgba(255,255,255,0.35);
    text-decoration: none; transition: color 0.15s;
}
.footer-new-socials a:hover { color: #fff; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 96px 32px;
}
.faq-section .faq-inner {
    max-width: 760px;
    margin: 0 auto;
}
.faq-section .faq-inner .faq-head {
    text-align: center;
    margin-bottom: 52px;
}
.faq-section .faq-inner .faq-head .faq-overline {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--primary);
    margin-bottom: 12px;
    background: #eff6ff;
    border: 1px solid #c7d7fd;
    border-radius: 999px;
    padding: 4px 12px;
}
.faq-section .faq-inner .faq-head h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.025em;
}
.faq-section .faq-inner .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-section .faq-inner .faq-item .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer;
    font-size: 1rem; font-weight: 600; color: var(--dark);
    gap: 16px; user-select: none;
}
.faq-section .faq-inner .faq-item .faq-q:hover { color: var(--primary); }
.faq-section .faq-inner .faq-item .faq-q .faq-icon {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-light); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; line-height: 1; transition: background 0.15s, transform 0.2s;
    color: var(--text-muted);
}
.faq-section .faq-inner .faq-item .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; padding: 0 24px;
}
.faq-section .faq-inner .faq-item.open {
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.faq-section .faq-inner .faq-item.open .faq-a { max-height: 100%; padding-bottom: 20px; }

@media (max-width: 640px) {
    .faq-section {
        padding: 64px 20px;
    }
}

/* ── Responsive — new components ────────────────────────── */
@media (max-width: 960px) {
    .header-nav { display: none; }
    .footer-new-top { grid-template-columns: 1fr 1fr; }
    .page-hero-new h1 { font-size: 2.5rem; }
    .cta-section-new h2 { font-size: 2.25rem; }
}
@media (max-width: 640px) {
    .header-inner { padding: 0 16px; }
    .footer-new-top { grid-template-columns: 1fr; }
    .page-hero-new { padding: 64px 20px 56px; }
    .page-hero-new h1 { font-size: 2rem; }
    .cta-section-new { padding: 72px 20px; }
}

/* ── Sport page (new design) ─────────────────────────────── */

/* Reset old .sport-hero to be a section wrapper */
.sport-hero {
    padding: 88px 32px 80px; max-width: none; margin: 0;
    display: block; gap: unset; align-items: unset;
    background: var(--white); position: relative; overflow: hidden;
}
.sport-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.45; pointer-events: none;
}
.sport-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none;
}
.sport-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 58fr 42fr; gap: 64px;
    align-items: center; position: relative; z-index: 1;
}
.sport-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #eff6ff; border: 1px solid #c7d7fd;
    border-radius: 999px; padding: 5px 14px 5px 8px;
    font-size: 0.8125rem; font-weight: 600; color: var(--primary); margin-bottom: 20px;
}
.sport-icon { font-size: 1.125rem; }
.sport-hero h1 {
    font-size: 3.75rem; font-weight: 700; line-height: 1.08;
    color: var(--dark); margin: 0 0 22px; letter-spacing: -0.035em;
}
.sport-hero h1 em { font-style: normal; color: var(--primary); }
.sport-hero p {
    font-size: 1.125rem; color: var(--text-muted); line-height: 1.75;
    margin: 0 0 36px; max-width: 480px;
}
.sport-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pain section */
.sport-pain {
    background: var(--dark); padding: 96px 32px;
    position: relative; overflow: hidden;
}
.sport-pain-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.pain-head { text-align: center; margin-bottom: 56px; }
.pain-head h2 {
    font-size: 2.75rem; font-weight: 700; color: #fff;
    margin: 0 0 14px; letter-spacing: -0.03em; line-height: 1.15;
}
.pain-head p {
    font-size: 1.0625rem; color: rgba(255,255,255,0.5);
    margin: 0 auto; line-height: 1.7;
}
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 30px 26px; transition: background 0.2s;
}
.pain-card:hover { background: rgba(255,255,255,0.07); }
.pain-scenario {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(65,105,225,0.8); margin-bottom: 12px;
}
.pain-quote {
    font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.8);
    margin: 0 0 14px; font-style: italic;
}
.pain-reality { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.65; margin: 0; }

/* Solution section */
.sport-solution { padding: 96px 32px; background: var(--white); }
.solution-inner { max-width: 1200px; margin: 0 auto; }
.solution-head { text-align: center; margin-bottom: 72px; }
.solution-head h2 {
    font-size: 2.25rem; font-weight: 700; color: var(--dark);
    margin: 0; letter-spacing: -0.025em;
}
.solution-blocks { display: flex; flex-direction: column; gap: 80px; }
.solution-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.solution-block.reverse { direction: rtl; }
.solution-block.reverse > * { direction: ltr; }
.sol-num {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--primary); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.sol-num::after {
    content: ''; flex: 0 0 28px; height: 2px;
    background: var(--primary); opacity: 0.25; border-radius: 2px;
}
.sol-copy h3 {
    font-size: 1.75rem; font-weight: 700; color: var(--dark);
    margin: 0 0 14px; line-height: 1.25; letter-spacing: -0.02em;
}
.sol-copy p { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.sol-visual {
    background: #f9fafb; border: 1px solid var(--border);
    border-radius: 20px; padding: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.sol-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sol-stat {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px; text-align: center;
}
.sol-stat-val { font-size: 1.5rem; font-weight: 700; color: var(--dark); line-height: 1; }
.sol-stat-lbl {
    font-size: 0.5625rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--text-muted); margin-top: 4px;
}

/* SEO content section */
.sport-content {
    padding: 80px 32px; background: #f9fafb;
    border-top: 1px solid var(--border);
}
.sport-content-inner { max-width: 760px; margin: 0 auto; }
.sport-content h2 {
    font-size: 1.875rem; font-weight: 700; color: var(--dark);
    margin: 0 0 16px; letter-spacing: -0.02em;
}
.sport-content p { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.8; margin: 0 0 20px; }
.sport-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }

/* Other sports */
.other-sports {
    padding: 80px 32px; background: var(--white);
    border-top: 1px solid var(--border);
}
.other-sports-inner { max-width: 1200px; margin: 0 auto; }
.other-sports h2 {
    font-size: 1.5rem; font-weight: 700; color: var(--dark);
    margin: 0 0 32px; text-align: center; letter-spacing: -0.02em;
}
.sports-list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.sport-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f9fafb; border: 1px solid var(--border);
    border-radius: 999px; padding: 8px 18px;
    font-size: 0.9375rem; font-weight: 500; color: var(--text);
    text-decoration: none; transition: border-color 0.15s, color 0.15s;
}
.sport-pill:hover { border-color: var(--primary); color: var(--primary); }
.sport-pill.active { border-color: var(--primary); color: var(--primary); }

/* Responsive — sport page */
@media (max-width: 960px) {
    .sport-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .sport-hero h1 { font-size: 2.75rem; }
    .pain-grid { grid-template-columns: 1fr; }
    .solution-block, .solution-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}
@media (max-width: 640px) {
    .sport-hero { padding: 56px 20px 48px; }
    .sport-pain, .sport-solution, .sport-content, .other-sports { padding: 64px 20px; }
    .pain-head h2 { font-size: 2rem; }
    .sport-hero h1 { font-size: 2.25rem; }
    .solution-head h2 { font-size: 1.875rem; }
    .sol-copy h3 { font-size: 1.5rem; }
}

/* ── Blog (new design, scoped under .blog-v2) ───────────────── */

/* Hero */
.blog-hero {
    padding: 72px 32px 56px; background: var(--white);
    position: relative; overflow: hidden;
}
.blog-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.45; pointer-events: none;
}
.blog-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none;
}
.blog-hero-inner {
    max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.blog-hero h1 {
    font-size: 3.5rem; font-weight: 700; line-height: 1.1;
    color: var(--dark); margin: 0 0 12px; letter-spacing: -0.03em;
}
.blog-hero p { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; margin: 0; max-width: 460px; }
.blog-search { flex-shrink: 0; }
.search-input-wrap { position: relative; }
.search-input {
    width: 280px; padding: 11px 14px 11px 40px;
    border: 1px solid var(--border); border-radius: 10px;
    font-family: inherit; font-size: 0.9375rem; color: var(--text);
    background: var(--white); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(65,105,225,0.12); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }

/* Category filter bar */
.category-bar {
    border-bottom: 1px solid var(--border); background: var(--white);
    position: sticky; top: 70px; z-index: 100;
}
.category-bar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; gap: 4px;
}
.cat-btn {
    font-size: 0.875rem; font-weight: 600; padding: 16px 18px;
    color: var(--text-muted); background: none; border: none;
    border-bottom: 2px solid transparent; cursor: pointer;
    font-family: inherit; white-space: nowrap;
    transition: color 0.15s, border-color 0.15s; margin-bottom: -1px;
    text-decoration: none; display: inline-flex; align-items: center;
}
.cat-btn:hover { color: var(--dark); }
.cat-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.cat-count {
    font-size: 0.6875rem; font-weight: 700; background: #f3f4f6;
    color: var(--text-muted); border-radius: 999px; padding: 1px 6px; margin-left: 4px;
}
.cat-btn.active .cat-count { background: #eff6ff; color: var(--primary); }

/* Featured post */
.featured-post { padding: 56px 32px 0; }
.featured-inner { max-width: 1200px; margin: 0 auto; }
.featured-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.10em; color: var(--text-muted); margin-bottom: 20px;
}
.featured-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.featured-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.featured-img {
    background: linear-gradient(135deg, #0c1a3d, #162040, #1e3470);
    min-height: 320px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background-size: cover;
    background-position: center;
}
.featured-img::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(65,105,225,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(65,105,225,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.featured-img-icon { font-size: 5rem; position: relative; z-index: 1; opacity: 0.7; }
.featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag {
    display: inline-flex; align-items: center;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--primary); background: #eff6ff;
    padding: 3px 9px; border-radius: 5px; margin-bottom: 14px;
}
.featured-title {
    font-size: 1.75rem; font-weight: 700; color: var(--dark);
    margin: 0 0 14px; line-height: 1.3; letter-spacing: -0.02em;
}
.featured-excerpt { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 24px; }
.featured-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.featured-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
    width: 30px; height: 30px; border-radius: 50%; background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6875rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.post-date { font-size: 0.8125rem; color: var(--text-muted); }
.post-read { font-size: 0.8125rem; color: var(--text-muted); }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: #d1d5db; }

/* Posts grid */
.posts-section { padding: 48px 32px 96px; }
.posts-inner { max-width: 1200px; margin: 0 auto; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Scoped .post-card overrides for new design */
.blog-v2 .post-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    text-decoration: none; display: block; color: inherit;
    transition: box-shadow 0.2s, transform 0.2s; flex-direction: unset;
}
.blog-v2 .post-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.post-img {
    height: 180px; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
    background-size: cover; background-position: center;
}
.post-img-icon { font-size: 3rem; position: relative; z-index: 1; }
.blog-v2 .post-body { padding: 20px 22px 22px; }
.post-tag {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--primary); background: #eff6ff;
    padding: 3px 8px; border-radius: 5px; margin-bottom: 10px;
}
.post-title { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.45; margin: 0 0 8px; }
.post-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 16px; }
.blog-v2 .post-meta { font-size: 0.8125rem; color: var(--text-muted); display: flex; gap: 10px; align-items: center; }

/* Newsletter */
.newsletter { background: #f9fafb; border-top: 1px solid var(--border); padding: 72px 32px; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: 1.875rem; font-weight: 700; color: var(--dark); margin: 0 0 12px; letter-spacing: -0.02em; }
.newsletter p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input {
    flex: 1; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: 10px; font-family: inherit; font-size: 0.9375rem;
    color: var(--text); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.newsletter-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(65,105,225,0.12); }
.newsletter-btn {
    background: var(--primary); color: #fff; border: none; border-radius: 10px;
    padding: 12px 24px; font-family: inherit; font-size: 0.9375rem; font-weight: 700;
    cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.newsletter-btn:hover { background: var(--primary-dark); }
.newsletter-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 10px; }

/* ── Blog Post (show page) ───────────────────────────────── */
.post-header { padding: 72px 32px 56px; background: var(--white); border-bottom: 1px solid var(--border); }
.post-header-inner { max-width: 760px; margin: 0 auto; }
.post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.post-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.post-breadcrumb a:hover { color: var(--primary); }
.post-breadcrumb-sep { color: #d1d5db; }
.post-header h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; color: var(--dark); margin: 0 0 20px; letter-spacing: -0.03em; }
.post-lead { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 32px; }
.post-meta-row { display: flex; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.author-block { display: flex; align-items: center; gap: 10px; }
.author-avatar-lg { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name-lg { font-size: 0.9375rem; font-weight: 600; color: var(--dark); }
.author-role { font-size: 0.8125rem; color: var(--text-muted); }
.post-date-read { display: flex; gap: 16px; margin-left: auto; align-items: center; }
.post-date-read span { font-size: 0.875rem; color: var(--text-muted); }
.share-btn {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 600; color: var(--primary);
    background: #eff6ff; border: 1px solid #c7d7fd;
    border-radius: 10px; padding: 6px 14px;
    cursor: pointer; transition: background 0.15s; text-decoration: none;
}
.share-btn:hover { background: #dbeafe; color: var(--primary); }

/* Article layout — scoped under .blog-v2 to avoid conflict with old BS/SR layout */
.blog-v2 .article-layout { padding: 64px 32px 96px; }
.blog-v2 .article-layout-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 300px; gap: 80px; align-items: start;
}
.article-body { max-width: 680px; }
.article-body p { font-size: 1.0625rem; color: var(--text); line-height: 1.85; margin: 0 0 24px; }
.article-body h2 { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin: 48px 0 16px; line-height: 1.25; letter-spacing: -0.02em; }
.article-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 36px 0 12px; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 24px; }
.article-body li { font-size: 1.0625rem; color: var(--text); line-height: 1.75; margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--primary); margin: 32px 0; padding: 4px 0 4px 24px; }
.article-body blockquote p { font-size: 1.125rem; font-style: italic; color: var(--dark); font-weight: 500; margin: 0; }
.article-callout { background: #eff6ff; border: 1px solid #c7d7fd; border-radius: 14px; padding: 24px 28px; margin: 32px 0; }
.article-callout-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 8px; }
.article-callout p { font-size: 0.9375rem; color: var(--dark); line-height: 1.7; margin: 0; }
.article-img-placeholder {
    background: linear-gradient(135deg, #0c1a3d, #1e3470);
    border-radius: 14px; height: 280px; display: flex; align-items: center;
    justify-content: center; margin: 32px 0; position: relative; overflow: hidden;
}
.article-img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(65,105,225,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(65,105,225,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.article-img-caption { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-top: -16px; margin-bottom: 32px; font-style: italic; }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.author-bio-block { background: #f9fafb; border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-top: 48px; display: flex; gap: 16px; }
.bio-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.bio-name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.bio-role { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 6px; }
.bio-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-toc { background: #f9fafb; border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.sidebar-toc-head { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.toc-list a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s; line-height: 1.45; display: block; padding-left: 12px; border-left: 2px solid transparent; }
.toc-list a:hover { color: var(--primary); }
.toc-list a.active { color: var(--primary); border-left-color: var(--primary); }
.sidebar-cta-card { background: var(--dark); border-radius: 14px; padding: 28px 24px; }
.sidebar-cta-card h3 { font-size: 1.0625rem; font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.3; }
.sidebar-cta-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0 0 18px; }
.sidebar-cta-btn { display: block; width: 100%; text-align: center; background: var(--primary); color: #fff; border: none; border-radius: 10px; padding: 11px; font-family: inherit; font-size: 0.875rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.sidebar-cta-btn:hover { background: var(--primary-dark); color: #fff; }
.sidebar-related-head { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.related-item { display: block; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.15s; }
.related-item:last-child { border-bottom: none; }
.related-item:hover .related-title { color: var(--primary); }
.related-tag-sm { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); margin-bottom: 4px; }
.related-title { font-size: 0.875rem; font-weight: 600; color: var(--dark); line-height: 1.4; transition: color 0.15s; }

/* Related posts strip */
.related-posts { padding: 0 32px 96px; }
.related-posts-inner { max-width: 1200px; margin: 0 auto; }
.related-posts h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 0 0 32px; letter-spacing: -0.02em; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-decoration: none; color: inherit; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.rel-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.rel-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); background: #eff6ff; padding: 3px 8px; border-radius: 5px; margin-bottom: 10px; display: inline-block; }
.rel-title { font-size: 0.9375rem; font-weight: 700; color: var(--dark); line-height: 1.45; margin: 0 0 8px; }
.rel-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 960px) {
    .blog-hero-inner { flex-direction: column; align-items: flex-start; }
    .blog-hero h1 { font-size: 2.5rem; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 200px; }
    .blog-v2 .article-layout-inner { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .post-header h1 { font-size: 2.25rem; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .blog-hero { padding: 56px 20px 40px; }
    .featured-post, .posts-section, .newsletter, .related-posts { padding-left: 20px; padding-right: 20px; }
    .posts-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .search-input { width: 100%; }
    .post-header { padding: 48px 20px 40px; }
    .blog-v2 .article-layout { padding: 48px 20px 64px; }
    .related-grid { grid-template-columns: 1fr; }
    .post-date-read { margin-left: 0; }
}
.sports-index{padding:56px 0;border-top:1px solid #f3f4f6;}
.sports-index-inner{max-width:1100px;margin:0 auto;padding:0 24px;}
.sports-index-head{text-align:center;margin-bottom:36px;}
.sports-index-sub{color:#6b7280;max-width:480px;margin:8px auto 0;font-size:0.9375rem;}
.sports-chips{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;}
.sport-chip{display:inline-flex;align-items:center;gap:5px;padding:7px 16px;background:#fff;border:1px solid #e5e7eb;border-radius:100px;font-size:0.875rem;font-weight:500;color:#374151;text-decoration:none;transition:background 0.12s,border-color 0.12s,color 0.12s;}
.sport-chip:hover{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8;}
.sports-index-note{text-align:center;margin-top:28px;font-size:0.875rem;color:#9ca3af;}
.sports-index-note a{color:#4169E1;}
