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

:root {
  --yellow: #F6B80C;
  --yellow-light: #FFF3D6;
  --yellow-dark: #D49A00;
  --yellow-glow: rgba(246,184,12,0.15);
  --dark: #0F0F14;
  --dark-2: #18181F;
  --dark-3: #22222B;
  --gray: #6B6B7B;
  --gray-light: #9B9BA8;
  --white: #FFFFFF;
  --off-white: #F5F4F2;
  --cream: #FCF9F2;
  --gradient-yellow: linear-gradient(145deg, #B88600 0%, #F6B80C 20%, #FFE066 40%, #FFF3B0 55%, #FFE066 70%, #F6B80C 85%, #B88600 100%);
  --gradient-dark: linear-gradient(180deg, #0F0F14 0%, #18181F 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SCROLLBAR ===== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-yellow);
  z-index: 1001;
  transition: width 0.15s linear;
}

/* ===== HEADER — minimal, transparent ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(180deg, rgba(10,10,15,0.95) 0%, rgba(30,25,15,0.85) 60%, transparent 100%);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 72px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.35)) brightness(1.2);
}

.header.scrolled .header-logo img {
  filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-nav a:hover {
  color: var(--yellow);
}

.header-nav a:hover::after {
  width: 100%;
}

/* scrolled state */
.header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header.scrolled .header-nav a {
  color: var(--dark-2);
}

.header.scrolled .header-nav a:hover {
  color: var(--yellow);
}

.header-cta {
  background: var(--gradient-yellow);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(246,184,12,0.2);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(246,184,12,0.35) !important;
}

.header-cta::after { display: none !important; }

/* mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-toggle span {
  background: var(--dark);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO — full bleed, bold typography ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0.55;
  filter: saturate(1.05) brightness(0.65);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 20% 30%, rgba(246,184,12,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(246,184,12,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(246,184,12,0.04) 0%, transparent 50%),
    linear-gradient(165deg,
      rgba(10,10,15,0.92) 0%,
      rgba(15,15,20,0.88) 35%,
      rgba(20,18,22,0.80) 60%,
      rgba(10,10,15,0.90) 100%
    );
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.006) 2px, rgba(255,255,255,0.006) 3px);
  pointer-events: none;
}

.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,184,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-accent-two {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,184,12,0.05) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 120px 28px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1.5px solid rgba(246,184,12,0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #F6B80C 0%, #FFE066 50%, #F6B80C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-through {
  text-decoration: line-through;
  opacity: 0.35;
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 8px;
}

.hero p strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.hero-highlight-box {
  background: rgba(246,184,12,0.04);
  border-left: 3px solid var(--yellow);
  padding: 18px 22px;
  margin: 22px 0 34px;
  max-width: 520px;
  border-radius: 0 12px 12px 0;
}

.hero-highlight-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.btn-yellow {
  background: var(--gradient-yellow);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(246,184,12,0.25);
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(246,184,12,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline-white:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(246,184,12,0.08);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-3px);
}

/* hero right side — portrait + floating cards */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 160px;
  animation: heroFloat 3.5s ease-in-out infinite;
}

.hero-float-card .float-icon {
  width: 40px;
  height: 40px;
  background: rgba(246,184,12,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--yellow);
}

.hero-float-card .float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-float-card .float-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #F6B80C 0%, #FFE066 40%, #F6B80C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-float-card .float-text span {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-float-card.card-top {
  top: -10px;
  left: -50px;
  animation-delay: 0s;
}

.hero-float-card.card-middle {
  top: 50%;
  right: -140px;
  animation-delay: 1.2s;
}

.hero-float-card.card-bottom {
  bottom: -10px;
  left: -40px;
  animation-delay: 2.4s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card.card-middle {
  animation: heroFloatMiddle 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes heroFloatMiddle {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 8px)) translateX(-5px); }
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(246,184,12,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(246,184,12,0.12);
  margin: 0 auto;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-portrait-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(246,184,12,0.18) 100%);
  pointer-events: none;
}



/* floating portrait — hidden fallback */
.hero-portrait {
  display: none;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
section {
  position: relative;
}

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

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-off-white {
  background: var(--off-white);
}

.section-pad {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--yellow);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-title-sm {
  font-size: 2rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== DIAGNÓSTICO — broken grid, varied cards ===== */
.diagnostic-wrap {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.diagnostic-header {
  text-align: center;
  margin-bottom: 60px;
}

.diagnostic-header .section-label {
  justify-content: center;
}

.diagnostic-header .section-desc {
  margin: 0 auto;
  font-size: 1.05rem;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}

.diagnostic-grid::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--yellow-dark), var(--yellow), var(--yellow-dark), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.diagnostic-grid .diagnostic-card::after {
  content: '';
  position: absolute;
  bottom: -38px;
  left: 50%;
  width: 2px;
  height: 22px;
  background: linear-gradient(to bottom, var(--yellow-dark), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.diagnostic-grid::before {
  content: 'Sintomas do mesmo problema';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--off-white);
  padding: 0 14px;
  z-index: 2;
  white-space: nowrap;
  opacity: 0.7;
}

.diagnostic-card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.diagnostic-card:nth-child(2) {
  background: var(--dark);
  color: var(--white);
}

.diagnostic-card:hover {
  transform: translateY(-4px);
}

.diagnostic-card:nth-child(1):hover { box-shadow: var(--shadow-lg); }
.diagnostic-card:nth-child(2):hover { box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.diagnostic-card:nth-child(3):hover { box-shadow: var(--shadow-lg); }

.diagnostic-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  background: var(--yellow-light);
  position: relative;
  z-index: 2;
}

.diagnostic-card:nth-child(2) .card-icon {
  background: rgba(246,184,12,0.15);
}

.diagnostic-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.diagnostic-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
}

.diagnostic-card:nth-child(2) p {
  color: rgba(255,255,255,0.55);
}

/* ===== COMO FUNCIONA — magazine spread ===== */
.how-wrap {
  padding: 120px 0;
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-desc {
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.how-step + .how-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--yellow), rgba(246,184,12,0.1));
  z-index: 0;
}

.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--yellow);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.how-step:hover .how-step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(246,184,12,0.3);
}

.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.how-cta {
  text-align: center;
  margin-top: 60px;
}

.how-cta p {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

/* ===== SERVIÇOS — alternating card styles ===== */
.services-wrap {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
}

.services-header {
  margin-bottom: 64px;
}

.services-header .section-desc {
  color: rgba(255,255,255,0.5);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.service-item {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246,184,12,0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-3px);
}

.service-item--light {
  background: var(--white);
  color: var(--dark);
}

.service-item--dark {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--white);
}

.service-item--featured {
  background: var(--gradient-yellow);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(246,184,12,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}

.service-item--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 160% 70% at 25% 15%, rgba(255,255,255,0.5) 0%, transparent 60%),
              radial-gradient(ellipse 100% 60% at 75% 100%, rgba(246,184,12,0.4) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255,216,77,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.service-item--featured > div {
  position: relative;
  z-index: 1;
}

.service-item--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
}

.service-item--full .service-icon {
  background: rgba(246,184,12,0.1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
}

.service-item--light .service-icon {
  background: var(--yellow-light);
}

.service-item--featured .service-icon {
  background: rgba(0,0,0,0.1);
}

.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.service-item .service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 14px;
  display: block;
}

.service-item--featured .service-tag {
  opacity: 0.8;
}

.service-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.service-item--dark p {
  color: rgba(255,255,255,0.5);
}

.service-item--featured p {
  color: rgba(0,0,0,0.6);
}

.service-item ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-item ul li {
  padding: 5px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item--light ul li { color: var(--dark-2); }
.service-item--dark ul li { color: rgba(255,255,255,0.7); }
.service-item--featured ul li { color: rgba(0,0,0,0.7); }

.service-item ul li::before {
  content: '→';
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
}

.service-item--featured ul li::before {
  color: var(--dark);
}

.service-delivery {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 14px;
  margin-bottom: 20px;
}

.service-item--dark .service-delivery {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
}

.service-item--featured .service-delivery {
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.5);
}

.service-item .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 12px 24px;
}

/* ===== ABOUT — editorial ===== */
.about-wrap {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 50%, #fff8f0 100%);
  position: relative;
  overflow: hidden;
}

.about-bg-accent {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,184,12,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.about-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.4;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(246,184,12,0.08), rgba(246,184,12,0.02));
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
}

.about-highlight-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
}

.about-highlight-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.5;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.about-right .pull-quote {
  display: flex;
  gap: 18px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 28px 0;
  align-items: flex-start;
}

.about-right .pull-quote .pull-quote-icon {
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.about-right .pull-quote p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 6px;
}

.about-right .pull-quote span {
  font-size: 0.8rem;
  color: var(--gray);
}



/* ===== PODCAST ===== */
.podcast-wrap {
  padding: 120px 0;
  background: var(--off-white);
}

.podcast-header {
  text-align: center;
  margin-bottom: 56px;
}

.podcast-header .section-title {
  max-width: 700px;
  margin: 0 auto;
}

.podcast-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.podcast-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.podcast-host {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 16px 0 24px;
  padding: 12px 16px;
  background: rgba(246,184,12,0.04);
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
}

.podcast-host strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.podcast-host span {
  font-size: 0.78rem;
  color: var(--gray);
}

.podcast-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.podcast-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}

.podcast-metric {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.podcast-metric h4 {
  font-size: 0.95rem;
  color: var(--yellow);
  margin-bottom: 4px;
}

.podcast-metric p {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

.podcast-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 20px;
}

.podcast-brand-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.podcast-brand-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.podcast-brand-card img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.podcast-brand-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.podcast-brand-links span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.podcast-videos {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.podcast-videos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.podcast-videos-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.podcast-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.yt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}

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

.yt-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--off-white);
}

.yt-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-card-thumb img {
  transform: scale(1.05);
}

.yt-card-body {
  padding: 12px 14px 14px;
}

.yt-card-body h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card-body .yt-meta {
  font-size: 0.7rem;
  color: var(--gray);
}

.podcast-videos-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  color: var(--gray);
  font-size: 0.9rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.12);
}

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

/* ===== CTA — clean dark ===== */
.cta-wrap {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,184,12,0.04), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-cancel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-cancel:hover {
  background: rgba(255,255,255,0.03);
}

.cta-cancel .x {
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTATO ===== */
.contact-wrap {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: var(--yellow-light);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
  margin: 0;
}

.contact-form-block {
  background: var(--off-white);
  padding: 44px;
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-2);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(246,184,12,0.08);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(246,184,12,0.12));
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-yellow);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(246,184,12,0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(246,184,12,0.35);
}

/* ===== FOOTER DEV BAND ===== */
.footer-dev {
  background: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-dev .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-dev-devider {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.08);
}

.footer-dev a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #888;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-dev a:hover {
  color: #333;
}

.footer-dev a img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.footer-dev a:hover img {
  opacity: 0.8;
}

.footer-dev-credit {
  color: #bbb;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ===== ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
}

/* Stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 28px 60px;
  }

  .hero-right { align-items: center; }
  .hero-portrait-frame { max-width: 240px; }
  .hero-float-card { min-width: 130px; padding: 10px 14px; gap: 10px; }
  .hero-float-card.card-top { left: -30px; }
  .hero-float-card.card-middle { right: -55px; }
  .hero-float-card.card-bottom { left: -20px; }
  .hero-float-card .float-text strong { font-size: 1rem; }
  .hero-float-card .float-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .hero h1 { font-size: 2.4rem; }

  .diagnostic-header { grid-template-columns: 1fr; gap: 16px; }

  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .how-step + .how-step::before { display: none; }

  .podcast-body { grid-template-columns: 1fr; gap: 40px; }
  .podcast-photo img { border-radius: 10px; }
  .podcast-header .section-title { font-size: 1.8rem; }
  .podcast-videos-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-title { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2rem; }
}

/* Smartphones */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }
  img { max-width: 100%; height: auto; }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(10,10,15,0.97) 0%, rgba(30,22,8,0.97) 60%, rgba(10,10,15,0.97) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: none;
    z-index: 1001;
    padding: 20px;
  }

  .header-nav.open { display: flex; animation: fadeIn 0.25s ease; }

  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .header-nav a {
    font-size: 1.05rem;
    padding: 14px 32px;
    min-width: 220px;
    text-align: center;
    color: rgba(255,255,255,0.7) !important;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .header-nav a:hover {
    color: var(--yellow) !important;
    background: rgba(255,255,255,0.04);
  }

  .mobile-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 100px 20px 40px;
  }

  .hero-left { text-align: center; }
  .hero-tag { font-size: 0.6rem; margin-bottom: 18px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { max-width: 100%; font-size: 0.88rem; }
  .hero-highlight-box { max-width: 100%; margin: 14px 0 22px; padding: 14px 16px; }
  .hero-highlight-box p { font-size: 0.8rem; }
  .hero-buttons { justify-content: center; flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 14px 20px; }

  .hero-right { flex-direction: column; align-items: center; }
  .hero-portrait-frame { max-width: 180px; }
  .hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-float-card { display: none; }

  .scroll-indicator { display: none; }

  section { overflow: hidden; }

  .section-pad,
  .diagnostic-wrap,
  .how-wrap,
  .services-wrap,
  .about-wrap,
  .podcast-wrap { padding: 60px 0; }
  .cta-wrap { padding: 50px 0; }
  .contact-wrap { padding: 60px 0; }

  .section-title { font-size: 1.5rem; }
  .section-title br { display: none; }
  .section-desc { font-size: 0.85rem; }

  .diagnostic-header .section-desc { font-size: 0.85rem; }

  .diagnostic-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 0; }
  .diagnostic-grid::before,
  .diagnostic-grid::after,
  .diagnostic-card::after { display: none; }
  .diagnostic-card { padding: 24px 20px; overflow: hidden; }

  .how-header { margin-bottom: 28px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-step { padding: 22px; }
  .how-step-num { width: 40px; height: 40px; font-size: 0.95rem; }
  .how-step h3 { font-size: 1rem; }
  .how-step p { font-size: 0.82rem; }
  .how-cta { margin-top: 24px; }
  .how-cta p { font-size: 1rem; }

  .services-header { margin-bottom: 28px; }
  .services-header .section-desc { font-size: 0.85rem; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-item { padding: 24px 20px; }
  .service-item--full { grid-template-columns: 1fr; gap: 0; }
  .service-item--full > div:first-child { padding: 24px 20px; }
  .service-item--full > div:last-child { padding: 0 20px 24px; }
  .service-item--full ul { margin-bottom: 0; }
  .service-icon img { max-width: 40px; }
  .service-item h3 { font-size: 1.05rem; }
  .service-item p { font-size: 0.82rem; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-title { font-size: 1.5rem; }
  .about-title br { display: inline; }
  .about-highlight { padding: 14px 16px; flex-direction: column; text-align: center; gap: 6px; }
  .about-highlight-num { font-size: 1.4rem; }
  .about-highlight-text { font-size: 0.95rem; }
  .about-right p { font-size: 0.95rem; }

  .podcast-header { margin-bottom: 28px; }
  .podcast-header .section-title { font-size: 1.4rem; }
  .podcast-photo img { border-radius: 8px; }
  .podcast-content p { font-size: 0.88rem; margin-bottom: 14px; }
  .podcast-metrics { grid-template-columns: 1fr; gap: 8px; margin: 16px 0; }
  .podcast-metric { padding: 14px; }
  .podcast-metric h4 { font-size: 0.85rem; }
  .podcast-metric p { font-size: 0.72rem; }
  .podcast-cta-text { font-size: 0.95rem; margin-top: 14px; }
  .podcast-host { margin: 12px 0 20px; padding: 10px 14px; }
  .podcast-host strong { font-size: 0.85rem; }
  .podcast-host span { font-size: 0.72rem; }

  .podcast-brand-bar { flex-direction: row; text-align: left; padding: 14px 18px; gap: 14px; flex-wrap: wrap; }
  .podcast-brand-card img { max-height: 44px; }
  .podcast-brand-links { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
  .podcast-brand-links span { font-size: 0.78rem; }
  .podcast-videos { margin-top: 32px; padding-top: 28px; }
  .podcast-videos-header h3 { font-size: 1rem; }
  .podcast-videos-grid { grid-template-columns: 1fr; gap: 10px; }
  .podcast-videos-placeholder { padding: 20px; font-size: 0.82rem; }
  .yt-card-body { padding: 10px 12px 12px; }
  .yt-card-body h4 { font-size: 0.75rem; }
  .yt-card-body .yt-meta { font-size: 0.65rem; }

  .cta-inner { padding: 0 16px; }
  .cta-inner .section-title { font-size: 1.3rem; }
  .cta-checks { grid-template-columns: 1fr; gap: 10px; }
  .cta-cancel { font-size: 0.85rem; padding: 12px 16px; }
  .cta-inner p { font-size: 0.88rem; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }
  .contact-info .section-label { justify-content: center; }
  .contact-info-cards { gap: 12px; }
  .contact-card { padding: 14px 16px; }
  .contact-card h4 { font-size: 0.85rem; }
  .contact-card p { font-size: 0.78rem; }
  .contact-form-block { padding: 22px 18px; }
  .contact-form-block label { font-size: 0.82rem; }
  .contact-form-block input,
  .contact-form-block textarea { font-size: 0.88rem; padding: 12px 14px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-brand img { max-height: 40px; }
  .footer-brand p { max-width: 100%; font-size: 0.82rem; }
  .social-links { justify-content: center; }
  .footer-links h4 { font-size: 0.9rem; }
  .footer-links a { font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; font-size: 0.75rem; }
  .footer-bottom-links { justify-content: center; gap: 12px; }
  .footer-dev { padding: 14px 0; }
  .footer-dev .container { gap: 14px; }
  .footer-dev a { font-size: 0.75rem; }
  .footer-dev a img { height: 18px; }
  .footer-dev-credit { font-size: 0.68rem; }
  .footer-dev-devider { height: 12px; }

  .back-top { width: 40px; height: 40px; right: 16px; bottom: 16px; }
}

/* Small phones */
@media (max-width: 420px) {
  .container { padding: 0 16px; }

  .hero-grid { padding: 90px 16px 32px; gap: 20px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-tag { font-size: 0.55rem; padding: 5px 12px; }
  .hero-portrait-frame { max-width: 150px; }
  .hero-highlight-box { padding: 10px 14px; }
  .hero-highlight-box p { font-size: 0.75rem; }

  .section-title { font-size: 1.3rem; }
  .section-label { font-size: 0.6rem; padding: 5px 12px; }

  .btn { font-size: 0.8rem; padding: 12px 20px; }
  .btn-sm { font-size: 0.72rem; padding: 9px 16px; }

  .diagnostic-card { padding: 16px; }
  .diagnostic-card h3 { font-size: 0.9rem; }
  .diagnostic-card p { font-size: 0.8rem; }

  .how-step { padding: 18px; }

  .service-item { padding: 20px 16px; }
  .service-item h3 { font-size: 0.95rem; }

  .about-title { font-size: 1.3rem; }
  .about-highlight { padding: 12px 14px; }
  .about-right .pull-quote { padding: 14px; }

  .podcast-photo img { border-radius: 6px; }
  .podcast-metric { padding: 12px; }
  .podcast-host { margin: 8px 0 14px; padding: 8px 12px; }
  .podcast-host strong { font-size: 0.8rem; }
  .podcast-host span { font-size: 0.68rem; }

  .podcast-brand-bar { flex-direction: column; text-align: center; }
  .podcast-brand-links { flex-direction: column; }

  .cta-inner .section-title { font-size: 1.2rem; }
  .cta-cancel { font-size: 0.8rem; padding: 10px 14px; }

  .contact-form-block { padding: 18px 14px; }

  .footer-dev { padding: 10px 0; }
  .footer-dev .container { gap: 10px; }
  .footer-dev a { font-size: 0.7rem; gap: 6px; }
  .footer-dev a img { height: 16px; opacity: 1; }
  .footer-dev-credit { font-size: 0.62rem; }
  .footer-dev-devider { height: 10px; }
}
