/* ============================================================
   MATICO FOOTBALL — Shared Stylesheet
   Extracted from Body Coach index.html + extended for multi-page
   ============================================================ */

:root {
  --blue: #0a2fff;
  --dark-blue: #0825cc;
  --navy: #2f4b73;
  --light-bg: #f5f0ea;
  --yellow: #c8e635;
  --green: #2dd881;
  --orange: #ff6b35;
  --pink: #ff8fab;
  --salmon: #ffb5a7;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --border-light: rgba(47, 75, 115, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition-fast: 0.2s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

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

/* ==================== TOP STRIP ==================== */
.top-strip {
  background: var(--navy);
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: var(--white);
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-strip a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
  font-weight: 500;
}
.top-strip a:hover { opacity: 1; }
.top-strip-left { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-strip-divider { opacity: 0.35; }

/* ==================== NAVBAR ==================== */
.navbar {
  background: var(--blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.45rem;
  color: var(--blue);
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link:hover { opacity: 0.8; }

/* Nav active indicator */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
body[data-page="home"] .nav-link[data-nav="home"]::after,
body[data-page="football-camps"] .nav-link[data-nav="football-camps"]::after,
body[data-page="residential-camps"] .nav-link[data-nav="football-camps"]::after,
body[data-page="holiday-fun-days"] .nav-link[data-nav="football-camps"]::after,
body[data-page="athletes-club"] .nav-link[data-nav="athletes-club"]::after,
body[data-page="what-we-do"] .nav-link[data-nav="what-we-do"]::after,
body[data-page="about"] .nav-link[data-nav="about"]::after,
body[data-page="faqs"] .nav-link[data-nav="faqs"]::after,
body[data-page="journal"] .nav-link[data-nav="journal"]::after,
body[data-page="enquire"] .nav-link[data-nav="enquire"]::after {
  transform: scaleX(1);
}

/* Nav dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
  list-style: none;
  z-index: 101;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.nav-dropdown li a:hover {
  background: var(--light-bg);
  opacity: 1;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  display: block;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: all var(--transition-fast);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all var(--transition-fast);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
  background: var(--yellow);
  padding: 0.6rem 0;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-banner p { font-weight: 700; font-size: 0.9rem; }
.promo-banner span { font-weight: 400; font-size: 0.8rem; display: block; }
.signup-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==================== HERO ==================== */
.hero {
  background: var(--blue);
  padding: 6rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(100,140,180,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 40%, rgba(160,140,120,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(80,100,140,0.15) 0%, transparent 50%);
  opacity: 0.8;
}
.hero h1 {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.hero p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.hero .btn { position: relative; z-index: 2; }
.hero-deco { position: absolute; z-index: 1; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Interior page hero (shorter) */
.hero.hero-interior {
  padding: 4rem 0 5rem;
}
.hero.hero-interior h1 {
  font-size: 3rem;
  max-width: 700px;
}
.hero.hero-interior p {
  font-size: 1.05rem;
}

/* ==================== SECTION WAVES ==================== */
.section-wave {
  display: block;
  width: 100%;
  line-height: 0;
}
.section-wave svg { display: block; width: 100%; }

/* ==================== WELCOME / INTRO ==================== */
.welcome {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--light-bg);
}
.welcome h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--navy);
}
.welcome-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 2px solid #ddd;
}
.welcome-tabs button {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.welcome-tabs button.active {
  border-bottom-color: var(--blue);
  color: var(--blue);
}

/* ==================== FEATURE SECTIONS ==================== */
.feature-section {
  padding: 5rem 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.feature-section.white-bg { background: var(--white); }
.feature-section.blue-bg {
  background: var(--blue);
  color: var(--white);
}
.feature-section.blue-bg h3,
.feature-section.blue-bg p { color: var(--white); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-grid.reverse .feature-text { order: 2; }
.feature-grid.reverse .feature-image { order: 1; }
.feature-text h3 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.feature-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}
.feature-text .btn { margin-top: 1.5rem; }
.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image placeholder (for feature sections without phone mockups) */
.image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #d4bfa8 0%, #c4a882 50%, #a88a6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: rgba(0,0,0,0.15);
  font-size: 3rem;
}
.image-placeholder.blue-tint {
  background: linear-gradient(135deg, #a8b8d8 0%, #8098c0 50%, #6078a0 100%);
}
.image-placeholder.green-tint {
  background: linear-gradient(135deg, #a8d8b8 0%, #80c098 50%, #60a078 100%);
}
.image-placeholder.orange-tint {
  background: linear-gradient(135deg, #f0c8a0 0%, #d4956b 50%, #b87040 100%);
}

/* Phone mockups (kept from original) */
.phone-mockup {
  width: 270px;
  height: 480px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}
.phone-screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}
.phone-screen-content.app-schedule {
  background: linear-gradient(180deg, #1a3a8f 0%, #0a2fff 100%);
  justify-content: flex-start;
  padding-top: 2.5rem;
}
.phone-screen-content.app-workout { background: linear-gradient(180deg, #ff6b35 0%, #ff8f5e 100%); }
.phone-screen-content.app-recipe { background: linear-gradient(180deg, #2dd881 0%, #1ab864 100%); }
.phone-screen-content.app-challenge { background: linear-gradient(180deg, #ff8fab 0%, #ff6b8a 100%); }
.phone-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-bottom: 0.25rem; }
.phone-title { font-size: 1.1rem; font-weight: 800; }
.day-label { font-size: 0.85rem; font-weight: 700; background: rgba(255,255,255,0.15); border-radius: 12px; padding: 0.75rem 1rem; margin-bottom: 0.5rem; }
.schedule-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.schedule-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* Overlapping image pair */
.image-pair { position: relative; width: 340px; height: 320px; }
.image-pair .img-rect { width: 220px; height: 260px; border-radius: 18px; position: absolute; top: 0; left: 0; overflow: hidden; box-shadow: var(--shadow-md); }
.image-pair .img-circle { width: 170px; height: 170px; border-radius: 50%; position: absolute; bottom: 10px; right: 10px; overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid var(--light-bg); }

/* ==================== CARD GRIDS ==================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}
.card:hover { transform: translateY(-4px); }
.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}
.card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Trust badge grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==================== COACH / CHALLENGE SECTION ==================== */
.challenge-section {
  background: var(--blue);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.challenge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.coach-image {
  width: 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #d4bfa8 0%, #c4a882 50%, #a88a6a 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.coach-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 320px;
  background: linear-gradient(180deg, rgba(180,160,130,0) 0%, rgba(120,100,80,0.4) 100%);
  border-radius: 90px 90px 0 0;
}

/* ==================== PLUS MORE / CENTERED TEXT ==================== */
.centered-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.centered-section.beige-bg { background: var(--light-bg); }
.centered-section.white-bg { background: var(--white); }
.centered-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.centered-section p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
}
.centered-section .btn { margin-top: 2rem; }

/* ==================== PRICING ==================== */
.pricing-section {
  background: var(--white);
  padding: 5rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pricing-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.pricing-features { list-style: none; }
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-features li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card {
  border: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: transform var(--transition-fast);
}
.price-card:hover { transform: translateY(-2px); }
.price-card.featured { background: var(--blue); color: var(--white); }
.price-card .plan-name { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.price-card .price { font-size: 2rem; font-weight: 900; margin: 0.25rem 0; }
.price-card .price-period { font-size: 0.85rem; opacity: 0.8; }
.store-buttons { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }
.store-btn {
  background: #000;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terms-link { text-align: center; margin-top: 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.terms-link a { text-decoration: underline; }

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--light-bg);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-size: 5rem;
  color: var(--blue);
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 1rem;
  opacity: 0.25;
}
.testimonial-card blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card cite { font-style: normal; font-weight: 700; font-size: 1rem; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.testimonial-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.testimonial-nav button:hover { background: var(--blue); color: var(--white); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--navy); opacity: 0.2; }
.testimonial-dots span.active { opacity: 1; background: var(--blue); }

/* ==================== BLOG / JOURNAL ==================== */
.blog-section {
  background: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.blog-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  text-align: left;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image { width: 100%; height: 200px; }
.blog-card-image.img-1 { background: linear-gradient(145deg, #f0c8a0 0%, #d4956b 60%, #b87040 100%); }
.blog-card-image.img-2 { background: linear-gradient(145deg, #a8d8ea 0%, #72b5d4 60%, #4a90b0 100%); }
.blog-card-image.img-3 { background: linear-gradient(145deg, #c8e6c9 0%, #81c784 60%, #5a9e5c 100%); }
.blog-card-image.img-4 { background: linear-gradient(145deg, #d4c4f0 0%, #a890d4 60%, #8070b8 100%); }
.blog-card-image.img-5 { background: linear-gradient(145deg, #f0d4a8 0%, #d4b070 60%, #b89040 100%); }
.blog-card-image.img-6 { background: linear-gradient(145deg, #a8e8d8 0%, #70c4b0 60%, #50a090 100%); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); font-weight: 700; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-desc { font-size: 0.9rem; opacity: 0.7; line-height: 1.5; }

/* ==================== NEWSLETTER / CTA BANNER ==================== */
.cta-banner {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ==================== ACCORDION (FAQs) ==================== */
.faq-section {
  background: var(--light-bg);
  padding: 4rem 0 5rem;
}
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.faq-tabs button {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.faq-tabs button.active,
.faq-tabs button:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 0 1.25rem;
}
.accordion-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ==================== CONTACT FORM ==================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.contact-details-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-details-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  background: var(--light-bg);
}
.legal-content .last-updated {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}
.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content .btn { margin-top: 2rem; }
.legal-content > .btn { display: inline-block; }
.legal-content { text-align: left; }
.legal-content > .btn:last-child { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; }

/* ==================== DECORATIVE BLOBS ==================== */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ==================== DOODLE ICONS ==================== */
.doodle-svg { margin-bottom: 1rem; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--light-bg);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.4rem;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--navy);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.footer-col ul li a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity var(--transition-fast);
}
.footer-social a:hover { opacity: 0.8; }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.6;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { opacity: 0.8; }

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero.hero-interior h1 { font-size: 2rem; }

  .feature-grid,
  .pricing-grid,
  .blog-grid { grid-template-columns: 1fr; gap: 2rem; }

  .feature-grid.reverse .feature-text { order: 1; }
  .feature-grid.reverse .feature-image { order: 2; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { display: block; padding: 0.75rem 0; }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 0 1rem;
    background: transparent;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown li a { color: var(--white); opacity: 0.8; padding: 0.5rem 0; }
  .has-dropdown .nav-dropdown { display: none; }
  .has-dropdown.open .nav-dropdown { display: block; }

  .challenge-content { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.cols-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .image-pair { width: 300px; height: 300px; }
  .image-pair .img-rect { width: 200px; height: 240px; }
  .image-pair .img-circle { width: 160px; height: 160px; }
  .top-strip { display: none; }
  .faq-tabs { gap: 0.5rem; }

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

@media (max-width: 480px) {
  .hero { padding: 4rem 0 5rem; }
  .hero h1 { font-size: 2rem; }
  .welcome h2, .centered-section h2, .cta-banner h2, .testimonials h2, .blog-section h2 { font-size: 1.8rem; }
  .feature-text h3 { font-size: 1.75rem; }
  .pricing-title { font-size: 1.8rem; }
  .welcome-tabs { gap: 0.75rem; }
  .welcome-tabs button { font-size: 0.75rem; padding: 0.5rem 0.5rem; }
}
