/* ============================================
   CSS VARIABLES — Edit brand colours here
============================================ */
:root {
  --blue:        #4A90D9;
  --blue-light:  #6BAEE8;
  --teal:        #4ECDC4;
  --teal-light:  #7EDDD7;
  --black:       #0A0A0A;
  --grey-dark:   #3A3A3A;
  --grey-mid:    #6B6B6B;
  --grey-light:  #F5F5F7;
  --white:       #FFFFFF;
  --star:        #F5A623;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --shadow:      0 2px 24px rgba(0,0,0,0.07);
  --shadow-hover:0 8px 40px rgba(74,144,217,0.15);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,144,217,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; position: relative; z-index: 1; }
.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ============================================
   NAVIGATION
============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo span { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--grey-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }

/* ============================================
   SECTION LABELS & TITLES
============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--grey-mid);
  line-height: 1.65;
  max-width: 580px;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.58s; }

/* ============================================
   HERO
============================================ */
.hero { padding: 80px 0 60px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-mid);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.stars-row { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.stars { display: flex; gap: 3px; }
.star { color: var(--star); font-size: 18px; }
.stars-label { font-size: 14px; color: var(--grey-mid); font-weight: 500; }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}
.hero h1 em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.hero-sub {
  font-size: 18px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 10px; margin-top: 40px; }
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  margin-left: -8px;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--grey-mid); }
.proof-text strong { color: var(--black); font-weight: 600; }

.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-photo-frame {
  position: relative;
  width: 420px; height: 520px;
  border-radius: 240px 240px 180px 180px;
  overflow: hidden;
  background: var(--grey-light);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-blob {
  position: absolute; top: -30px; right: -20px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blue-light) 100%);
  opacity: 0.18; z-index: -1;
}
.hero-blob-2 {
  position: absolute; bottom: 20px; left: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  opacity: 0.12; z-index: -1;
}
.hero-float-badge {
  position: absolute; bottom: 40px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.hero-float-badge strong {
  display: block; font-size: 22px; font-weight: 700;
  color: var(--blue); line-height: 1;
}

/* ============================================
   WHO I HELP
============================================ */
#who { padding: 100px 0; background: var(--grey-light); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.who-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.who-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.who-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.who-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.who-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }

/* ============================================
   SERVICES
============================================ */
#services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); background: var(--white); }
.service-number { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 0.05em; margin-bottom: 12px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--grey-mid); line-height: 1.7; }

/* ============================================
   APPROACH
============================================ */
#approach { padding: 100px 0; background: var(--grey-light); }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.approach-step { display: flex; gap: 20px; align-items: flex-start; }
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }
.approach-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  height: 500px;
  background: #ddd;
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ============================================
   ABOUT
============================================ */
#about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-left { position: sticky; top: 100px; }
.about-photo {
  width: 100%;  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden; background: #ddd;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-story { font-size: 16px; color: var(--grey-dark); line-height: 1.8; margin-bottom: 32px; }
.about-story p { margin-bottom: 18px; }
.quals-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.qual-pill {
  background: var(--grey-light);
  border: 1px solid rgba(74,144,217,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--blue);
}
.standards {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.standards p { font-size: 13px; color: var(--grey-mid); line-height: 1.6; }
.standards strong { color: var(--black); font-weight: 600; }

/* ============================================
   BOOKING
============================================ */
#booking { padding: 100px 0; background: var(--grey-light); }
.booking-header { text-align: center; margin-bottom: 56px; }
.booking-header .section-label { justify-content: center; }
.booking-header .section-subtitle { margin: 0 auto; }
.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ============================================
   TESTIMONIALS
============================================ */
#testimonials { padding: 100px 0; }
.testimonials-header { margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); background: var(--white); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--black); }
.testimonial-role { font-size: 12px; color: var(--grey-mid); }
.testimonial-quote { font-size: 15px; color: var(--grey-dark); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars .star { font-size: 15px; }

/* ============================================
   CONTACT
============================================ */
#contact { padding: 100px 0; background: var(--grey-light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--black);
}
.contact-link:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.contact-link-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-link span { color: var(--grey-mid); font-size: 12px; display: block; }

/* ============================================
   PRIVACY NOTICE
============================================ */
#privacy { padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.privacy-box {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.privacy-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.privacy-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.privacy-box li {
  font-size: 14px; color: var(--grey-dark); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.privacy-box li::before { content: '–'; position: absolute; left: 0; color: var(--blue); }
.privacy-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--blue); font-weight: 500;
  text-decoration: underline;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-card::after {
  content: ''; position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-card p {
  font-size: 17px; opacity: 0.85;
  margin-bottom: 36px; position: relative; z-index: 1;
}

/* ============================================
   FOOTER
============================================ */

footer {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-col { flex: 0 0 auto; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-brand {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
}
.footer-logo span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
/* footer { background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%); color: var(--white); padding: 48px 0; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 48px; height: 48px; background: white; border-radius: 50%; padding: 4px;object-fit: contain; opacity: 1; }
.footer-logo span { font-size: 15px; font-weight: 600; opacity: 0.85; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.9); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { width: 100%; display: flex; justify-content: right; gap: 28px;}
.footer-social a { font-size: 13px; color: rgba(255,255,255,0.9); transition: color 0.2s; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); width: 100%; text-align: center; margin-top: 8px; } */

/* ============================================
   NEWSLETTER / LEAD MAGNET
============================================ */
#newsletter { padding: 100px 0; background: linear-gradient(160deg, #f0f7ff 0%, #f5fbfa 100%); }
.audit-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.audit-desc {
  font-size: 17px;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.audit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.audit-list li {
  font-size: 15px;
  color: var(--grey-dark);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.audit-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 10px;
  top: 4px;
}
.audit-note {
  font-size: 13px;
  color: var(--grey-mid);
  margin-top: 14px;
  line-height: 1.5;
}
.audit-card-visual { display: flex; justify-content: center; }
.audit-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 300px;
  box-shadow: 0 16px 56px rgba(74,144,217,0.12);
  border: 1px solid rgba(74,144,217,0.1);
}
.audit-card-tag {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.audit-card-sub {
  font-size: 11px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.audit-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.audit-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audit-card-items li {
  font-size: 14px;
  color: var(--grey-dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.audit-card-items li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* ============================================
   CTA SECTION — DUAL BUTTONS
============================================ */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  font-weight: 600;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}
.cta-card-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-sub { max-width: 100%; margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-photo-frame { width: 280px; height: 350px; }
  .hero-float-badge { right: 0; bottom: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { padding: 48px 28px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .footer-brand { margin-left: 0; }
  .footer-brand { order: -1; }
  .nav-links { display: none; }
  .audit-wrap { grid-template-columns: 1fr; gap: 48px; }
  .audit-card-visual { order: -1; }
}
@media (max-width: 600px) {
  .who-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
