/* ============================================================
   BOUNCE FINANCIAL — Main Stylesheet
   Mobile-first. Brand: #FFCA38 → #F68B1F → #EE3780
   Font: Nunito Sans (Avenir Next web equivalent)
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --yellow:   #FFCA38;
  --orange:   #F68B1F;
  --magenta:  #EE3780;
  --gradient: linear-gradient(135deg, #FFCA38 0%, #F68B1F 50%, #EE3780 100%);
  --gradient-h: linear-gradient(90deg, #FFCA38 0%, #F68B1F 50%, #EE3780 100%);

  --dark:     #222222;
  --charcoal: #555555;
  --mid:      #666666;
  --border:   #E5E5E5;
  --light:    #F9F8F6;
  --white:    #FFFFFF;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.12);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  --nav-h:      72px;
  --max-w:      1140px;
  --font:       'Nunito Sans', 'Avenir Next', 'Avenir', system-ui, sans-serif;

  --transition: 0.25s ease;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--mid);
  font-weight: 400;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--light { background: var(--light); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(238,55,128,0.25);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(238,55,128,0.35);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --- Gradient accent bar ---------------------------------- */
.accent-bar {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--gradient);
  margin-bottom: 1.25rem;
}
.accent-bar--center { margin-left: auto; margin-right: auto; }

/* --- Cards ----------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 28px; height: 28px; color: white; }

/* --- Gradient border card --------------------------------- */
.card--gradient-border {
  position: relative;
  border: none;
}
.card--gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo img { height: 72px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--orange);
  background: rgba(246,139,31,0.07);
}

.nav__cta { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--light); }
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }

.nav__drawer a {
  display: block;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav__drawer a:hover,
.nav__drawer a.active { background: var(--light); color: var(--orange); }

.nav__drawer .drawer-cta {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ============================================================
   HERO — Home (split image layout)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  background: var(--white);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 1.25rem;
  position: relative;
  z-index: 1;
}

/* Subtle gradient accent line on the left */
.hero__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: var(--gradient);
  border-radius: 0 2px 2px 0;
}

.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  order: -1;
  background: #f0ede8;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 15%;
  display: block;
}

/* Fade the photo into the white content panel */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--white) 100%);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { display: block; }

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--mid);
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__trust-avatars {
  display: flex;
}
.hero__trust-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  border: 2px solid white;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
}
.hero__trust-avatars span:first-child { margin-left: 0; }
.hero__trust-text { font-size: 0.85rem; color: var(--mid); line-height: 1.4; }
.hero__trust-text strong { color: var(--dark); display: block; }

/* Desktop: side-by-side */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-h));
  }

  .hero__content {
    padding: 4rem 4rem 4rem 5rem;
  }

  .hero__image {
    order: 1;
    min-height: auto;
  }

  /* On desktop: no overlay — let the photo speak */
  .hero__image::after {
    display: none;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.page-hero__blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.12;
  filter: blur(80px);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 600px; }

/* ============================================================
   PILLARS / FEATURES
   ============================================================ */
.pillars { }
.pillar { text-align: center; padding: 2rem 1.5rem; }
.pillar__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--mid); font-size: 0.95rem; }

/* ============================================================
   CLIENT TYPES — Who we work with teaser
   ============================================================ */
.client-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.client-card__gradient {
  height: 6px;
  background: var(--gradient-h);
}
.client-card__body {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}
.client-card__tag {
  display: inline-block;
  background: var(--light);
  border-radius: 50px;
  padding: 0.3rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.client-card h3 { margin-bottom: 0.75rem; }
.client-card p { color: var(--mid); font-size: 0.95rem; margin-bottom: 1.25rem; }

.checklist { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"), var(--gradient);
  background-size: 11px, cover;
  background-repeat: no-repeat;
  background-position: center, center;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process { counter-reset: step; }
.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.process__step:last-child { border-bottom: none; }
.process__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__content h3,
.process__content h4 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--dark); }
.process__content p { color: var(--mid); font-size: 0.95rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  opacity: 0.4;
}
.testimonial__text {
  font-size: 0.975rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial__name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial__role { font-size: 0.8rem; color: var(--mid); }
.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.875rem;
}
.testimonial__stars span { color: var(--yellow); font-size: 1rem; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--dark);
  padding: 3rem 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat__label { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 600; }

/* ============================================================
   PODCAST / CONTENT
   ============================================================ */
.podcast-card {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.podcast-card h3 { color: white; }
.podcast-card p { color: rgba(255,255,255,0.85); }
.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  width: fit-content;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card__thumb {
  height: 180px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.blog-card__thumb--2 { background: linear-gradient(135deg, #FFCA38, #F68B1F); }
.blog-card__thumb--3 { background: linear-gradient(135deg, #F68B1F, #EE3780); }
.blog-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__cat {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  background: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: 0.8rem; color: var(--mid); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { font-size: 0.9rem; color: var(--mid); margin-bottom: 1rem; }
.blog-card__read-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.blog-card__read-more:hover { gap: 0.6rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  padding: 3.5rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__logo { margin-bottom: 1rem; }
.footer__logo img { height: 32px; }
.footer__tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--gradient); }
.footer__social svg { width: 16px; height: 16px; fill: white; }

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__contact { font-size: 0.9rem; line-height: 1.9; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--orange); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,139,31,0.15);
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { min-height: 140px; resize: vertical; }

select.form-control { cursor: pointer; }

/* ============================================================
   ABOUT — Team
   ============================================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.team-card__photo {
  height: 260px;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-card__photo--img {
  background: var(--light);
  height: 420px;
}
.team-card__photo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.team-card__photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 4px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.team-card__body { padding: 1.75rem; }
.team-card__name { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
.team-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.team-card p { font-size: 0.925rem; color: var(--mid); }

/* ============================================================
   VALUES
   ============================================================ */
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.value-item h3,
.value-item h4 { font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--dark); }
.value-item p { font-size: 0.9rem; color: var(--mid); margin: 0; }

/* ============================================================
   SERVICES — What We Do
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--mid); font-size: 0.925rem; }

/* ============================================================
   WHATS INCLUDED LIST
   ============================================================ */
.included-list {
  display: grid;
  gap: 1rem;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.included-item__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  margin-top: 6px;
}
.included-item__text h3,
.included-item__text h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.included-item__text p { font-size: 0.875rem; color: var(--mid); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-detail__label { font-size: 0.8rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-detail__value { font-weight: 600; color: var(--dark); }
.contact-detail__value a:hover { color: var(--orange); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero { background: var(--dark); }
.blog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--mid);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.blog-post__back:hover { color: white; }

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.blog-post__cat {
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--body);
}
.blog-post__body h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.blog-post__body h3 { margin-top: 2rem; margin-bottom: 0.5rem; }
.blog-post__body p { margin-bottom: 1.25rem; }
.blog-post__body ul,
.blog-post__body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post__body li { margin-bottom: 0.5rem; }
.blog-post__body blockquote {
  border-left: 4px solid var(--orange);
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--mid);
  background: var(--light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-post__body a { color: var(--orange); }
.blog-post__body a:hover { text-decoration: underline; }
.blog-post__body img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.blog-post__body strong { color: var(--dark); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.color-mid { color: var(--mid); }

/* ============================================================
   RESPONSIVE — Tablet (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .section { padding: 5rem 0; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 6rem 0 5rem; }
}

/* ============================================================
   RESPONSIVE — Desktop (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }

  /* Nav */
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  /* Hero */
  .hero { padding: 7rem 0 6rem; }

  /* Footer bottom */
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
