:root {
  --bg: #ffffff;
  --card: #ffffff;
  --primary: #d21f7e;      /* koyu pembe */
  --primary-2: #f15a2a;    /* turuncu */
  --secondary: #00bcd4;    /* logo mavisi */
  --accent-green: #3bb14a;
  --accent-yellow: #f6b900;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', 'Manrope', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.hero { padding: 32px 6vw 72px; background: #ffffff; }
.nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.brand { font-weight: 700; letter-spacing: 0.4px; color: var(--secondary); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.hero-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: center; }
.hero-copy h1 { margin: 12px 0 16px; font-size: clamp(38px, 6vw, 58px); line-height: 1.05; }
.hero-copy .lede { font-size: 21px; color: var(--muted); max-width: 680px; line-height: 1.5; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: 22px; color: var(--primary); font-weight: 800; margin-bottom: 8px; display: block; }
.hero-trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.hero-trust p { font-size: 22px; color: #1e293b; margin-bottom: 6px; font-weight: 700; display: flex; align-items: center; gap: 12px; letter-spacing: -0.02em; }
.hero-trust p::after { content: ""; flex-grow: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); margin-left: 10px; }
.stats-row { display: flex; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat strong { 
  font-size: 38px; 
  color: var(--primary); 
  line-height: 1; 
  font-weight: 900; 
  letter-spacing: -1.5px;
}
.stat span { 
  font-size: 14px; 
  color: var(--muted); 
  font-weight: 600;
  margin-top: 4px;
}
.cta-row { display: flex; gap: 12px; margin: 18px 0; flex-wrap: wrap; }

.primary, .ghost { padding: 12px 16px; border-radius: 12px; font-weight: 600; border: 1px solid transparent; display: inline-block; text-align: center; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: var(--shadow); }
.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(210, 31, 126, 0.25); filter: brightness(1.1); }
.primary:active { transform: translateY(0) scale(0.98); filter: brightness(0.95); }
.primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
.primary.block { width: 100%; }
.ghost { border-color: var(--border); color: var(--text); background: #ffffff; }

.hero-card .card { background: #ffffff; padding: 22px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.hero-card .card-eyebrow { font-size: 13px; letter-spacing: 0.5px; color: var(--primary); text-transform: uppercase; }
.hero-card h3 { margin: 6px 0 10px; }
.hero-card .card-title { font-size: 28px; color: var(--primary); font-weight: 800; }
.card-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(210,31,126,0.12); display: inline-flex; align-items: center; justify-content: center; margin: 6px 0 4px; }
.card-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.hero-card ul { padding-left: 18px; color: var(--muted); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.badge { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: #ffffff; color: var(--muted); font-size: 13px; }

.section-header { 
  text-align: center; 
  margin-bottom: 56px; 
  padding: 0 10px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.section-header h2 { 
  font-size: clamp(44px, 7vw, 64px); 
  font-weight: 900; 
  letter-spacing: -0.04em; 
  line-height: 1.05; 
  margin: 0; 
  color: #0f172a;
}

/* Farklı Bölüm Başlıkları ve Renkleri */
section:nth-of-type(1) .section-header h2 { color: var(--primary); }   /* Pembe */
section:nth-of-type(2) .section-header h2 { color: var(--secondary); } /* Mavi */
section:nth-of-type(3) .section-header h2 { color: var(--primary-2); } /* Turuncu */
section:nth-of-type(4) .section-header h2 { color: var(--accent-green); } /* Yeşil */
section:nth-of-type(5) .section-header h2 { color: var(--secondary); }
.faq .section-header h2 { color: var(--accent-yellow); }
.faq .section-header::before { background: var(--accent-yellow); }

.section-header p { 
  font-size: 23px; 
  color: #64748b; 
  margin-top: 20px; 
  font-weight: 500; 
  max-width: 820px;
  line-height: 1.5;
}

.section-header::before { 
  content: ""; 
  display: block; 
  width: 60px; 
  height: 6px; 
  background: currentColor; 
  margin-bottom: 22px; 
  border-radius: 999px; 
}

/* Override for inherited color from H2 to the line */
section:nth-of-type(1) .section-header::before { background: var(--primary); }
section:nth-of-type(2) .section-header::before { background: var(--secondary); }
section:nth-of-type(3) .section-header::before { background: var(--primary-2); }
section:nth-of-type(4) .section-header::before { background: var(--accent-green); }
.process .section-header::before { background: var(--accent-green); }
.process .section-header h2 { color: var(--accent-green); }

.section-header.different h2 { 
  color: var(--accent-yellow); 
  font-size: clamp(34px, 6vw, 48px); 
}

.section-header.different p { 
  color: var(--text); 
}

.section-header.different::before { 
  background: var(--accent-yellow); 
  width: 140px; 
}

.different-approach { padding: 40px 6vw; background: #ffffff; }
.different-approach .line { width: 120px; height: 6px; background: var(--accent-yellow); margin-bottom: 24px; border-radius: 999px; }
.different-approach h2 { color: var(--accent-yellow); font-size: clamp(36px, 6vw, 52px); line-height: 1.1; font-weight: 800; margin: 0 0 32px; }
.different-approach p { color: var(--text); font-size: 19px; font-weight: 600; line-height: 1.4; margin-bottom: 24px; }

section { padding: 60px 6vw; }

.social { background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.quote { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; background: var(--card); box-shadow: var(--shadow); }
.quote .name { font-weight: 600; margin-top: 10px; }
.quote .role { color: var(--muted); font-size: 14px; }

.testimonial { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; align-items: center; padding: 60px 6vw; background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-image img { width: 100%; max-width: 540px; display: block; margin: 0 auto; object-fit: contain; }
.testimonial-copy { position: relative; padding: 12px 0 0 0; }
.testimonial-copy p { font-size: 20px; line-height: 1.5; color: var(--text); margin: 0 0 12px; }
.testimonial-author { font-weight: 600; color: var(--muted); }
.quote-icon { position: absolute; left: -6px; top: -10px; font-size: 52px; color: #f15a2a; line-height: 1; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d0d7e2; cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--primary); width: 24px; border-radius: 6px; }
.nav-btn { background: #fff; border: 1px solid var(--border); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); transition: all 0.2s; }
.nav-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.problem {
  position: relative;
  padding: 100px 6vw;
  background-color: #ffffff;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ffffff;
  top: -200px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.problem .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  text-align: center;
}

.problem .section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.problem .section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.problem .problem-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pill-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 3;
}

.pill {
  position: relative;
  padding: 24px 34px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  color: var(--text);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  width: 100%;
}

/* Staggered offsets for an "intertwined" feel */
.pill:nth-child(1) { transform: translateX(-10px); }
.pill:nth-child(2) { transform: translateX(10px); z-index: 4; }
.pill:nth-child(3) { transform: translateX(-5px); }
.pill:nth-child(4) { transform: translateX(15px); z-index: 4; }
.pill:nth-child(5) { transform: translateX(0px); }

.pill:hover {
  transform: translateY(-8px) translateX(20px) scale(1.05) !important;
  box-shadow: 0 25px 50px rgba(210,31,126,0.15);
  background: #ffffff;
  z-index: 10;
}

.problem-image {
  position: relative;
  padding: 0;
  margin-left: -12%; /* Pull image towards pills */
  z-index: 1;
}

.problem-image::before {
  display: none;
}

.problem-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: all 0.6s ease;
  filter: none;
}

.problem-image:hover img {
  transform: scale(1.03) rotate(1deg);
  filter: grayscale(0);
}

@media (max-width: 1024px) {
  .pill { width: 100%; transform: none !important; }
  .problem-image { margin-left: 0; margin-top: 40px; }
  .problem .problem-content { grid-template-columns: 1fr; }
  .problem { padding: 60px 6vw; }
}

.programs {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.programs::before {
  display: none;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.program {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.program:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(0,188,212,0.1);
}

.program-head { 
  display: flex; 
  flex-direction: column;
  gap: 16px; 
  align-items: center; 
  text-align: center;
}

.program-icon-wrap {
  position: relative;
  width: 180px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -10px;
}

.program-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
}

.program h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.program .ages { 
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0,188,212,0.08);
  color: var(--secondary); 
  font-weight: 700; 
  font-size: 18px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.program ul { 
  list-style: none;
  padding: 0; 
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.program li {
  color: var(--muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.program li::before {
  content: "→";
  color: var(--secondary);
  font-weight: 800;
  font-size: 18px;
}

.program .ghost { 
  margin-top: auto;
  padding: 18px;
  background: #f8fafc;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}

.program:hover .ghost {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 10px 20px rgba(0,188,212,0.2);
}

.process {
  padding: 100px 6vw;
  background-color: #ffffff;
}

.process-steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px; 
  list-style: none; 
  padding: 0; 
  margin: 48px auto 0;
  max-width: 900px;
  position: relative;
}

/* Remove timeline connector for 2x2 grid */
.process-steps::before { display: none !important; }

.process-steps li { 
  position: relative;
  background: #ffffff;
  border: 1px solid #f1f5f9; 
  border-radius: 32px; 
  padding: 32px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.process-steps li:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(0,188,212,0.2);
}

.process-icon { 
  width: 140px; 
  height: 140px; 
  border-radius: 40px;
  background: #fff;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: all 0.3s;
  overflow: hidden;
}

.process-icon img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.process-steps li:nth-child(1) .process-icon { background: rgba(210,31,126,0.05); color: var(--primary); }
.process-steps li:nth-child(2) .process-icon { background: rgba(0,188,212,0.05); color: var(--secondary); }
.process-steps li:nth-child(3) .process-icon { background: rgba(246,185,0,0.05); color: #f6b900; }
.process-steps li:nth-child(4) .process-icon { background: rgba(76,175,80,0.05); color: #4CAF50; }

.process-icon svg { 
  width: 72px; 
  height: 72px; 
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-text { 
  font-size: 24px; 
  font-weight: 600; 
  color: var(--text);
  line-height: 1.6;
}

.cta { background: linear-gradient(135deg, rgba(246,185,0,0.12), rgba(210,31,126,0.08)); }
.cta-card { border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px); padding: 28px 32px; background: #ffffff; display: grid; gap: 8px; max-width: 980px; margin: 0 auto; box-shadow: var(--shadow); }
.cta-card h2 { font-size: 44px; font-weight: 900; margin: 0 0 4px; color: #0f172a; letter-spacing: -0.04em; line-height: 1; }
.cta-card p:not(.eyebrow) { font-size: 22px; color: var(--muted); line-height: 1.35; margin: 0 0 8px; }
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 40px; 
  align-items: center; 
  position: relative;
  z-index: 1;
}

.hero-visual { 
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img { 
  width: 100%; 
  max-width: 860px; 
  border-radius: 0; 
  box-shadow: none; 
  border: none; 
  animation: heroFloat 8s ease-in-out infinite;
  display: block;
  z-index: 2;
}

.hero-visual::before {
  display: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(1deg); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-copy, .hero-trust { display: flex; flex-direction: column; align-items: center; }
  .cta-row { justify-content: center; }
  .badge-row { justify-content: center; }
}
label { display: flex; flex-direction: column; gap: 4px; font-weight: 700; font-size: 18px; color: #1e293b; }
.form-grid { display: grid; gap: 16px; margin-top: 12px; }
input:not([type="checkbox"]), textarea, select { border-radius: 12px; border: 1.5px solid var(--border); background: #f8fafc; color: var(--text); padding: 10px 18px; font-size: 17px; transition: all 0.2s; }
input:not([type="checkbox"]):focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); background: #ffffff; box-shadow: 0 0 0 4px rgba(210, 31, 126, 0.1); }
input:not([type="checkbox"]), textarea, select { -webkit-appearance: none; appearance: none; }
select { background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%); background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 44px; cursor: pointer; }
input::placeholder, textarea::placeholder, select::placeholder { color: #94a3b8; opacity: 1; }
input:-webkit-autofill, textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
}
.consent { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; font-size: 16px; color: #64748b; margin: 0; cursor: pointer; }
.consent input { margin-top: 3px; width: 22px; height: 22px; accent-color: var(--primary); cursor: pointer; -webkit-appearance: checkbox; appearance: checkbox; padding: 0; border: none; background: transparent; flex-shrink: 0; }
.consent-text { line-height: 1.3; display: inline-block; }
.consent-link { color: var(--secondary); text-decoration: underline; font-weight: 600; }
.consent-stack { display: grid; gap: 8px; margin-top: 20px; margin-bottom: 24px; }
.consent-plain { color: var(--text); font-weight: 500; }
.consent.error { color: #c0392b; }
.consent.error input { accent-color: #c0392b; }
.form-hint { color: #94a3b8; font-size: 9px; margin: 4px 4px 0; text-align: left; opacity: 0.7; }
#leadForm .primary.block { padding: 18px; font-size: 18px; }
.thankyou { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; background: #f0fdf4; text-align: center; box-shadow: var(--shadow); }
.thankyou h3 { color: #166534; font-size: 28px; margin: 0 0 12px; }
.thankyou p { color: #15803d; font-size: 18px; line-height: 1.5; margin: 0 0 24px; font-weight: 500; }
.call-now-btn { background: linear-gradient(135deg, #22c55e, #16a34a) !important; color: #fff !important; display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px !important; font-size: 20px !important; border-radius: 50px !important; font-weight: 700 !important; text-decoration: none !important; box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3); animation: callPulse 2s infinite; }
@keyframes callPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.faq-list { display: grid; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; background: var(--card); box-shadow: var(--shadow); }
.faq-item h4 { margin: 0 0 6px; }
.faq-item p { margin: 0; color: var(--muted); }

.video-section { padding-top: 20px; }
.video-wrapper { display: none; }
.video-thumb { position: relative; display: block; width: min(960px, 100%); margin: 0 auto; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #000; }
.video-hero .video-thumb { background: url('https://img.youtube.com/vi/nnNlBuH7RwI/maxresdefault.jpg') center/cover no-repeat; }
.video-expert .video-thumb { background: url('https://img.youtube.com/vi/LdI1oBk8tbY/maxresdefault.jpg') center/cover no-repeat; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 80px; height: 80px; border-radius: 50%; background: rgba(0,0,0,0.45); color: #fff; font-size: 34px; display: grid; place-items: center; backdrop-filter: blur(2px); transition: transform 0.2s ease, background 0.2s ease; }
.video-thumb:hover .play-btn { transform: scale(1.05); background: rgba(210,31,126,0.65); }

.footer { padding: 28px 6vw 36px; border-top: 1px solid var(--border); background: #f9fafc; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); align-items: center; }
.footer-links a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 10px; border: 1px solid var(--border); background: #fff; color: var(--text); text-decoration: none; box-shadow: var(--shadow); }
.footer-links svg { width: 18px; height: 18px; fill: var(--secondary); flex-shrink: 0; }

.modal-backdrop { 
  position: fixed; 
  inset: 0; 
  background: rgba(15, 27, 43, 0.5); 
  display: grid; 
  place-items: center; 
  z-index: 10000; 
  backdrop-filter: blur(12px); 
  padding: 24px; 
  transition: opacity 0.4s ease; 
}
.modal-backdrop[hidden] { display: none; }
.modal { 
  position: relative; 
  max-width: 460px; 
  width: 100%; 
  background: #ffffff; 
  border: 1px solid rgba(0,0,0,0.05); 
  border-radius: 28px; 
  padding: 36px; 
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3); 
  display: flex;
  flex-direction: column;
  gap: 16px; 
  animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
@keyframes modalPop {
  from { transform: scale(0.9) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal .eyebrow { 
  font-size: 13px; 
  font-weight: 800;
  display: inline-block;
  background: #fdf2f8;
  color: #db2777;
  padding: 6px 14px;
  border-radius: 99px;
  margin-top: -12px; 
  margin-bottom: 12px; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}
.modal h3 { 
  font-size: 28px; 
  font-weight: 800; 
  line-height: 1.15; 
  color: var(--text); 
  margin: 0 0 8px; 
}
.modal .lede { 
  color: var(--muted); 
  margin: 0; 
  font-size: 16px; 
  line-height: 1.5; 
  font-weight: 500;
}
.modal form { display: flex; flex-direction: column; gap: 16px; }
.modal label { font-size: 15px; color: var(--text); }
.modal input { 
  padding: 14px 18px; 
  font-size: 17px; 
  border-radius: 12px; 
  margin-top: 4px;
  border: 2px solid #f1f5f9;
}
.modal .primary.block { 
  padding: 16px; 
  font-size: 18px; 
  border-radius: 12px; 
  margin-top: 4px;
}
.modal .form-hint { 
  font-size: 13px; 
  text-align: center; 
  margin-top: 4px;
}
@media (max-width: 500px) {
  .modal-backdrop { padding: 12px; }
  .modal { padding: 24px 20px; border-radius: 24px; gap: 12px; }
  .modal h3 { font-size: 22px; }
  .modal .lede { font-size: 14px; }
  .modal .eyebrow { font-size: 12px; padding: 4px 10px; margin-top: -6px; }
  .modal input { padding: 12px 14px; font-size: 15px; }
  .modal .primary.block { padding: 14px; font-size: 16px; }
  .modal-close { top: 12px; right: 12px; width: 32px; height: 32px; font-size: 18px; }
}
.modal-disclaimer {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
  padding: 0 10px;
}
.modal-disclaimer a {
  text-decoration: underline;
  color: var(--muted);
  font-weight: 500;
}
.modal-close { 
  position: absolute; 
  top: 24px; 
  right: 24px; 
  background: #f8fafc; 
  border: 1px solid var(--border); 
  color: var(--muted); 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  cursor: pointer; 
  display: grid; 
  place-items: center; 
  font-size: 24px; 
  transition: all 0.3s; 
}
.modal-close:hover { 
  background: var(--primary); 
  color: #fff; 
  border-color: var(--primary);
  transform: rotate(90deg);
}

.more-reviews { text-align: center; margin-top: 32px; }
.floating-phone { 
  position: fixed; 
  bottom: 110px; 
  right: 30px; 
  width: 64px; 
  height: 64px; 
  background: var(--primary); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
  color: #fff; 
  box-shadow: 0 12px 24px rgba(210, 31, 126, 0.4); 
  z-index: 1000; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.floating-phone:hover { 
  transform: scale(1.1) rotate(-10deg); 
  background: var(--primary-2);
}

.floating-phone svg { 
  width: 30px; 
  height: 30px; 
  fill: currentColor; 
}

.floating-wa { 
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  width: 64px; 
  height: 64px; 
  background: #25d366; 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
  color: #fff; 
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4); 
  z-index: 1000; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa:hover { 
  transform: scale(1.1) rotate(10deg); 
  background: #20ba59;
}

.floating-wa svg { 
  width: 36px; 
  height: 36px; 
  fill: #ffffff; 
}

@media (max-width: 720px) {
  .nav-actions { display: none; }
  .cta-card { padding: 18px; }
  .floating-wa { bottom: 20px; right: 15px; width: 56px; height: 56px; }
  .floating-phone { bottom: 85px; right: 15px; width: 56px; height: 56px; }
  .process-steps { gap: 12px; }
  .process-steps li { padding: 20px 12px; border-radius: 20px; }
  .process-icon { width: 80px; height: 80px; border-radius: 20px; }
  .process-steps li h3, .process-text { font-size: 16px; line-height: 1.3; }
  .hero-copy h1 { font-size: 32px; }
  .hero-copy .lede { font-size: 18px; }
  .section-header h2 { font-size: 36px; }
  .section-header p { font-size: 18px; }
  .cta-card h2 { font-size: 32px; }
  .cta-card p:not(.eyebrow) { font-size: 18px; }
  .different-approach h2 { font-size: 32px; }
  .testimonial-copy p { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero { padding: 24px 4vw 48px; }
  .stats-row { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .stat strong { font-size: 28px; }
  .pill { padding: 16px 20px; font-size: 16px; }
  .program { padding: 24px; }
  .program h3 { font-size: 24px; }
  .program li { font-size: 16px; }
}
