:root {
  --bg: #fef9ff;
  --surface: #f3e8ff;
  --accent: #9b59b6;
  --text: #2d1b4e;
  --muted: #8e7aaa;
  --border: #e8d5f5;
  --pink: #fce4ec;
  --blue: #e0f7fa;
  --white: #ffffff;
  --dark: #1a0e2e;
  --accent-light: #d4a5e8;
  --accent-dark: #7b3f9e;
  --gold: #c49b2e;
  --success: #2e7d5a;
  --error: #c0392b;
  --shadow-sm: 0 2px 8px rgba(45,27,78,0.06);
  --shadow-md: 0 4px 20px rgba(45,27,78,0.1);
  --shadow-lg: 0 8px 40px rgba(45,27,78,0.14);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

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

ul {
  list-style: none;
}

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

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(155,89,182,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(155,89,182,0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 12px 0;
  background: rgba(254,249,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(254,249,255,0.92);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}

.logo-svg {
  width: 160px;
  height: 36px;
}

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

.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--surface);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--accent);
}

.header-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  white-space: nowrap;
  transition: all var(--transition);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(155,89,182,0.3);
  color: var(--white);
}

.pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes pulseSubtle {
  0%, 100% { box-shadow: 0 2px 8px rgba(155,89,182,0.2); }
  50% { box-shadow: 0 4px 20px rgba(155,89,182,0.4); }
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.mobile-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 18px;
}

.mobile-nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  margin-top: 12px;
}

.hero-section {
  padding: 140px 0 80px;
  background: var(--bg);
}

.hero-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.hero-card-left {
  background: var(--dark);
  color: var(--white);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.hero-card-left h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-card-left p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-card-right {
  margin-left: -60px;
  position: relative;
  z-index: 3;
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 28px 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.trust-strip-section {
  padding: 32px 0;
  background: var(--surface);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
}

.trust-strip strong {
  color: var(--accent);
  font-weight: 700;
}

.trust-divider {
  color: var(--border);
  font-weight: 300;
}

.mentor-section {
  padding: 100px 0;
  background: var(--dark);
}

.mentor-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mentor-photo-wrap {
  width: 240px;
  height: 240px;
  margin: 0 auto 32px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.mentor-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--dark);
}

.mentor-name {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.mentor-title {
  color: var(--accent-light);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}

.mentor-quote {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 24px;
  position: relative;
}

.mentor-quote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -12px;
  font-size: 60px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.mentor-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.mentor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

.mentor-badge svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

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

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

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

.blog-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--surface);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.blog-card-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.blog-link:hover {
  gap: 10px;
}

.reviews-section {
  padding: 100px 0;
  background: var(--surface);
}

.reviews-masonry {
  columns: 3;
  column-gap: 24px;
}

.review-card {
  break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.review-card-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}

.review-card-accent .review-text {
  color: rgba(255,255,255,0.9);
}

.review-card-accent .review-stars svg {
  color: #ffd700;
}

.review-card-accent .review-badge {
  color: rgba(255,255,255,0.7);
}

.review-card-accent strong {
  color: var(--white);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #ffa726;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.review-badge svg {
  color: var(--success);
}

.process-section {
  padding: 100px 0;
  background: var(--bg);
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  margin-bottom: 48px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(155,89,182,0.3);
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
}

.personas-section {
  padding: 100px 0;
  background: var(--surface);
}

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

.persona-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.persona-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.persona-body {
  padding: 24px;
}

.persona-body h3 {
  margin-bottom: 4px;
}

.persona-role {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.persona-body p {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.persona-helped {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}

.personas-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.benefits-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-section {
  padding: 100px 0;
  background: var(--surface);
}

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

.faq-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.faq-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.faq-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.faq-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap .section-header {
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--accent);
}

.form-group input.error {
  border-color: var(--error);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  min-height: 16px;
}

.pill-radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-radio {
  cursor: pointer;
}

.pill-radio input {
  display: none;
}

.pill-label {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
  cursor: pointer;
}

.pill-radio input:checked + .pill-label {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.pill-label:hover {
  border-color: var(--accent-light);
}

.form-checkbox {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 17px;
  padding: 16px 32px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  color: var(--success);
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
}

.contact-alt {
  text-align: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-alt p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.contact-phone-link:hover {
  color: var(--accent-dark);
}

.site-footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: inline-block;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-col li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-light);
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  padding: 4px 8px;
  transition: color var(--transition);
}

.cookie-settings-btn:hover {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(155,89,182,0.4);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(155,89,182,0.5);
  color: var(--white);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(155,89,182,0.4); }
  50% { box-shadow: 0 6px 30px rgba(155,89,182,0.6); }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  min-height: 48px;
  min-width: 100px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cookie-btn-settings:hover {
  background: var(--surface);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cookie-btn-reject:hover {
  background: var(--surface);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h4 {
  font-size: 20px;
  margin-bottom: 8px;
  padding-right: 40px;
}

.cookie-modal > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 50%;
  transition: background var(--transition);
}

.cookie-modal-close:hover {
  background: var(--surface);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.cookie-option:hover {
  border-color: var(--accent-light);
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-option-text strong {
  font-size: 14px;
}

.cookie-option-text small {
  font-size: 12px;
  color: var(--muted);
}

.cookie-save-btn {
  width: 100%;
}

.legal-section {
  padding: 140px 0 80px;
  background: var(--bg);
}

.legal-container {
  max-width: 800px;
}

.legal-container h1 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.legal-container h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.legal-container h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-container p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.7;
}

.legal-container ul {
  margin-bottom: 14px;
  padding-left: 24px;
  list-style: disc;
}

.legal-container li {
  margin-bottom: 6px;
  line-height: 1.6;
  color: var(--text);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-cards {
    grid-template-columns: 1fr 0.8fr;
  }
  
  .hero-card-right {
    margin-left: -40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .header-nav {
    display: none;
  }
  
  .header-phone span {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .burger-btn {
    display: flex;
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-card-left {
    padding: 40px 28px;
  }
  
  .hero-card-right {
    margin-left: 0;
    order: -1;
  }
  
  .hero-img {
    aspect-ratio: 16/10;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-item {
    flex: 1 1 40%;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-masonry {
    columns: 1;
  }
  
  .timeline {
    padding-left: 50px;
  }
  
  .timeline::before {
    left: 18px;
  }
  
  .timeline-dot {
    left: -50px;
    width: 40px;
    height: 40px;
  }
  
  .step-number {
    font-size: 16px;
  }
  
  .personas-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrap {
    padding: 32px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal {
    width: calc(100vw - 32px);
    max-height: 85vh;
    padding: 24px;
  }
  
  .floating-cta span {
    display: none;
  }
  
  .floating-cta {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  
  .mentor-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .mentor-badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .trust-strip {
    flex-direction: column;
    gap: 8px;
  }
  
  .trust-divider {
    display: none;
  }
  
  .pill-radios {
    flex-direction: column;
  }
  
  .pill-label {
    display: block;
    text-align: center;
    width: 100%;
  }
  
  .btn-submit {
    width: 100%;
  }
  
  .legal-section {
    padding: 110px 0 60px;
  }
  
  .legal-container h1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero-card-left {
    padding: 32px 20px;
  }
  
  .hero-section {
    padding: 100px 0 48px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .mentor-photo-wrap {
    width: 180px;
    height: 180px;
  }
  
  .mentor-quote {
    font-size: 17px;
    padding: 0 8px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .contact-form-wrap {
    padding: 24px 16px;
  }
}