/* =============================================
   KortePH – Styles
   Light & fun sports theme
   ============================================= */

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

:root {
  --bg:      #FFFFFF;
  --bg-2:    #F8FAFF;
  --bg-3:    #EFF6FF;
  --navy:    #0F172A;
  --cyan:    #22D3EE;
  --cyan-d:  #06B6D4;
  --orange:  #F97316;
  --green:   #10B981;
  --purple:  #8B5CF6;
  --slate:   #64748B;
  --text:    #0F172A;
  --text-2:  #475569;
  --text-3:  #94A3B8;
  --border:  rgba(15,23,42,0.09);
  --radius:  16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary.btn-sm  { padding: 9px 18px; font-size: 13.5px; }
.btn-primary.btn-lg  { padding: 14px 26px; font-size: 15px; }
.btn-primary.btn-full { width: 100%; justify-content: center; padding: 14px; }

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-cyan:hover { opacity: .88; }
.btn-cyan.btn-full { width: 100%; padding: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.btn-ghost.btn-lg { padding: 14px 26px; font-size: 15px; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }
.btn-white.btn-lg { padding: 14px 26px; font-size: 15px; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-white.btn-lg { padding: 13px 26px; font-size: 15px; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  font-size: 14px;
  transition: border-color .2s;
}
.btn-outline-dark:hover { border-color: rgba(15,23,42,0.2); }

.btn-cyan-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(34,211,238,0.45);
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}
.btn-cyan-outline:hover { border-color: var(--cyan); background: rgba(34,211,238,0.1); }

/* ---- Section common ---- */
.section-eyebrow { margin-bottom: 12px; }
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,211,238,0.1);
  color: var(--cyan-d);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
}
.eyebrow-tag.eyebrow-orange {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
}
.tag-light {
  background: rgba(34,211,238,0.15);
  border-color: rgba(34,211,238,0.4);
  color: var(--cyan);
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: var(--cyan-d);
}
.section-title.center { text-align: center; }
.text-orange { color: var(--orange); }
.text-cyan   { color: var(--cyan-d); }

.section-sub {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.center { text-align: center; margin: 0 auto; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s, border-color .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
}
.logo-mark-sm { width: 28px; height: 28px; font-size: 15px; border-radius: 7px; }
.logo-text { font-weight: 800; font-size: 17px; color: white; }
.navbar.scrolled .logo-text { color: var(--text); }
.logo-footer span { color: var(--text-2); font-size: 17px; font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: white; }

.navbar.scrolled .nav-links a { color: var(--text-2); }
.navbar.scrolled .nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-link-plain {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-link-plain:hover { color: white; }

.navbar.scrolled .nav-link-plain { color: var(--text-2); }
.navbar.scrolled .nav-link-plain:hover { color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: white;
  gap: 4px;
}
.mobile-nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.mobile-nav.open { display: flex; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #060C1A 0%, #0A1628 55%, #071219 100%);
}

/* Animated color layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at -5% 10%, rgba(34,211,238,0.38) 0%, transparent 50%),
    radial-gradient(ellipse 65% 55% at 105% 90%, rgba(249,115,22,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 55% 60% at 50% 110%, rgba(139,92,246,0.22) 0%, transparent 50%);
  animation: hero-breathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* Fade to white at the very bottom so it flows into the next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.08) 60%, rgba(255,255,255,0.0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 800px; height: 800px;
  background: rgba(34,211,238,0.28);
  top: -300px; left: -250px;
}
.hero-glow-2 {
  width: 650px; height: 650px;
  background: rgba(249,115,22,0.22);
  bottom: -120px; right: -250px;
}

/* Floating sport badges */
.sport-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.badge-emoji { font-size: 17px; }
.badge-badminton  {
  top: 18%; left: 5%; animation-delay: 0s;
  background: rgba(34,211,238,0.12);
  border: 1.5px solid rgba(34,211,238,0.45);
  color: #67E8F9;
  box-shadow: 0 0 20px rgba(34,211,238,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.badge-basketball {
  top: 25%; right: 5%; animation-delay: 1s;
  background: rgba(249,115,22,0.12);
  border: 1.5px solid rgba(249,115,22,0.45);
  color: #FDBA74;
  box-shadow: 0 0 20px rgba(249,115,22,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.badge-tennis {
  bottom: 28%; left: 7%; animation-delay: 2s;
  background: rgba(16,185,129,0.12);
  border: 1.5px solid rgba(16,185,129,0.45);
  color: #6EE7B7;
  box-shadow: 0 0 20px rgba(16,185,129,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.badge-pickleball {
  bottom: 22%; right: 7%; animation-delay: 1.5s;
  background: rgba(139,92,246,0.12);
  border: 1.5px solid rgba(139,92,246,0.45);
  color: #C4B5FD;
  box-shadow: 0 0 20px rgba(139,92,246,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 60px;
  max-width: 800px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-gradient-text {
  background: linear-gradient(135deg, #22D3EE 0%, #38BDF8 35%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(34,211,238,0.3));
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 13.5px;
  font-weight: 500;
}

/* Find courts strip */
.find-courts-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  margin-top: 20px;
}
.find-courts-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}
.find-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.find-icon {
  width: 40px; height: 40px;
  background: rgba(34,211,238,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.find-left strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.find-left span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===================================================
   FEATURES
   =================================================== */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-header .section-title { flex: 1; min-width: 260px; }

/* Bento grid */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.bento-card p {
  font-size: 14px;
  line-height: 1.6;
}

.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Color variants */
.bento-navy {
  background: var(--bg-2);
  border-color: rgba(34,211,238,0.18);
}
.bento-navy h3 { color: var(--text); }
.bento-navy p  { color: var(--text-2); }
.bento-navy .bento-icon { background: rgba(34,211,238,0.1); }

.bento-cyan   { background: linear-gradient(135deg, #06B6D4, #0284C7); }
.bento-orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.bento-green  { background: linear-gradient(135deg, #10B981, #059669); }
.bento-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.bento-slate {
  background: #F8FAFC;
  border-color: var(--border);
}
.bento-slate h3 { color: var(--text); }
.bento-slate p  { color: var(--text-2); }
.bento-slate .bento-icon { background: rgba(100,116,139,0.1); }

/* White text for vivid colored cards */
.bento-cyan h3,
.bento-orange h3,
.bento-green h3,
.bento-purple h3 { color: white; }

.bento-cyan p,
.bento-orange p,
.bento-green p,
.bento-purple p { color: rgba(255,255,255,0.85); }

/* Sizes */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-wide {
  grid-column: span 2;
}

/* Mini calendar inside large card */
.bento-visual {
  margin-top: auto;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.mini-calendar {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 12px;
  padding: 14px;
  width: 100%;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.cal-header {
  color: var(--cyan-d);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 12px;
}
.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
  text-align: center;
}
.cal-labels span { color: var(--text-3); font-weight: 600; font-size: 10px; }
.cal-row span {
  color: var(--text-2);
  padding: 4px 0;
  border-radius: 5px;
  font-size: 11px;
}
.cal-booked {
  background: rgba(249,115,22,0.18);
  color: #EA580C !important;
}
.cal-selected {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 700;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing {
  padding: 100px 0;
  text-align: center;
  background: #F0FDF4;
}
.pricing .section-eyebrow { display: flex; justify-content: center; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 60px auto 0;
  text-align: left;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.pricing-featured {
  background: white;
  border-color: rgba(34,211,238,0.45);
  position: relative;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.2), 0 20px 60px rgba(34,211,238,0.08);
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-top { display: flex; flex-direction: column; gap: 10px; }
.plan-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.plan-tagline {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 8px;
}
.price-sign {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.price-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-mo {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.price-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: #FFFBF7;
}
.faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 90px; }
.faq-contact-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--cyan-d);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.faq-contact-link:hover { opacity: .75; }

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}
.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-2);
  transition: background .2s;
}
.faq-item.active .faq-toggle {
  background: rgba(34,211,238,0.12);
  color: var(--cyan-d);
  border-color: rgba(34,211,238,0.3);
}
.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}
.faq-toggle svg { transition: transform .3s; }
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-item.active .faq-a { display: block; }
.faq-a p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===================================================
   INSIGHTS / BLOG
   =================================================== */
.insights {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}
.insights-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
}
.view-all {
  color: var(--cyan-d);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s;
  margin-bottom: 4px;
}
.view-all:hover { opacity: .75; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(135deg, #06B6D4, #38BDF8); }
.blog-thumb-2 { background: linear-gradient(135deg, #F97316, #FBBF24); }
.blog-thumb-3 { background: linear-gradient(135deg, #10B981, #34D399); }

/* Court line decoration inside blog thumb */
.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.12) 30px,
      rgba(255,255,255,0.12) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.12) 30px,
      rgba(255,255,255,0.12) 31px
    );
}

.blog-tag-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.2);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.blog-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-meta {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.blog-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.blog-info p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.read-more {
  color: var(--cyan-d);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity .2s;
}
.read-more:hover { opacity: .75; }

/* ===================================================
   OPERATORS
   =================================================== */
.operators {
  padding: 100px 0;
  background: #0B1528;
  border-top: none;
  border-bottom: none;
}

.operators-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.operators-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #F1F5F9;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.operators-title span { color: var(--cyan); }
.operators-desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 12px;
}

.ops-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.ops-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
}
.ops-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.ops-label {
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
}

/* Sport tiles */
.sport-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sport-tile {
  border-radius: 18px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: transform .2s;
}
.sport-tile:hover { transform: translateY(-3px); }
.tile-emoji { font-size: 36px; }
.tile-name { font-size: 14px; font-weight: 700; color: white; }

.tile-a { background: linear-gradient(135deg, #06B6D4, #38BDF8); }
.tile-b { background: linear-gradient(135deg, #10B981, #34D399); }
.tile-c { background: linear-gradient(135deg, #F97316, #FB923C); }
.tile-d { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 35%, #6366F1 70%, #8B5CF6 100%);
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.cta-headline {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #F1F5F9;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
}
.footer-cols {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text-2); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .features-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-large { grid-column: span 2; }
  .bento-wide  { grid-column: span 2; }

  .pricing-cards { grid-template-columns: 1fr; max-width: 460px; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }

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

  .operators-grid { grid-template-columns: 1fr; gap: 48px; }

  .badge-badminton,
  .badge-basketball,
  .badge-tennis,
  .badge-pickleball { display: none; }
}

@media (max-width: 600px) {
  .features-bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .sport-tiles { grid-template-columns: 1fr 1fr; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .footer-grid { flex-direction: column; }
  .ops-stats { grid-template-columns: 1fr 1fr; }
  .find-courts-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
