:root {
  --bg-cream: #fff8f3;
  --bg-pink: #ffc6c7;
  --primary: #1b7b83;
  --primary-dark: #11575c;
  --accent: #ff9d6c;
  --text-main: #242424;
  --text-muted: #666;
  --card-radius: 18px;
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.07);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--text-main);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

/* LAYOUT HELPERS */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.bg-cream {
  background: var(--bg-cream);
}
.bg-pink {
  background: var(--bg-pink);
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.5rem auto 2.5rem;
}

/* GRID HELPERS */
.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.top-gap {
  margin-top: 32px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* BUTTONS */
.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.full-width {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 460px;
  background-image: url("hero-bg.jpg"); /* Replace with your illustration */
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
  padding: 70px 0 80px;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin: 0.4rem 0 0.6rem;
}
.hero-text .subtitle {
  max-width: 520px;
  color: #f7f4f4;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 1.2rem 0 1rem;
}
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}
.hero-highlights li::before {
  content: "✓";
  margin-right: 6px;
}
.hero-card {
  background: #fff;
  color: var(--text-main);
  padding: 22px 20px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  align-self: center;
}
.hero-card h3 {
  margin-top: 0;
}
.hero-card-date {
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.hero-card-list {
  padding-left: 18px;
  margin: 0 0 1rem;
  color: var(--text-muted);
}

/* CARDS & LISTS */
.card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  margin-top: 0;
}
.check-list,
.bullet-list {
  margin: 0.6rem 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.check-list li::marker {
  content: "✓ ";
  color: var(--primary);
}
.bullet-list li {
  margin-bottom: 0.25rem;
}

/* INTERNSHIP SUMMARY */
.internship-summary {
  background: #fdf7f1;
  border-radius: var(--card-radius);
  padding: 24px 22px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.summary-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.summary-note {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* TIMELINE */
.timeline {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.timeline-step {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.timeline-duration {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 6px;
}
.alt-path {
  margin-top: 24px;
  background: #e7f7f8;
}

/* TESTIMONIALS */
.testimonial p {
  font-size: 0.94rem;
  color: var(--text-muted);
}
.testimonial h4 {
  margin: 0.85rem 0 0.1rem;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.pricing-graphic {
  padding: 20px 0;
}
.fake-chart {
  background: linear-gradient(160deg, #f7e3ff, #ffe0ce);
  height: 320px;
  border-radius: 32px 32px 8px 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.fake-line {
  position: absolute;
  left: 15%;
  right: 8%;
  bottom: 10%;
  top: 20%;
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  border-top-right-radius: 40px;
}
.pricing-card h2 {
  margin-top: 0;
}
.pricing-amount {
  font-size: 2.4rem;
  margin: 0.3rem 0;
}
.pricing-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pricing-roi {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 10px 0;
  text-align: left;
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  font-weight: 700;
  margin-left: 10px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: max-height 0.2s ease;
  padding-right: 10px;
}
.faq-item.open .faq-answer {
  max-height: 140px;
  padding-bottom: 8px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */
.footer {
  background: #e3f4f5;
  padding: 14px 0;
  font-size: 0.84rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CONTACT */
.contact-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-4,
  .grid-3,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 60px 0;
  }

  .hero-inner {
    padding: 70px 0 60px;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    gap: 6px;
  }
}
