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

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --slate:         #0D0F14;
  --night:         #1C2E48;
  --card:          #131A24;
  --surface:       #19222F;
  --light-bg:      #F7F9FC;
  --white:         #FFFFFF;

  --blue:          #7FA8D4;
  --blue-dim:      #5080AA;
  --blue-light:    #B0CCE8;
  --violet:        #6B6FA0;
  --violet-dim:    #4A4D75;
  --violet-light:  #9B9FD0;

  --mist:          #D4E2F0;
  --mist-dim:      #96B0C8;
  --text-dark:     #1C2E48;
  --text-mid:      #4A6080;
  --text-light:    #8A9AAA;

  --border-dark:   #1E2A3D;
  --border-mid:    #243040;
  --border-light:  #E0E8F0;

  --whatsapp:      #25D366;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  background: var(--slate);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.tag-label {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 600;
  color: #EAF2FB;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: 0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--blue-dim);
}

.section-title--light {
  color: var(--mist);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--slate);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--mist-dim);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-wpp {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 2px;
}
.btn-wpp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(13,15,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 200;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(13,15,20,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header-logo__name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--mist);
}
.header-logo__name span { color: var(--blue); }
.header-logo__sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.48em;
  color: #4A6080;
  text-transform: uppercase;
  margin-top: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-dim);
  transition: color 0.3s ease;
  padding-bottom: 2px;
}
.header-nav a:hover { color: var(--blue); }
.header-nav a.active {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}

.header-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--mist-dim);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13,15,20,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 72px 80px 72px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(107,111,160,0.09) 0%, transparent 68%);
  top: -120px;
  right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(127,168,212,0.06) 0%, transparent 68%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__subtitle {
  margin-top: 22px;
  font-size: 19px;
  font-weight: 400;
  color: #B8CEE4;
  max-width: 520px;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* Decorative right side of hero */
.hero__deco {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__deco-v {
  opacity: 0.08;
  animation: decoFloat 6s ease-in-out infinite;
}
@keyframes decoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.hero__deco-ring {
  position: absolute;
  border: 1px solid rgba(127,168,212,0.12);
  border-radius: 50%;
  animation: decoSpin 20s linear infinite;
}
@keyframes decoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── NÚMEROS / STRIP ───────────────────────────────────────── */
.numbers-strip {
  background: var(--night);
  padding: 56px 48px;
}
.numbers-strip__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border-dark);
}
.number-item:last-child { border-right: none; }
.number-item__value {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}
.number-item__label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist-dim);
  margin-top: 8px;
}

/* ─── SECTION WRAPPER ───────────────────────────────────────── */
.section {
  padding: 96px 48px;
}
.section--light { background: var(--light-bg); }
.section--dark  { background: var(--night); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header .section-title { margin-top: 8px; }

.container {
  max-width: 1080px;
  margin: 0 auto;
}

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13,15,20,0.09);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: #EEF4FB;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #3A5070;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-chip {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
  background: #EEF4FB;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ─── TESTIMONIAL ───────────────────────────────────────────── */
.testimonial-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.testimonial {
  border-left: 3px solid var(--blue);
  padding: 28px 32px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(13,15,20,0.06);
}
.testimonial__text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 16px;
}
.testimonial__author {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--night);
  padding: 80px 48px;
  text-align: center;
}
.cta-band__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 12px;
}
.cta-band__sub {
  font-size: 14px;
  color: var(--mist-dim);
  margin-bottom: 36px;
}

/* ─── SOBRE — SIGNIFICADO ───────────────────────────────────── */
.meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.meaning-letters {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.meaning-letter-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.meaning-letter-row:first-child { border-top: 1px solid var(--border-light); }
.meaning-letter-char {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  min-width: 44px;
}
.meaning-letter-char--blue   { color: var(--blue); }
.meaning-letter-char--violet { color: var(--violet); }
.meaning-letter-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.meaning-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.meaning-text p:last-child { margin-bottom: 0; }

/* ─── VALORES ───────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--blue);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(13,15,20,0.07);
}
.value-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.value-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── SERVIÇOS PAGE — BLOCOS ────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child  { border-bottom: none; padding-bottom: 0; }

.service-block__num {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}
.service-block__content {}
.service-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-block__desc {
  font-size: 16px;
  font-weight: 400;
  color: #3A5070;
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.service-block__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-bottom: 20px;
}
.service-block__list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-block__list li::before {
  content: '—';
  color: var(--blue);
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.75;
}

/* ─── CONTATO ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9AAA' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-info {
  padding-top: 8px;
}
.contact-info__title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info__item:first-child { border-top: 1px solid var(--border-light); }
.contact-info__icon {
  width: 36px;
  height: 36px;
  background: #EEF4FB;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info__detail {}
.contact-info__label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: 14px;
  color: var(--text-mid);
}

/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.fab-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.fab-wpp:hover { transform: scale(1.1); }
.fab-wpp__tooltip {
  position: absolute;
  right: 66px;
  background: var(--night);
  color: var(--mist);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.25s ease;
}
.fab-wpp:hover .fab-wpp__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── PROCESS STEPS ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
}
.process-step {
  background: var(--light-bg);
  padding: 36px 28px;
  transition: background 0.3s ease;
}
.process-step:hover { background: var(--white); }
.process-step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── WHO WE SERVE ───────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13,15,20,0.09);
}
.audience-card__icon {
  width: 48px;
  height: 48px;
  background: #EEF4FB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.audience-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.audience-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-trigger__q {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-trigger__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--blue);
}
.faq-item.open .faq-trigger__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body__inner {
  overflow: hidden;
}
.faq-body__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 22px;
  padding-right: 44px;
}

/* ─── FOUNDER ────────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.founder-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.founder-text p:last-child { margin-bottom: 0; }
.founder-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-avatar__circle {
  width: 280px;
  height: 280px;
  background: var(--night);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-dark);
}
.founder-avatar__initials {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.08em;
}

/* ─── PRICING CARDS ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13,15,20,0.09);
}
.pricing-card--featured {
  border: 2px solid var(--blue);
  padding-top: 52px;
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--slate);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pricing-card__sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
.pricing-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card__list li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 28px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── NEXT STEPS ─────────────────────────────────────────────── */
.nextsteps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}
.nextstep {
  padding: 36px 28px;
  border-right: 1px solid var(--border-light);
}
.nextstep:last-child { border-right: none; }
.nextstep__num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}
.nextstep__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nextstep__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── FOOTER EXPANDED ───────────────────────────────────────── */
.site-footer {
  background: var(--slate);
  border-top: 1px solid var(--border-dark);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.footer-brand__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 12px;
  max-width: 300px;
}
.footer-brand__tagline {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--blue);
}
.footer-col__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist-dim);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--blue); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 16px;
}
.footer-copy {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: var(--text-mid);
}
.footer-made {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: #2A3A50;
}

/* ─── FADE-UP ANIMATION ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 110px 40px 70px; }
  .hero__deco { display: none; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .audience-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .nextsteps-grid { grid-template-columns: 1fr 1fr; }
  .nextstep:nth-child(2) { border-right: none; }
  .nextstep:nth-child(3) { border-top: 1px solid var(--border-light); }
  .founder-grid   { grid-template-columns: 1fr; }
  .founder-avatar { order: -1; }
  .founder-avatar__circle { width: 180px; height: 180px; }
  .founder-avatar__initials { font-size: 48px; }
  .meaning-grid   { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .numbers-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-top: 1px solid var(--border-dark); }
  .service-block  { grid-template-columns: 60px 1fr; gap: 20px; }
  .footer-main    { grid-template-columns: 1fr 1fr; padding: 40px 32px 32px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .header-nav  { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }

  .hero        { padding: 100px 24px 60px; grid-template-columns: 1fr; }
  .hero__deco  { display: none; }
  .section     { padding: 64px 24px; }
  .numbers-strip { padding: 40px 24px; }
  .cta-band    { padding: 60px 24px; }

  .services-grid  { grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; background: none; gap: 1px; }
  .nextsteps-grid { grid-template-columns: 1fr; }
  .nextstep       { border-right: none; border-bottom: 1px solid var(--border-light); }
  .nextstep:last-child { border-bottom: none; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 100%; }
  .service-block  { grid-template-columns: 1fr; }
  .service-block__num { font-size: 48px; }
  .service-block__list { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .faq-body__text { padding-right: 0; }

  .footer-main   { grid-template-columns: 1fr; padding: 40px 24px 28px; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 24px; }
  .footer-nav    { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
