/* ============================================
   TARGET IN MIND — Shared Styles
   Brand Green: #00635c | Brand Gold: #c0b661
   ============================================ */

:root {
  --green: #00635c;
  --green-light: rgba(0, 99, 91, 0.08);
  --gold: #c0b661;
  --gold-light: rgba(192, 181, 97, 0.85);
  --gold-soft: rgba(192, 181, 97, 0.12);
  --gold-glow: rgba(192, 181, 97, 0.25);
  --cream: #F7F5F0;
  --warm-white: #FAFAF7;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #6d6d6d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
}

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: var(--green);
  border-bottom: 2px solid var(--gold);
}

nav.scrolled {
  background: rgba(0, 99, 91, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  box-shadow: none;
}

.nav-logo-svg {
  height: 130px;
  width: auto;
  transition: height 0.3s ease;
}

nav.scrolled .nav-logo-svg { height: 55px; }

nav.scrolled .nav-links a {
  font-size: 0.85rem;
}

nav.scrolled .nav-cta {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.85rem !important;
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  list-style: none;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(1.05rem, 1.15vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.4px;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.nav-links .active {
  color: white;
}

.nav-links .active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--green);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--green);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
}

/* ==================== SHARED SECTION STYLES ==================== */
section {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) 5%;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(1.8rem, 3vw, 3rem);
}

.section-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  color: var(--green);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-light);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  font-weight: 400;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--green);
  padding: clamp(0.8rem, 1vw, 1rem) clamp(1.4rem, 2vw, 2rem);
  border: none;
  border-radius: 4px;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 181, 97, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 1rem 0.5rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline:hover { color: white; }
.btn-outline svg { transition: transform 0.3s; }
.btn-outline:hover svg { transform: translateX(3px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.3s;
}

.btn-text:hover { gap: 0.7rem; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.3s;
}

.btn-outline-dark:hover { gap: 0.8rem; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-crosshair {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-crosshair::before, .hero-crosshair::after { content: ''; position: absolute; }
.hero-crosshair::before { top: 50%; left: 10%; right: 10%; height: 1px; background: white; }
.hero-crosshair::after { left: 50%; top: 10%; bottom: 10%; width: 1px; background: white; }
.crosshair-ring { position: absolute; inset: 0; border: 1px solid white; border-radius: 50%; }
.crosshair-ring-inner { position: absolute; inset: 25%; border: 1px solid white; border-radius: 50%; }

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 5%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text { animation: fadeUp 0.9s ease 0.15s both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--gold-glow);
  background: rgba(192, 181, 97, 0.08);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  font-size: clamp(0.62rem, 0.8vw, 0.72rem);
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: white;
  line-height: 1.13;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  min-height: 2.6em;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: 500px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero panel */
.hero-visual { animation: fadeUp 0.9s ease 0.45s both; }

.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  position: relative;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panel-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.panel-live {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.panel-live-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 1.2vw, 1.2rem);
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: clamp(0.8rem, 1.3vw, 1.3rem) clamp(0.6rem, 1vw, 1rem);
  text-align: center;
  transition: all 0.3s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(192, 181, 97, 0.15);
}

.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: clamp(0.62rem, 0.75vw, 0.73rem);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
  font-weight: 400;
}

.hero-floating {
  position: absolute;
  bottom: -18px;
  right: -12px;
  background: var(--green);
  border: 1px solid rgba(192, 181, 97, 0.3);
  color: white;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 12px 35px rgba(0, 99, 91, 0.5);
  animation: float 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.hero-floating-icon { color: var(--gold); font-size: 1rem; }

/* ==================== TYPEWRITER ==================== */
.typewriter-text {
  color: var(--gold);
  font-style: italic;
}

.typewriter-text::after {
  content: "performance";
  visibility: hidden;
  display: inline-block;
  width: 0;
  overflow: hidden;
  height: 0;
}

.hero h1 .typewriter-wrap {
  display: inline-block;
  min-width: 6.5em;
  text-align: left;
}

.typewriter-cursor {
  color: var(--gold);
  font-weight: 400;
  animation: blink 0.7s infinite;
  margin-left: 0.15em;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==================== CREDENTIALS ==================== */
.credentials {
  padding: clamp(1.5rem, 2.5vw, 2.5rem) 5%;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.credentials-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  color: var(--text-light);
  font-weight: 400;
  white-space: nowrap;
}

.credential-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==================== ANIMATED COUNTERS ==================== */
.stats-section {
  background: var(--green);
  padding: clamp(3rem, 4vw, 4rem) 5%;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-counter { text-align: center; }

.stat-counter-number {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: white;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.stat-counter-number .counter-suffix {
  font-size: 0.7em;
  color: var(--gold);
}

.stat-counter-label {
  font-size: clamp(0.75rem, 0.9vw, 0.88rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ==================== ABOUT PREVIEW ==================== */
.about-preview { background: var(--warm-white); }

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-image-area { position: relative; }

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.about-image-text {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}

.about-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  opacity: 0.3;
}

.about-text h2 { text-align: left; }
.about-text .section-tag { display: flex; justify-content: flex-start; }

.about-body {
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-mid);
  font-weight: 400;
}

.about-highlight-icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ==================== SERVICES ==================== */
.services { background: var(--cream); }

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
}

.service-card {
  background: white;
  padding: clamp(1.5rem, 2.3vw, 2.3rem) clamp(1.2rem, 1.8vw, 1.8rem);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 99, 91, 0.1);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-light), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.25rem;
}

.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 1.25vw, 1.25rem);
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  font-weight: 400;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.3rem 0.8rem;
  background: var(--green-light);
  border-radius: 4px;
}

/* ==================== YOUTUBE EMBED ==================== */
.video-section { background: var(--cream); }

.video-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  background: var(--green);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-text h2 { text-align: left; }
.video-text .section-tag { display: flex; justify-content: flex-start; }

.video-text p {
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  display: none;
}

.testimonials .section-tag { color: var(--gold); }
.testimonials .section-tag::before { background: var(--gold); }
.testimonials h2 { color: white; }
.testimonials .section-desc { color: rgba(255, 255, 255, 0.5); }

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
  position: relative;
  z-index: 2;
}

.test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: clamp(1.5rem, 2.2vw, 2.2rem);
  transition: all 0.35s;
}

.test-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(192, 181, 97, 0.2);
}

.test-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.1rem;
}

.test-quote {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.75;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.test-name { color: white; font-weight: 500; font-size: 0.9rem; }
.test-role { color: rgba(255, 255, 255, 0.38); font-size: 0.78rem; margin-top: 0.1rem; }

/* ==================== PROCESS ==================== */
.process { background: var(--warm-white); }

.process-track { max-width: 850px; margin: 0 auto; }

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1.5rem, 2.2vw, 2.2rem) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1;
  font-weight: 400;
  color: rgba(0, 99, 91, 0.15);
}

.step-body h3 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: var(--green);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.step-body p {
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-section { background: var(--warm-white); }

.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(0, 99, 91, 0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: var(--green);
  transition: color 0.3s;
  gap: 1rem;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 1.4rem 0;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 400;
}


/* ==================== PROGRAMME BUILDER ==================== */
.builder-step {
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s ease both;
}

.builder-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 99, 91, 0.15);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.builder-step-num.completed {
  background: var(--green);
  color: white;
}

.builder-step-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.builder-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.builder-option {
  flex: 1;
  min-width: 160px;
  background: white;
  border: 2px solid rgba(0, 99, 91, 0.1);
  border-radius: 12px;
  padding: 1.3rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Raleway', sans-serif;
}

.builder-option:hover {
  border-color: rgba(192, 181, 97, 0.4);
}

.builder-option.selected {
  border-color: var(--gold);
  background: rgba(192, 181, 97, 0.06);
}

.builder-option-icon {
  font-size: 1.4rem;
  margin-bottom: 0.15rem;
}

.builder-option-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
}

.builder-option-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.builder-skip {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.builder-skip:hover {
  color: var(--green);
}

/* Location layout */
.builder-location-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

.uk-zone-map {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.builder-county-select {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.builder-county-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}

.county-search-wrap {
  position: relative;
}

.county-search-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(0, 99, 91, 0.15);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s;
}

.county-search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.county-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid rgba(0, 99, 91, 0.15);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 50;
}

.county-dropdown.open {
  display: block;
}

.county-dropdown-item {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.county-dropdown-item:hover {
  background: rgba(192, 181, 97, 0.08);
}

.county-zone-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.zone-local { background: rgba(0,99,91,0.12); color: var(--green); }
.zone-regional { background: rgba(192,181,97,0.15); color: #8a7e3d; }
.zone-national { background: rgba(0,99,91,0.06); color: var(--text-light); }

.county-result {
  margin-top: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  display: none;
}

.county-result.show {
  display: block;
}

.county-result-local {
  background: rgba(0,99,91,0.08);
  border: 1px solid rgba(0,99,91,0.15);
  color: var(--green);
}

.county-result-regional {
  background: rgba(192,181,97,0.1);
  border: 1px solid rgba(192,181,97,0.2);
  color: #6d6220;
}

.county-result-national {
  background: rgba(0,99,91,0.05);
  border: 1px solid rgba(0,99,91,0.1);
  color: var(--text-mid);
}

/* Summary panel */
.builder-summary {
  background: var(--green);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  margin-top: 1rem;
  animation: fadeUp 0.5s ease both;
}

.builder-summary-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.builder-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.builder-summary-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.builder-summary-item span:first-child {
  color: var(--gold);
}

.builder-summary-price-area {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.builder-summary-price {
  font-size: 2.2rem;
  color: white;
  font-weight: 700;
}

.builder-summary-price-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.builder-summary-duration {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

@media (max-width: 700px) {
  .builder-location-layout {
    grid-template-columns: 1fr;
  }
  .uk-zone-map {
    max-width: 180px;
    margin: 0 auto;
  }
  .builder-option {
    min-width: 130px;
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section { background: var(--cream); padding: clamp(3rem, 5vw, 5rem) 5%; }

.cta-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--green);
  border-radius: 18px;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.cta-card h2 { color: white; margin-bottom: 0.8rem; position: relative; }

.cta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 400;
  position: relative;
  max-width: 500px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.cta-card .btn-primary { position: relative; font-size: 1rem; padding: 1.1rem 2.5rem; font-weight: 700; }

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.2rem;
  margin-bottom: 0;
  position: relative;
  font-weight: 400;
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--green);
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(0, 99, 91, 0.3);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  font-family: 'Raleway', sans-serif;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 99, 91, 0.4);
}

.sticky-cta-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ==================== PAGE HERO (for inner pages) ==================== */
.page-hero {
  background: var(--green);
  padding: clamp(10rem, 14vw, 12rem) 5% clamp(3.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--gold); }

.calendly-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  min-height: 600px;
  background: white;
}

.calendly-wrapper iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/* ==================== FOOTER ==================== */
footer { background: var(--green); padding: 3rem 5% 2rem; }

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-svg { height: 90px; width: auto; margin-bottom: 1.5rem; display: block; }

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 280px;
}

.footer-col-title {
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
  font-weight: 400;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.footer-social { display: flex; gap: 0.8rem; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(192, 181, 97, 0.15);
  border-color: rgba(192, 181, 97, 0.3);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.3s;
}

.footer-social a:hover svg { fill: var(--gold); }


/* ==================== CLAY TARGET SCROLL GUIDE ==================== */
.scroll-guide {
  position: fixed;
  left: 2.5%;
  top: 0;
  height: 100vh;
  width: 40px;
  z-index: 800;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-guide-track {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(192, 181, 97, 0.2) 20%, rgba(192, 181, 97, 0.2) 80%, transparent);
}

.scroll-guide-progress {
  position: absolute;
  top: 15%;
  width: 1px;
  height: 0%;
  background: var(--gold);
  transition: height 0.05s linear;
  max-height: 70%;
}

.clay-target {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.08s linear;
  opacity: 0;
}

.clay-target.visible {
  opacity: 1;
}

.clay-target svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(0, 99, 91, 0.2));
}

.scroll-hint {
  position: absolute;
  bottom: 8%;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(192, 181, 97, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  transition: opacity 0.4s;
}

.scroll-hint.hidden {
  opacity: 0;
}

/* ==================== WORKED WITH LOGOS ==================== */
.worked-with {
  background: var(--cream);
  padding: clamp(2.5rem, 4vw, 3.5rem) 5%;
}

.worked-with-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.worked-with-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.worked-with-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  text-decoration: none;
}

.worked-with-item:hover {
  opacity: 1;
}

.worked-with-logo {
  width: clamp(80px, 10vw, 120px);
  height: clamp(50px, 7vw, 70px);
  border-radius: 8px;
  background: rgba(0, 99, 91, 0.06);
  border: 1px solid rgba(0, 99, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  transition: border-color 0.3s, background-color 0.3s;
}

.worked-with-item:hover .worked-with-logo {
  border-color: rgba(192, 181, 97, 0.3);
  background: rgba(0, 99, 91, 0.04);
}

.worked-with-logo .logo-placeholder {
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
  font-weight: 400;
}

.worked-with-name {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.65s ease;
}

.reveal-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 0.8fr; }
  .about-grid { grid-template-columns: 0.4fr 0.6fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-visual, .hero-crosshair { display: none; }
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 0; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-area { max-width: 320px; }
  .about-text h2 { text-align: center; }
  .about-text .section-tag { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .video-container { grid-template-columns: 1fr; }
  .video-text h2 { text-align: center; }
  .video-text .section-tag { justify-content: center; }
  .video-text { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 1rem; right: 1rem; padding: 0.75rem 1.2rem; font-size: 0.82rem; }
  .cta-card { padding: 2.5rem 2rem; }
  .cta-card .btn-primary { display: inline-flex; width: auto; max-width: 85%; }
}

@media (max-width: 650px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .credentials-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary { justify-content: center; }
  .hero-actions .btn-outline { justify-content: center; }
  .process-step { grid-template-columns: 45px 1fr; gap: 1rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .credential-item { font-size: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .sticky-cta span.sticky-cta-label { display: none; }
  .sticky-cta { padding: 0.8rem; border-radius: 50%; }
  .cta-card { padding: 2rem 1.5rem; }
  .cta-card p { margin-bottom: 1.5rem; }
  .cta-card .btn-primary { white-space: normal; padding: 1rem 2rem; }
  .cta-note { margin-top: 0.8rem; margin-bottom: 0; }
}


/* Additional responsive */
@media (max-width: 900px) {
  .scroll-guide { display: none; }
  .worked-with-grid { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .worked-with-item { flex: 0 0 calc(50% - 1rem); }
}

/* Services page mobile fixes */
@media (max-width: 900px) {
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  [style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 1.2rem"] {
    grid-template-columns: 1fr !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 480px) {
  .builder-options {
    flex-direction: column !important;
  }
  .builder-option {
    min-width: 100% !important;
  }
}

/* Google Places autocomplete mobile fixes */
.pac-container {
  z-index: 9999 !important;
  font-family: 'Raleway', sans-serif !important;
  border-radius: 0 0 8px 8px !important;
  border: 2px solid rgba(0, 99, 91, 0.15) !important;
  border-top: none !important;
  box-shadow: none !important;
  font-size: 14px !important;
}

.pac-item {
  padding: 10px 12px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
}

.pac-item:hover {
  background: rgba(192, 181, 97, 0.08) !important;
}

.pac-item-query {
  font-size: 14px !important;
  color: var(--green) !important;
}

@media (max-width: 768px) {
  .pac-container {
    width: calc(100vw - 10%) !important;
    left: 5% !important;
    max-width: none !important;
  }
  .pac-item {
    padding: 14px 12px !important;
    font-size: 15px !important;
  }
}

/* Mobile nav fixes */
@media (max-width: 900px) {
  nav {
    overflow: hidden;
  }
  .nav-logo-svg {
    height: 100px !important;
    max-width: 60vw;
  }
  nav.scrolled .nav-logo-svg {
    height: 50px !important;
  }
}

@media (max-width: 480px) {
  .nav-logo-svg {
    height: 80px !important;
    max-width: 55vw;
  }
}

/* Hero tag mobile fix */
@media (max-width: 768px) {
  .hero-tag {
    font-size: 0.65rem !important;
    padding: 0.4rem 1rem !important;
  }
}
