/* ═══════════════════════════════════════════════════
   THE EXPAT NETWORK — Landing Page Styles v1.0
   Aesthetic: Refined editorial · Dark teal authority
   Fonts: Fraunces (display) + DM Sans (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --ten-teal:        #0a7073;
  --ten-teal-dark:   #064e50;
  --ten-teal-light:  #0d9296;
  --ten-teal-pale:   #e8f4f4;
  --ten-gold:        #c9820a;
  --ten-gold-pale:   #fdf3e3;
  --ten-ink:         #0f1a1b;
  --ten-ink-2:       #1e2e30;
  --ten-muted:       #5a6e70;
  --ten-border:      #d4dfe0;
  --ten-bg:          #fafbfb;
  --ten-bg-2:        #f2f6f6;
  --ten-white:       #ffffff;
  --ten-danger:      #c0392b;
  --ten-success:     #1a7a42;

  --ten-font-display: 'Fraunces', Georgia, serif;
  --ten-font-body:    'DM Sans', system-ui, sans-serif;

  --ten-r-sm:  6px;
  --ten-r-md:  12px;
  --ten-r-lg:  20px;
  --ten-r-xl:  32px;
  --ten-r-full: 9999px;

  --ten-shadow-sm: 0 1px 3px rgba(10,112,115,.08);
  --ten-shadow-md: 0 6px 24px rgba(10,112,115,.12);
  --ten-shadow-lg: 0 16px 48px rgba(10,112,115,.14);

  --ten-container: 1160px;
  --ten-gap:       clamp(1rem, 3vw, 2rem);
  --ten-transition: 220ms cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ten-font-body); color: var(--ten-ink); background: var(--ten-bg); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.ten-container {
  max-width: var(--ten-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Typography helpers ── */
.ten-h2 {
  font-family: var(--ten-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ten-ink);
  margin-bottom: 1rem;
}
.ten-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ten-teal);
  background: var(--ten-teal-pale);
  padding: .3rem .8rem;
  border-radius: var(--ten-r-full);
  margin-bottom: .75rem;
}
.ten-text-center { text-align: center; }
.ten-link { color: var(--ten-teal); text-decoration: underline; text-underline-offset: 3px; }

/* ── Buttons ── */
.ten-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--ten-font-body);
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--ten-r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ten-transition);
  white-space: nowrap;
  text-decoration: none;
}
.ten-btn--primary {
  background: var(--ten-teal);
  color: var(--ten-white);
  border-color: var(--ten-teal);
}
.ten-btn--primary:hover {
  background: var(--ten-teal-dark);
  border-color: var(--ten-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--ten-shadow-md);
}
.ten-btn--outline {
  background: transparent;
  color: var(--ten-teal);
  border-color: var(--ten-teal);
}
.ten-btn--outline:hover {
  background: var(--ten-teal-pale);
  transform: translateY(-1px);
}
.ten-btn--tool {
  background: transparent;
  color: var(--ten-ink);
  border-color: var(--ten-border);
  font-weight: 500;
}
.ten-btn--tool:hover {
  border-color: var(--ten-teal);
  color: var(--ten-teal);
  background: var(--ten-teal-pale);
}
.ten-btn--full { width: 100%; }
.ten-btn--lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── Pills & chips ── */
.ten-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: var(--ten-r-full);
}
.ten-pill--teal { background: var(--ten-teal-pale); color: var(--ten-teal-dark); border: 1px solid rgba(10,112,115,.2); }
.ten-chip {
  display: inline-flex;
  font-size: .75rem;
  font-weight: 500;
  padding: .25rem .75rem;
  border-radius: var(--ten-r-full);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--ten-white);
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.ten-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ten-border);
}
.ten-nav__inner {
  max-width: var(--ten-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.ten-nav__brand { display: flex; align-items: center; gap: .6rem; }
.ten-nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--ten-teal);
  color: var(--ten-white);
  font-family: var(--ten-font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  border-radius: var(--ten-r-sm);
}
.ten-nav__logo-text {
  font-family: var(--ten-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ten-ink);
  letter-spacing: -.01em;
}
.ten-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.ten-nav__links li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ten-muted);
  transition: color var(--ten-transition);
}
.ten-nav__links li a:hover { color: var(--ten-teal); }
.ten-nav__cta-link {
  background: var(--ten-teal) !important;
  color: var(--ten-white) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--ten-r-full);
  font-size: .8rem !important;
  font-weight: 600 !important;
}
.ten-nav__cta-link:hover { background: var(--ten-teal-dark) !important; }
.ten-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ten-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ten-ink);
  border-radius: 2px;
  transition: all .2s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.ten-hero {
  background: linear-gradient(145deg, var(--ten-ink) 0%, var(--ten-teal-dark) 55%, #0a4a4c 100%);
  color: var(--ten-white);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}
.ten-hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ten-hero__accent-blob {
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(13,146,150,.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ten-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ten-hero__eyebrow { margin-bottom: 1rem; }
.ten-hero__eyebrow .ten-pill--teal {
  background: rgba(13,146,150,.25);
  color: #7dd3d4;
  border-color: rgba(13,146,150,.4);
}
.ten-hero__h1 {
  font-family: var(--ten-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ten-white);
  margin-bottom: 1.25rem;
}
.ten-hero__h1-accent {
  font-style: italic;
  color: #7dd3d4;
}
.ten-hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.ten-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.ten-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.ten-hero__actions .ten-btn--outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}
.ten-hero__actions .ten-btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--ten-white);
}

/* Hero visual / image placeholder */
.ten-hero__visual { display: flex; justify-content: center; }
.ten-hero__img-frame {
  position: relative;
  width: 360px;
  height: 420px;
  border-radius: var(--ten-r-lg);
  overflow: visible;
}
.ten-hero__img-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--ten-r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  /* STEP-2-IMAGE: replace background with: background: url('your-photo.jpg') center/cover; border: none; */
}
.ten-hero__img-icon { font-size: 3.5rem; opacity: .4; }
.ten-hero__img-note {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.5;
}
.ten-hero__img-badge {
  position: absolute;
  background: var(--ten-white);
  color: var(--ten-ink);
  font-size: .75rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: var(--ten-r-full);
  box-shadow: var(--ten-shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ten-hero__img-badge--1 { bottom: 40px; left: -30px; }
.ten-hero__img-badge--2 { top: 40px; right: -20px; }

.ten-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.ten-scroll-dot {
  display: block;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  animation: ten-bounce .9s infinite alternate;
}
@keyframes ten-bounce { to { transform: translateY(6px); opacity: .6; } }

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.ten-trust {
  background: var(--ten-white);
  border-bottom: 1px solid var(--ten-border);
  padding: 2.5rem 0;
}
.ten-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.ten-trust__stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 1.5rem;
}
.ten-trust__num {
  display: block;
  font-family: var(--ten-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ten-teal);
  line-height: 1;
  margin-bottom: .25rem;
}
.ten-trust__suffix { font-size: 1.4rem; font-weight: 700; color: var(--ten-teal); }
.ten-trust__label {
  font-size: .8rem;
  color: var(--ten-muted);
  line-height: 1.4;
  max-width: 120px;
  margin-inline: auto;
}
.ten-trust__divider {
  width: 1px;
  height: 48px;
  background: var(--ten-border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   STORY
───────────────────────────────────────────── */
.ten-story {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-bg);
}
.ten-story__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.ten-story__visual { position: relative; }
.ten-story__img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--ten-r-lg);
  overflow: hidden;
  background: var(--ten-bg-2);
}
.ten-story__img-placeholder {
  width: 100%; height: 100%;
  border: 2px dashed var(--ten-border);
  border-radius: var(--ten-r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  /* STEP-2-IMAGE: replace with background: url('story-photo.jpg') center/cover; border: none; */
}
.ten-story__img-icon { font-size: 2.5rem; opacity: .35; }
.ten-story__img-note { font-size: .75rem; color: var(--ten-muted); text-align: center; }
.ten-story__quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ten-teal);
  color: var(--ten-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--ten-r-md);
  max-width: 260px;
  box-shadow: var(--ten-shadow-lg);
}
.ten-story__quote { font-family: var(--ten-font-display); font-style: italic; font-size: 1rem; line-height: 1.4; margin-bottom: .5rem; }
.ten-story__quote-attr { font-size: .7rem; opacity: .75; }
.ten-story__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ten-muted);
  margin-bottom: .9rem;
}
.ten-story__content strong { color: var(--ten-ink); }
.ten-story__badges { margin: 1.5rem 0; }
.ten-badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .5rem; }
.ten-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .8rem;
  border-radius: var(--ten-r-full);
  border: 1px solid var(--ten-border);
  background: var(--ten-white);
  color: var(--ten-ink);
}
.ten-story__cta { margin-top: .5rem; }

/* ─────────────────────────────────────────────
   FIT (WHO IT'S FOR)
───────────────────────────────────────────── */
.ten-fit {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-bg-2);
}
.ten-fit > .ten-container > .ten-eyebrow,
.ten-fit > .ten-container > .ten-h2 { display: block; }
.ten-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ten-fit__col {
  border-radius: var(--ten-r-lg);
  padding: 2rem;
}
.ten-fit__col--yes {
  background: var(--ten-white);
  border: 1px solid var(--ten-border);
}
.ten-fit__col--no {
  background: #fff9f9;
  border: 1px solid #f5c6c6;
}
.ten-fit__col-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.ten-fit__icon { font-size: 1.4rem; }
.ten-fit__col-head h3 {
  font-family: var(--ten-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ten-ink);
}
.ten-fit__list { display: flex; flex-direction: column; gap: .65rem; }
.ten-fit__list li {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ten-muted);
  padding-left: 1.25rem;
  position: relative;
}
.ten-fit__col--yes .ten-fit__list li::before { content: '→'; position: absolute; left: 0; color: var(--ten-teal); font-weight: 700; }
.ten-fit__col--no .ten-fit__list li::before { content: '×'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.ten-services {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-white);
}
.ten-services__sub {
  font-size: .95rem;
  color: var(--ten-muted);
  margin-top: -.25rem;
  margin-bottom: 3rem;
}
.ten-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.ten-service-card {
  border: 1px solid var(--ten-border);
  border-radius: var(--ten-r-lg);
  padding: 2rem;
  background: var(--ten-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform var(--ten-transition), box-shadow var(--ten-transition);
}
.ten-service-card:hover { transform: translateY(-3px); box-shadow: var(--ten-shadow-md); }
.ten-service-card--featured {
  background: var(--ten-white);
  border-color: var(--ten-teal);
  border-width: 2px;
  box-shadow: var(--ten-shadow-sm);
}
.ten-service-card__featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ten-teal);
  color: var(--ten-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: var(--ten-r-full);
  white-space: nowrap;
}
.ten-service-card__icon { font-size: 2rem; }
.ten-service-card__badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ten-teal);
}
.ten-service-card__title {
  font-family: var(--ten-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ten-ink);
  line-height: 1.2;
}
.ten-service-card__desc {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--ten-muted);
}
.ten-service-card__includes {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.ten-service-card__includes li {
  font-size: .82rem;
  color: var(--ten-muted);
  line-height: 1.4;
}
.ten-service-card__price { margin-top: auto; }
.ten-service-card__price-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ten-teal);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ten-service-card__waitlist { margin-top: .25rem; align-self: stretch; justify-content: center; }

/* ─────────────────────────────────────────────
   LEAD MAGNET / CHECKLIST
───────────────────────────────────────────── */
.ten-magnet {
  background: linear-gradient(135deg, var(--ten-teal-dark) 0%, #0a5658 100%);
  color: var(--ten-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.ten-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.ten-magnet .ten-eyebrow {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.ten-magnet .ten-h2 { color: var(--ten-white); }
.ten-magnet__content p {
  font-size: .975rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
}
.ten-magnet__bullets { display: flex; flex-direction: column; gap: .5rem; }
.ten-magnet__bullets li {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Form */
.ten-magnet__form-wrap { position: relative; }
.ten-form {
  background: var(--ten-white);
  border-radius: var(--ten-r-lg);
  padding: 2rem;
  box-shadow: var(--ten-shadow-lg);
}
.ten-form__title {
  font-family: var(--ten-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ten-ink);
  margin-bottom: 1.25rem;
}
.ten-form__field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.ten-form__field label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ten-muted); }
.ten-form__field input {
  padding: .75rem 1rem;
  border: 1.5px solid var(--ten-border);
  border-radius: var(--ten-r-sm);
  font-size: .9rem;
  color: var(--ten-ink);
  background: var(--ten-bg);
  transition: border-color var(--ten-transition);
  outline: none;
}
.ten-form__field input:focus { border-color: var(--ten-teal); background: var(--ten-white); }
.ten-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.ten-form__consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.ten-form__consent input[type="checkbox"] { margin-top: .15rem; accent-color: var(--ten-teal); flex-shrink: 0; }
.ten-form__consent span { font-size: .78rem; line-height: 1.5; color: var(--ten-muted); }
.ten-form__consent a { color: var(--ten-teal); text-decoration: underline; }
.ten-form__status {
  font-size: .82rem;
  margin-top: .75rem;
  min-height: 1.2em;
  line-height: 1.4;
}
.ten-form__status.success { color: var(--ten-success); }
.ten-form__status.error { color: var(--ten-danger); }

/* ─────────────────────────────────────────────
   TOOLS HUB
───────────────────────────────────────────── */
.ten-tools {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-bg-2);
}
.ten-tools__sub {
  font-size: .95rem;
  color: var(--ten-muted);
  margin-top: -.25rem;
  margin-bottom: 3rem;
}
.ten-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.ten-tool-card {
  background: var(--ten-white);
  border: 1px solid var(--ten-border);
  border-radius: var(--ten-r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--ten-transition), box-shadow var(--ten-transition);
}
.ten-tool-card:hover { transform: translateY(-3px); box-shadow: var(--ten-shadow-md); }
.ten-tool-card--featured { border-color: var(--ten-teal); border-width: 2px; }
.ten-tool-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--ten-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.ten-tool-card__icon-wrap--blue { background: #e8f0fe; }
.ten-tool-card__icon-wrap--teal { background: var(--ten-teal-pale); }
.ten-tool-card__icon-wrap--gold { background: var(--ten-gold-pale); }
.ten-tool-card__title {
  font-family: var(--ten-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ten-ink);
  line-height: 1.2;
}
.ten-tool-card__desc { font-size: .875rem; line-height: 1.65; color: var(--ten-muted); }
.ten-tool-card__features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.ten-tool-card__features li { font-size: .8rem; color: var(--ten-muted); padding-left: 1rem; position: relative; }
.ten-tool-card__features li::before { content: '·'; position: absolute; left: .2rem; color: var(--ten-teal); font-weight: 700; }

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.ten-process {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-white);
}
.ten-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.ten-process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}
.ten-process__step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ten-teal);
  color: var(--ten-white);
  font-family: var(--ten-font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--ten-teal-pale);
}
.ten-process__step-content h3 {
  font-family: var(--ten-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ten-ink);
  margin-bottom: .4rem;
}
.ten-process__step-content p { font-size: .85rem; line-height: 1.6; color: var(--ten-muted); }
.ten-process__connector {
  flex: 0 0 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ten-teal), var(--ten-teal-light));
  margin-top: 1.6rem;
  align-self: flex-start;
}

/* ─────────────────────────────────────────────
   COMMUNITY
───────────────────────────────────────────── */
.ten-community {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-bg-2);
}
.ten-community__sub { font-size: .95rem; color: var(--ten-muted); margin-bottom: 3rem; }
.ten-community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ten-channel-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--ten-white);
  border: 1px solid var(--ten-border);
  border-radius: var(--ten-r-lg);
  transition: transform var(--ten-transition), box-shadow var(--ten-transition);
  text-decoration: none;
}
.ten-channel-card:hover { transform: translateY(-2px); box-shadow: var(--ten-shadow-sm); }
.ten-channel-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--ten-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
}
.ten-channel-card--li .ten-channel-card__icon { background: #0a66c2; }
.ten-channel-card--wa .ten-channel-card__icon { background: #25d366; }
.ten-channel-card--tg .ten-channel-card__icon { background: #229ed9; }
.ten-channel-card__content h3 { font-size: .95rem; font-weight: 600; color: var(--ten-ink); margin-bottom: .25rem; }
.ten-channel-card__content p { font-size: .8rem; color: var(--ten-muted); line-height: 1.4; margin-bottom: .5rem; }
.ten-channel-card__action { font-size: .8rem; font-weight: 600; color: var(--ten-teal); }

.ten-ulm-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ten-white);
  border: 1px solid var(--ten-border);
  border-left: 4px solid var(--ten-teal);
  border-radius: var(--ten-r-md);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.ten-ulm-card__icon { font-size: 2rem; flex-shrink: 0; }
.ten-ulm-card__content { flex: 1; min-width: 200px; }
.ten-ulm-card__content h3 { font-family: var(--ten-font-display); font-size: 1rem; font-weight: 600; color: var(--ten-ink); margin-bottom: .3rem; }
.ten-ulm-card__content p { font-size: .875rem; color: var(--ten-muted); line-height: 1.55; }
.ten-ulm-card__content strong { color: var(--ten-ink); }

/* ─────────────────────────────────────────────
   BOOK A CALL
───────────────────────────────────────────── */
.ten-book {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ten-bg);
}
.ten-book__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.ten-book__bullets { display: flex; flex-direction: column; gap: .85rem; margin: 1.5rem 0; }
.ten-book__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--ten-muted);
  line-height: 1.5;
}
.ten-book__bullet-icon {
  width: 32px; height: 32px;
  background: var(--ten-teal-pale);
  border-radius: var(--ten-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: -.1rem;
}
.ten-book__whatsapp { font-size: .875rem; color: var(--ten-muted); }
.ten-calendly-placeholder {
  background: var(--ten-white);
  border: 1px solid var(--ten-border);
  border-radius: var(--ten-r-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--ten-shadow-sm);
}
.ten-calendly-placeholder__icon { font-size: 3rem; margin-bottom: 1rem; }
.ten-calendly-placeholder h3 {
  font-family: var(--ten-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ten-ink);
  margin-bottom: .5rem;
}
.ten-calendly-placeholder p { font-size: .9rem; color: var(--ten-muted); margin-bottom: 1.5rem; }
.ten-calendly-placeholder__note { font-size: .78rem; color: var(--ten-muted); margin-top: 1rem !important; margin-bottom: 0 !important; }

/* ─────────────────────────────────────────────
   MODAL
───────────────────────────────────────────── */
.ten-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,30,32,.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ten-modal-overlay[hidden] { display: none; }
.ten-modal {
  background: var(--ten-white);
  border-radius: var(--ten-r-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--ten-shadow-lg);
  animation: ten-modal-in .2s ease;
}
@keyframes ten-modal-in { from { opacity:0; transform:scale(.96) translateY(8px); } to { opacity:1; transform:none; } }
.ten-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ten-muted);
  padding: .25rem .5rem;
  border-radius: var(--ten-r-sm);
  transition: background var(--ten-transition);
}
.ten-modal__close:hover { background: var(--ten-bg-2); }
.ten-modal__title { font-family: var(--ten-font-display); font-size: 1.4rem; font-weight: 600; color: var(--ten-ink); margin-bottom: .5rem; }
.ten-modal__desc { font-size: .9rem; color: var(--ten-muted); margin-bottom: 1.5rem; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.ten-footer {
  background: var(--ten-ink);
  color: rgba(255,255,255,.7);
}
.ten-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.ten-footer__brand .ten-nav__logo-mark { background: var(--ten-teal-light); }
.ten-footer__brand .ten-nav__logo-text { color: var(--ten-white); }
.ten-footer__tagline { font-size: .85rem; line-height: 1.6; margin-top: .75rem; margin-bottom: .4rem; }
.ten-footer__location { font-size: .8rem; }
.ten-footer__links h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.ten-footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.ten-footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--ten-transition);
}
.ten-footer__links a:hover { color: var(--ten-white); }
.ten-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.ten-footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: .25rem; line-height: 1.5; }
.ten-footer__disclaimer { font-style: italic; }

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS  (Intersection Observer in JS)
───────────────────────────────────────────── */
.ten-reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.ten-reveal.visible { opacity: 1; transform: none; }
.ten-reveal-delay-1 { transition-delay: .1s; }
.ten-reveal-delay-2 { transition-delay: .2s; }
.ten-reveal-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ten-hero__inner { grid-template-columns: 1fr; }
  .ten-hero__visual { display: none; }
  .ten-story__inner { grid-template-columns: 1fr; }
  .ten-story__quote-card { position: static; max-width: 100%; margin-top: 1rem; }
  .ten-services__grid,
  .ten-tools__grid,
  .ten-community__grid { grid-template-columns: 1fr 1fr; }
  .ten-book__inner { grid-template-columns: 1fr; }
  .ten-magnet__inner { grid-template-columns: 1fr; }
  .ten-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .ten-nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--ten-white); border-bottom: 1px solid var(--ten-border); padding: 1.5rem 2rem; gap: 1.25rem; }
  .ten-nav__links.open { display: flex; }
  .ten-nav__hamburger { display: flex; }
  .ten-nav { position: relative; }
  .ten-services__grid,
  .ten-tools__grid,
  .ten-community__grid,
  .ten-fit__grid { grid-template-columns: 1fr; }
  .ten-process__steps { flex-direction: column; align-items: center; }
  .ten-process__connector { width: 2px; height: 2rem; flex: 0 0 2rem; margin-top: 0; margin-left: 1.6rem; align-self: auto; background: linear-gradient(180deg, var(--ten-teal), var(--ten-teal-light)); }
  .ten-trust__inner { flex-direction: column; }
  .ten-trust__divider { width: 48px; height: 1px; }
  .ten-footer__inner { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 2.5rem; padding-bottom: 2rem; }
  .ten-hero__actions { flex-direction: column; }
  .ten-hero__actions .ten-btn { justify-content: center; }
}
