:root {
  --primary: #18a999;
  --primary-dark: #118074;
  --accent: #ffb347;
  --bg: #f5fbfa;
  --text: #1f2933;
  --muted: #6b7280;
  --white: #ffffff;
  --danger: #dc2626;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.1);
  --radius-lg: 18px;
  --radius-full: 999px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0fbf7 0, #f5fbfa 42%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Pills */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(24, 169, 153, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(24, 169, 153, 0.25);
  gap: 0.4rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(24, 169, 153, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(24, 169, 153, 0.55);
}

.btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn-outline:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px) scale(1.01);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 251, 250, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: conic-gradient(from 180deg at 50% 50%, #22c55e, #18a999, #0ea5e9, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.5);
}

.logo-text-main {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn-outline {
    display: none;
  }
}

/* Hero */

main {
  padding-bottom: 4rem;
}

.hero {
  padding: 2.4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

@media (max-width: 840px) {
  .hero {
    padding-top: 1.4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-eyebrow {
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw + 1.4rem, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}

.hero-title span {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  font-size: 0.83rem;
  color: var(--muted);
}

.hero-metric-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.03);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  gap: 0.4rem;
}

.hero-metric-pill strong {
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(16px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.coach-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.coach-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-weight: 600;
  font-size: 1.05rem;
}

.coach-meta small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.coach-meta strong {
  font-size: 0.85rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  text-transform: uppercase;
  gap: 0.35rem;
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.35);
}

.funnel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
}

.funnel-step {
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(249, 250, 251, 0.9);
}

.funnel-step h4 {
  font-size: 0.76rem;
  margin-bottom: 0.25rem;
}

.funnel-step p {
  font-size: 0.75rem;
  color: var(--muted);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.metric-card {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.76rem;
}

.metric-card span {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.metric-card strong {
  font-size: 0.9rem;
}

.metric-good {
  color: #22c55e;
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.3rem;
}

.contact-strip {
  margin-top: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.contact-strip p {
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.contact-buttons button {
  font-size: 0.75rem;
  padding-inline: 0.7rem;
}

.hero-floating-card {
  position: absolute;
  right: 0;
  top: -1.3rem;
  transform: translateX(22%);
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  font-size: 0.72rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.6);
  width: 210px;
}

.hero-floating-card strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.hero-floating-card span {
  color: #22c55e;
  font-weight: 600;
}

.hero-floating-card small {
  display: block;
  margin-top: 0.35rem;
  color: #9ca3af;
}

@media (max-width: 840px) {
  .hero-floating-card {
    display: none;
  }
}

/* Sections */

section {
  padding: 2.5rem 0 2.8rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 169, 153, 0.08);
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.card h3 {
  font-size: 1rem;
}

.card p {
  font-size: 0.86rem;
  color: var(--muted);
}

.card ul {
  list-style: none;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: grid;
  gap: 0.2rem;
}

.card ul li::before {
  content: "•";
  color: var(--primary-dark);
  margin-right: 0.4rem;
}

/* Flow */

.flow {
  max-width: 720px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.flow-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: #ecfdf5;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.flow-body h3 {
  font-size: 0.96rem;
  margin-bottom: 0.16rem;
}

.flow-body p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.72rem;
}

.flow-tag {
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.7);
}

/* Pricing */

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

@media (max-width: 860px) {
  .pricing-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-card {
  border-radius: 20px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.pricing-card-inner {
  position: relative;
  z-index: 1;
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.5);
  background: rgba(22, 163, 74, 0.14);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  color: #bbf7d0;
}

.pricing-main-title {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.pricing-main-sub {
  font-size: 0.83rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.pricing-figure {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.pricing-figure strong {
  font-size: 1.5rem;
}

.pricing-figure span {
  font-size: 0.78rem;
  color: #9ca3af;
}

.pricing-ul {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  color: #e5e7eb;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.pricing-ul li::before {
  content: "✔";
  margin-right: 0.4rem;
  color: #22c55e;
  font-size: 0.8rem;
}

.pricing-note {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 0.45rem;
}

.pricing-addons {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.32);
  padding: 1.1rem 1rem;
  font-size: 0.84rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.pricing-addons h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.8);
}

/* Internship / about */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.badge {
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.72rem;
  background: rgba(248, 250, 252, 0.82);
}

.para-muted {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.mentor-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  padding: 1rem 1rem;
  font-size: 0.8rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
}

.mentor-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.32), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.mentor-card-inner {
  position: relative;
  z-index: 1;
}

.mentor-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}

.mentor-name {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mentor-role {
  font-size: 0.76rem;
  color: #bfdbfe;
  margin-bottom: 0.4rem;
}

.mentor-card ul {
  list-style: none;
  font-size: 0.76rem;
  color: #cbd5f5;
  display: grid;
  gap: 0.18rem;
}

.mentor-card ul li::before {
  content: "★";
  margin-right: 0.4rem;
  color: #facc15;
  font-size: 0.72rem;
}

/* CTA & form */

.cta-section {
  padding: 2.2rem 0 2.8rem;
}

.cta-box {
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.28), transparent 60%);
  opacity: 1;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

@media (max-width: 840px) {
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cta-title {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.cta-sub {
  font-size: 0.86rem;
  color: #9ca3af;
}

.cta-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.cta-right-box {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.95rem 1rem;
  font-size: 0.8rem;
}

.cta-right-box h3 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.cta-right-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.cta-right-box label {
  font-size: 0.72rem;
  display: block;
  margin-top: 0.4rem;
  margin-bottom: 0.1rem;
  color: #9ca3af;
}

.cta-right-box input,
.cta-right-box select,
.cta-right-box textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  outline: none;
}

.cta-right-box input:focus,
.cta-right-box select:focus,
.cta-right-box textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

.cta-row-small {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.6rem;
  margin-top: 0.15rem;
}

.cta-right-box textarea {
  resize: vertical;
  min-height: 50px;
  max-height: 100px;
}

.cta-hint {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Footer */

footer {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.78rem;
  color: var(--muted);
  background: #f9fafb;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary-dark);
}
