/* =============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --dark-bg:    #2B3F5C;
  --mid-blue:   #3D5A80;
  --light-blue: #8AAAC8;
  --off-white:  #F7F7F5;
  --white:      #FFFFFF;
  --footer-bg:  #1a1a2e;
  --text-dark:  #1C2B3A;
  --text-muted: #5A6B7A;

  --radius-card: 12px;
  --radius-btn:  8px;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);

  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* =============================================
   SCROLL ANIMATION CLASSES
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}

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

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--white);
  color: var(--dark-bg);
}

.btn--primary:hover {
  background: var(--off-white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--dark-bg);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--mid-blue);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.navbar__logo {
  font-family: var(--font-title);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.navbar__logo span {
  color: var(--light-blue);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width var(--transition);
}

.navbar__links a:hover {
  color: var(--white);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

.navbar__mobile .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--dark-bg);
  padding: 140px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,90,128,0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138,170,200,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138,170,200,0.12);
  border: 1px solid rgba(138,170,200,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--light-blue);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--light-blue);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   NUMBERS / PROOF
============================================= */
.numbers {
  background: var(--white);
  padding: 80px 0;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.numbers__card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.numbers__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.numbers__value {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--dark-bg);
  line-height: 1;
  margin-bottom: 8px;
}

.numbers__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =============================================
   SERVICES
============================================= */
.services {
  background: var(--off-white);
  padding: 100px 0;
}

.services__header {
  margin-bottom: 56px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services__card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services__icon {
  width: 52px;
  height: 52px;
  background: var(--dark-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.services__icon svg {
  width: 24px;
  height: 24px;
  color: var(--light-blue);
}

.services__card-title {
  font-family: var(--font-title);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.services__card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS
============================================= */
.how {
  background: var(--white);
  padding: 100px 0;
}

.how__header {
  margin-bottom: 64px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 1px;
  background: linear-gradient(to right, var(--light-blue), transparent 45%, transparent 55%, var(--light-blue));
  opacity: 0.3;
}

.how__step {
  position: relative;
}

.how__step-num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 16px;
}

.how__step-icon {
  width: 56px;
  height: 56px;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.how__step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--light-blue);
}

.how__step-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.how__step-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PORTFOLIO
============================================= */
.portfolio {
  background: var(--off-white);
  padding: 100px 0;
}

.portfolio__header {
  margin-bottom: 56px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio__card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Browser mock */
.browser-mock {
  background: #1C2B3A;
  position: relative;
}

.browser-mock__bar {
  background: #263547;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-mock__dot:nth-child(1) { background: #FF5F57; }
.browser-mock__dot:nth-child(2) { background: #FEBC2E; }
.browser-mock__dot:nth-child(3) { background: #28C840; }

.browser-mock__url {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.browser-mock__url-lock {
  width: 8px;
  height: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
}

.browser-mock__url-lock::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.browser-mock__url-text {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-body);
}

.browser-mock__screen {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* =============================================
   MOCK SHARED COMPONENTS
   Mini navbar · Hero split · Bottom strip
============================================= */

/* ── Mini navbar ── */
.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 26px;
  flex-shrink: 0;
  font-family: var(--font-body);
  gap: 6px;
}

.mock-nav__brand {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mock-nav__links {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.mock-nav__link {
  font-size: 0.46875rem;
  letter-spacing: 0.04em;
}

.mock-nav__btn {
  font-size: 0.46875rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Hero split ── */
.mock-hero {
  flex: 1;
  display: flex;
  overflow: hidden;
  min-height: 0;
}

.mock-hero__left {
  width: 54%;
  padding: 10px 6px 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1;
}

.mock-hero__right {
  width: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 8px 4px;
  overflow: hidden;
}

.mock-eyebrow {
  font-size: 0.4375rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
  width: fit-content;
}

.mock-h1 {
  font-family: var(--font-title);
  line-height: 1.15;
  font-weight: 700;
}

.mock-p {
  font-size: 0.4375rem;
  line-height: 1.55;
  opacity: 0.75;
}

.mock-cta-btn {
  font-size: 0.46875rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: 0.04em;
  margin-top: 2px;
  cursor: default;
}

/* ── Bottom strip ── */
.mock-strip {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  font-size: 0.4375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-strip span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-strip span::before {
  content: '◆';
  font-size: 0.3125rem;
  opacity: 0.6;
}

/* =============================================
   MOCK 1 — Ateliê da Mari (rosê, elegante)
============================================= */
.mock-mari {
  background: linear-gradient(145deg, #2D1B2E 0%, #4A2C40 55%, #6B3D55 100%);
}

.mock-mari .mock-nav {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(232,196,196,0.08);
}

.mock-mari .mock-nav__brand {
  font-style: italic;
  color: #E8C4C4;
  font-family: var(--font-title);
  font-size: 0.625rem;
}

.mock-mari .mock-nav__link  { color: rgba(232,196,196,0.45); }

.mock-mari .mock-eyebrow {
  background: rgba(232,196,196,0.12);
  border: 1px solid rgba(232,196,196,0.25);
  color: #E8C4C4;
}

.mock-mari .mock-h1 {
  font-size: 0.9375rem;
  color: #F2DADA;
  font-style: italic;
}

.mock-mari .mock-p { color: rgba(232,196,196,0.65); }

.mock-mari .mock-cta-btn {
  background: transparent;
  border: 1px solid rgba(232,196,196,0.45);
  color: #E8C4C4;
  border-radius: 20px;
}

.mock-mari .mock-strip {
  background: rgba(0,0,0,0.22);
  color: rgba(232,196,196,0.5);
  border-top: 1px solid rgba(232,196,196,0.08);
}

/* Product thumbnails grid */
.mock-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.mock-product {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.mock-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.mock-product--1 { background: linear-gradient(150deg, #9B506A 0%, #C4728A 100%); }
.mock-product--2 { background: linear-gradient(150deg, #7A3A5A 0%, #A05870 100%); }
.mock-product--3 { background: linear-gradient(150deg, #5C2A42 0%, #8B4560 100%); opacity: 0.85; }
.mock-product--4 {
  background: rgba(232,196,196,0.06);
  border: 1px dashed rgba(232,196,196,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: rgba(232,196,196,0.35);
  letter-spacing: 0.08em;
}

/* =============================================
   MOCK 2 — Studio Ink (dark, gold)
============================================= */
.mock-ink {
  background: #0C0C0C;
}

.mock-ink .mock-nav {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-ink .mock-nav__brand {
  color: #FFFFFF;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.5rem;
}

.mock-ink .mock-nav__link  { color: rgba(255,255,255,0.28); }

.mock-ink .mock-nav__btn {
  background: #C9A84C;
  color: #0C0C0C;
}

.mock-ink .mock-eyebrow {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #C9A84C;
}

.mock-ink .mock-h1 {
  font-size: 0.9375rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.mock-ink .mock-p { color: rgba(255,255,255,0.38); }

.mock-ink .mock-cta-btn {
  background: #C9A84C;
  color: #0C0C0C;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-ink .mock-strip {
  background: rgba(201,168,76,0.05);
  color: rgba(201,168,76,0.55);
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* Tattoo portfolio grid */
.mock-tattoos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
}

.mock-tattoo {
  background: #181818;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-tattoo::before {
  position: absolute;
  font-size: 1rem;
  opacity: 0.18;
  color: #C9A84C;
}

.mock-tattoo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,0.025) 0px, rgba(201,168,76,0.025) 1px,
    transparent 1px, transparent 7px
  );
}

.mock-tattoo--1::before { content: '✦'; font-size: 1.25rem; }
.mock-tattoo--2::before { content: '◈'; font-size: 1rem; }
.mock-tattoo--3::before { content: '⬡'; font-size: 1rem; }
.mock-tattoo--4::before { content: '❋'; font-size: 1.125rem; }

/* =============================================
   MOCK 3 — Dra. Ana Lima (clean, acolhedor)
============================================= */
.mock-ana {
  background: #EFF5FA;
}

.mock-ana .mock-nav {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(42,74,106,0.08);
}

.mock-ana .mock-nav__brand {
  color: #2A4A6A;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 0.5625rem;
}

.mock-ana .mock-nav__link  { color: rgba(42,74,106,0.45); }

.mock-ana .mock-nav__btn {
  background: #2A4A6A;
  color: #FFFFFF;
}

.mock-ana .mock-eyebrow {
  background: rgba(42,74,106,0.08);
  border: 1px solid rgba(42,74,106,0.14);
  color: #4D7499;
}

.mock-ana .mock-h1 {
  font-size: 0.9375rem;
  color: #1A3550;
}

.mock-ana .mock-p { color: rgba(42,74,106,0.6); }

.mock-ana .mock-cta-btn {
  background: #2A4A6A;
  color: #FFFFFF;
}

.mock-ana .mock-strip {
  background: #FFFFFF;
  color: rgba(42,74,106,0.45);
  border-top: 1px solid rgba(42,74,106,0.07);
}

/* Doctor profile visual */
.mock-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
}

.mock-profile__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4A7FA5 0%, #2A4A6A 100%);
  border: 2.5px solid rgba(42,74,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  position: relative;
}

.mock-profile__photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(42,74,106,0.1);
}

.mock-profile__name {
  font-family: var(--font-title);
  font-size: 0.5625rem;
  font-style: italic;
  color: #2A4A6A;
  text-align: center;
  line-height: 1.3;
}

.mock-profile__crp {
  font-size: 0.4375rem;
  color: rgba(42,74,106,0.5);
  letter-spacing: 0.07em;
  text-align: center;
  background: rgba(42,74,106,0.06);
  padding: 2px 7px;
  border-radius: 10px;
}

.mock-profile__stars {
  display: flex;
  gap: 1px;
  font-size: 0.5625rem;
  color: #F59E0B;
  letter-spacing: -1px;
}

.portfolio__card-body {
  padding: 20px 24px 24px;
}

.portfolio__badge {
  display: inline-block;
  background: rgba(43,63,92,0.08);
  color: var(--dark-bg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.portfolio__card-title {
  font-family: var(--font-title);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.portfolio__card-niche {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  background: var(--white);
  padding: 100px 0;
}

.testimonials__header {
  margin-bottom: 56px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial__card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__quote-mark {
  font-family: var(--font-title);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--dark-bg);
  opacity: 0.08;
  position: absolute;
  top: 24px;
  left: 32px;
  user-select: none;
}

.testimonial__text {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial__avatar--1 { background: linear-gradient(135deg, #4A2C40, #6B3D55); }
.testimonial__avatar--2 { background: linear-gradient(135deg, #2A4A6A, #3D5A80); }

.testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.testimonial__stars svg {
  width: 14px;
  height: 14px;
  color: #F59E0B;
  fill: #F59E0B;
}

/* =============================================
   PRICING
============================================= */
.pricing {
  background: var(--off-white);
  padding: 100px 0;
}

.pricing__header {
  margin-bottom: 56px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin-inline: auto;
}

.pricing__card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing__card--featured {
  background: var(--dark-bg);
  border-color: transparent;
}

.pricing__featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-blue);
  color: var(--dark-bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing__plan-name {
  font-family: var(--font-title);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.pricing__card--featured .pricing__plan-name {
  color: var(--white);
}

.pricing__price {
  margin-bottom: 28px;
}

.pricing__price-from {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.pricing__card--featured .pricing__price-from {
  color: rgba(255,255,255,0.5);
}

.pricing__price-value {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark-bg);
  line-height: 1;
}

.pricing__card--featured .pricing__price-value {
  color: var(--white);
}

.pricing__price-range {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing__card--featured .pricing__price-range {
  color: rgba(255,255,255,0.5);
}

.pricing__divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.pricing__card--featured .pricing__divider {
  background: rgba(255,255,255,0.1);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing__card--featured .pricing__feature {
  color: rgba(255,255,255,0.7);
}

.pricing__feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing__card--featured .pricing__feature-check {
  background: rgba(138,170,200,0.2);
}

.pricing__feature-check svg {
  width: 10px;
  height: 10px;
  color: var(--light-blue);
}

.pricing__card .btn {
  width: 100%;
  justify-content: center;
}

.pricing__card--featured .btn--dark {
  background: var(--white);
  color: var(--dark-bg);
}

.pricing__card--featured .btn--dark:hover {
  background: var(--off-white);
}

/* =============================================
   CTA FINAL
============================================= */
.cta-final {
  background: var(--dark-bg);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(61,90,128,0.4) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.cta-final__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--footer-bg);
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo span {
  color: var(--light-blue);
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--light-blue);
  transition: color var(--transition);
}

.footer__social:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatIn 0.6s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: whatsapp-pulse 2.5s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes floatIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
============================================= */
@media (max-width: 900px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how__steps::before {
    display: none;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {
  .hero {
    padding: 120px 0 80px;
  }

  .numbers {
    padding: 60px 0;
  }

  .numbers__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .numbers__card {
    padding: 28px 24px;
  }

  .services,
  .how,
  .portfolio,
  .testimonials,
  .pricing {
    padding: 72px 0;
  }

  .cta-final {
    padding: 80px 0;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .services__card,
  .testimonial__card,
  .pricing__card {
    padding: 28px 24px;
  }

  .how__step {
    padding-left: 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
============================================= */
@media (max-width: 380px) {
  .container {
    padding-inline: 16px;
  }

  .hero__title {
    font-size: 2.25rem;
  }
}
