@charset "UTF-8";

/*
Theme Name: Experts
Theme URI: 
Author: the Interaia team
Author URI: 
Description: Where Footballers Build Their Future. The all-in-one digital and physical platform for football players, coaches and performance pros to train, teach, earn, and grow.
Requires at least: 5.3
Tested up to: 6.2
Requires PHP: 5.6
Version: 1.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: experts
Tags: 

*/



/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #1f2a40;
  --accent: #00e676;
  --accent-dim: #00c853;
  --accent-glow: rgba(0, 230, 118, 0.15);
  --accent-secondary: #00bcd4;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(148, 163, 184, 0.1);
  --border-accent: rgba(0, 230, 118, 0.3);
  --gradient-hero: linear-gradient(135deg, #0a0e17 0%, #0f1a2e 40%, #0a1628 100%);
  --gradient-card: linear-gradient(145deg, #1a2235 0%, #151d2e 100%);
  --gradient-accent: linear-gradient(135deg, #00e676, #00bcd4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--accent); display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(135deg, #f0f4f8 30%, #94a3b8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; line-height: 1.7;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.3s ease;
}
.btn-primary {
  background: var(--gradient-accent); color: #0a0e17;
  box-shadow: 0 4px 20px rgba(0,230,118,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,230,118,0.35); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover { background: var(--accent-glow); border-color: var(--accent); }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
}
.badge-accent { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--border-accent); }

/* ===== ANIMATED BG ===== */
.bg-grid {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.4;
}
.bg-glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: rgba(0,230,118,0.07); }
.bg-glow-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: rgba(0,188,212,0.06); }
.bg-glow-3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,230,118,0.04); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 23, 0.85); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); transition: all 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-accent); font-size: 1.2rem; font-weight: 900; color: #0a0e17;
}
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--accent); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; }
.mobile-menu { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); overflow: hidden; padding-top: 72px;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 40px;}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  background: var(--accent-glow); color: var(--accent);
  border: 1px solid var(--border-accent); margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem); font-weight: 900; line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -1.5px;
}
.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.2rem; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 40px; max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }

.hero-visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; z-index: 1; opacity: 0.7;
}
.pitch-svg { width: 100%; height: 100%; }

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: rgba(17, 24, 39, 0.5);
}
.marquee-track {
  display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
}
.marquee-item .icon { font-size: 1.1rem; }

/* ===== EXPERT CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px; margin-top: 56px;
}
.category-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.category-card:hover {
  border-color: var(--border-accent); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.category-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent); opacity: 0; transition: opacity 0.3s;
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  margin-bottom: 20px;
}
.category-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.category-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tag {
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
  background: rgba(148,163,184,0.08); color: var(--text-muted); border: 1px solid var(--border);
}

/* ===== HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.how-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  position: relative; transition: all 0.4s ease;
}
.how-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.how-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 900;
  background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.2; position: absolute; top: 16px; left: 24px;
}
.how-icon {
  width: 64px; height: 64px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.6rem;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  margin: 0 auto 24px;
}
.how-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.how-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== MARKETPLACE / EXPERTS GRID ===== */
.marketplace-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
}
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  background: var(--bg-card); color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-glow); color: var(--accent); border-color: var(--border-accent);
}
.experts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 32px;
}
.expert-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.4s ease;
}
.expert-card:hover {
  border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-glow);
}
.expert-card-header {
  padding: 28px 28px 0; display: flex; gap: 16px; align-items: flex-start;
}
.expert-avatar {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: #0a0e17;
}
.expert-avatar.scout { background: linear-gradient(135deg, #00e676, #4caf50); }
.expert-avatar.analyst { background: linear-gradient(135deg, #00bcd4, #0097a7); }
.expert-avatar.transfer { background: linear-gradient(135deg, #ff9800, #f57c00); }
.expert-avatar.director { background: linear-gradient(135deg, #9c27b0, #7b1fa2); }
.expert-avatar.mentor { background: linear-gradient(135deg, #e91e63, #c2185b); }
.expert-info h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.expert-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.expert-card-body { padding: 20px 28px; }
.expert-card-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.expert-meta {
  display: flex; gap: 16px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.expert-meta-item {
  display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted);
}
.expert-meta-item .value { color: var(--text-primary); font-weight: 600; }
.expert-card-footer {
  padding: 16px 28px 24px; display: flex; gap: 10px;
}
.expert-card-footer .btn { flex: 1; justify-content: center; padding: 10px 16px; font-size: 0.82rem; }

/* ===== USE CASES ===== */
.usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.usecase-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative;
  transition: all 0.4s ease; overflow: hidden;
}
.usecase-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.usecase-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.usecase-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.usecase-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.usecase-steps { list-style: none; }
.usecase-steps li {
  padding: 8px 0; font-size: 0.85rem; color: var(--text-secondary);
  display: flex; align-items: flex-start; gap: 10px;
}
.usecase-steps li::before {
  content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0;
}
.usecase-result {
  margin-top: 20px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
}

/* ===== ENGAGEMENT MODELS ===== */
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.engagement-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; text-align: center;
  transition: all 0.4s ease; position: relative;
}
.engagement-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.engagement-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(145deg, #1a2235 0%, #0f2a1f 100%);
}
.engagement-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  background: var(--gradient-accent); color: #0a0e17; border-radius: 0 0 8px 8px;
}
.engagement-tier {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.engagement-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.engagement-card .price { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; }
.engagement-features { list-style: none; text-align: left; margin-bottom: 32px; }
.engagement-features li {
  padding: 10px 0; font-size: 0.88rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.engagement-features li:last-child { border-bottom: none; }
.engagement-features .check { color: var(--accent); font-weight: 700; }

/* ===== WHY SECTION ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all 0.4s ease;
}
.why-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== DELIVERY CHANNELS ===== */
.channels-flex { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; justify-content: center; }
.channel-chip {
  display: flex; align-items: center; gap: 10px; padding: 16px 28px;
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s ease;
}
.channel-chip:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.channel-chip .ch-icon { font-size: 1.3rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; padding: 100px 0; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2a1f 50%, #0a1628 100%);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px;
}
.cta-content h2 .gradient-text {
  background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-content p {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px; border-top: 1px solid var(--border);
  background: rgba(10, 14, 23, 0.9);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; background: var(--bg-card);
  border: 1px solid var(--border); transition: all 0.2s; font-size: 0.9rem;
}
.footer-socials a:hover { border-color: var(--border-accent); background: var(--accent-glow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .how-grid, .usecases-grid, .engagement-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .categories-grid { grid-template-columns: 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section { padding: 64px 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }