/* =========================================
   StoryAcorn — Main Stylesheet
   ========================================= */

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

:root {
  --cream: #FAF6EE;
  --cream-dark: #F0E8D8;
  --brown: #2C1A0E;
  --brown-mid: #5C3A1E;
  --green: #3B6235;
  --green-light: #5A8C52;
  --amber: #C87941;
  --amber-light: #E09B65;
  --rose: #B5635A;
  --gray: #6B5E54;
  --gray-light: #A89B8F;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44, 26, 14, 0.10);
  --shadow-lg: 0 8px 40px rgba(44, 26, 14, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1100px;
  --section-pad: 80px 0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--amber); }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray); }
.lead { font-size: 1.1rem; color: var(--brown-mid); }

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

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 48px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 121, 65, 0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 121, 65, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 26, 14, 0.08);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
}

.logo-text span { color: var(--green); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--amber-light);
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(135deg, #FAF6EE 0%, #F2E8D5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 98, 53, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 98, 53, 0.1);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
  font-style: italic;
}

.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
}

.form-card-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(44, 26, 14, 0.15);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 98, 53, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

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

.form-consent {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 12px;
  text-align: center;
}

.form-consent a {
  color: var(--gray);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ---- Section: Benefits ---- */
.benefits {
  padding: var(--section-pad);
  background: var(--white);
}

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

.benefit-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(44, 26, 14, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 98, 53, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- Section: What You Learn ---- */
.what-learn {
  padding: var(--section-pad);
  background: var(--cream);
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.learn-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.learn-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.learn-item-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.learn-item-text h4 {
  color: var(--brown);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.learn-item-text p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- Section: Who Is For ---- */
.who-for {
  padding: var(--section-pad);
  background: var(--white);
}

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

.who-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(44, 26, 14, 0.06);
}

.who-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(200, 121, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.9rem;
}

.who-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.who-card-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- Section: Portfolio / Examples ---- */
.portfolio {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

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

.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(44, 26, 14, 0.7));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- Section: Course Format ---- */
.course-format {
  padding: var(--section-pad);
  background: var(--green);
  color: var(--white);
}

.course-format h2 { color: var(--white); }
.course-format .section-label { color: rgba(255,255,255,0.6); }
.course-format .section-subtitle { color: rgba(255,255,255,0.75); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: background var(--transition);
}

.format-card:hover {
  background: rgba(255, 255, 255, 0.17);
}

.format-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.format-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.format-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* ---- Section: Mentor ---- */
.mentor {
  padding: var(--section-pad);
  background: var(--white);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

.mentor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.mentor-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.mentor-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(44, 26, 14, 0.15);
}

.mentor-tag-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}

.mentor-tag-title {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

.mentor-bio {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mentor-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.mentor-trait {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(59, 98, 53, 0.08);
  color: var(--green);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- Section: Process Steps ---- */
.process {
  padding: var(--section-pad);
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--amber), var(--green));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(200, 121, 65, 0.3);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- Section: Lead Form ---- */
.lead-form {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #3B6235 0%, #2D4D28 100%);
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.15), transparent 70%);
  pointer-events: none;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lead-form-left h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-form-left .section-label {
  color: rgba(255,255,255,0.6);
}

.lead-form-left p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.lead-form-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.lead-form-promise-icon {
  flex-shrink: 0;
  color: var(--amber-light);
  font-size: 1rem;
  margin-top: 1px;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.lead-form-card .form-sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ---- Section: FAQ ---- */
.faq {
  padding: var(--section-pad);
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 26, 14, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  gap: 16px;
  user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 98, 53, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ---- Section: Final CTA ---- */
.final-cta {
  padding: 72px 0;
  background: var(--cream-dark);
  text-align: center;
}

.final-cta h2 { margin-bottom: 16px; }
.final-cta p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 32px;
}

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

.footer-brand .logo-text { color: var(--white); }

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-company {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--amber-light); }

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

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideUp 0.4s ease;
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-text a {
  color: var(--amber-light);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  flex: 1;
  padding: 10px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
}

.btn-cookie-accept:hover { background: var(--amber-light); }

/* ---- Legal Pages ---- */
.legal-page {
  padding: 60px 0 80px;
  background: var(--white);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.legal-inner h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}

.legal-inner h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

.legal-inner p, .legal-inner li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-inner a { color: var(--green); text-decoration: underline; }

/* ---- Success Page ---- */
.success-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, #FAF6EE 0%, #F0E8D5 100%);
}

.success-card {
  max-width: 540px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 98, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--brown);
}

.success-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, #FAF6EE 0%, #F0E8D5 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(44, 26, 14, 0.06);
}

.page-header h1 { font-size: 2rem; margin-bottom: 8px; }

.page-header .breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.page-header .breadcrumb a { color: var(--green); }
.page-header .breadcrumb a:hover { color: var(--amber); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  :root { --section-pad: 60px 0; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .learn-image { order: -1; }
  .learn-image img { height: 280px; }

  .mentor-grid { grid-template-columns: 1fr; gap: 40px; }
  .mentor-image { max-width: 340px; }
  .mentor-image img { height: 340px; }

  .format-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }

  .lead-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(44, 26, 14, 0.08);
    padding: 24px;
    gap: 20px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }

  .benefits-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
  .lead-form-card { padding: 28px 20px; }
  .success-card { padding: 36px 24px; }
}
