@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --primary-color: #0D9488;
  --secondary-color: #0F766E;
  --accent-color: #2DD4BF;
  --light-color: #F0FDFB;
  --dark-color: #042F2E;
  --gradient-primary: linear-gradient(135deg, #2DD4BF 0%, #0D9488 50%, #0F766E 100%);
  --hover-color: #0F7871;
  --background-color: #FAFFFE;
  --text-color: #1C3331;
  --border-color: rgba(13, 148, 136, 0.18);
  --divider-color: rgba(15, 118, 110, 0.1);
  --shadow-color: rgba(13, 148, 136, 0.12);
  --highlight-color: #FB923C;
  --card-bg: #F7FFFE;
  --muted-text: #4B6E6B;
  --main-font: 'Josefin Sans', sans-serif;
  --alt-font: 'Lora', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--alt-font);
  line-height: 1.25;
  color: var(--dark-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }

p { font-size: 1rem; color: var(--muted-text); }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--hover-color); }

/* ─── LAYOUT ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-text);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.85;
}

/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  border-radius: 4px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--dark-color);
  color: #fff;
  box-shadow: 0 4px 20px rgba(4, 47, 46, 0.25);
}
.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 28px;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ─── DESKTOP NAV ─── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
  background: rgba(45, 212, 191, 0.1);
}

.nav-links .nav-cta a {
  background: var(--primary-color);
  color: #fff;
  padding: 9px 20px;
  border-radius: 4px;
}
.nav-links .nav-cta a:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}

/* ─── CSS HAMBURGER MENU ─── */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 4px;
  gap: 5px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

#menu-toggle:checked ~ .header-inner .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked ~ .header-inner .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menu-toggle:checked ~ .header-inner .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #031F1E;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 28px 20px;
  gap: 2px;
}

#menu-toggle:checked ~ .mobile-nav {
  display: flex;
}

.mobile-nav a {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 12px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover {
  background: rgba(45, 212, 191, 0.1);
  color: var(--accent-color);
}

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  background: url('img/bg.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 47, 46, 0.88) 0%, rgba(13, 148, 136, 0.45) 70%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--main-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-style: italic;
}

.hero-content h1 em {
  color: var(--accent-color);
  font-style: italic;
}

.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── ABOUT / BENEFITS ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 36px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  padding: 24px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-left: 3px solid var(--primary-color);
  transition: box-shadow 0.25s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px var(--shadow-color);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.feature-card h4 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--dark-color);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  display: none;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--alt-font);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* ─── EXPERT ─── */
.expert-section {
  background: var(--light-color);
}

.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.expert-photo {
  position: relative;
}

.expert-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.expert-photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 40%;
  background: var(--gradient-primary);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

.expert-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 28px 0;
}

.expert-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.expert-meta-item::before {
  content: '—';
  color: var(--primary-color);
  font-weight: 700;
}

.expert-blockquote {
  background: var(--dark-color);
  color: rgba(255,255,255,0.9);
  padding: 28px 32px;
  border-radius: 4px;
  font-family: var(--alt-font);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin: 32px 0;
  position: relative;
}

.expert-blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.4;
  font-family: var(--alt-font);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 20px;
}

/* ─── HOW IT WORKS ─── */
.hiw-section {
  background: var(--background-color);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 56px auto 0;
}

.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.step-row:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 72px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--dark-color);
  color: var(--accent-color);
  font-family: var(--alt-font);
  font-size: 1.8rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--shadow-color);
}

.step-content {
  padding: 20px 0 40px;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ─── PRICING ─── */
.pricing-section {
  background: var(--light-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.price-card:hover {
  box-shadow: 0 12px 40px var(--shadow-color);
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--dark-color);
  border-color: var(--primary-color);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 56px rgba(4, 47, 46, 0.3);
}

.price-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
}

.price-name {
  font-family: var(--main-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 16px;
  margin-top: 8px;
}

.price-card.featured .price-name {
  color: var(--accent-color);
}

.price-amount {
  font-family: var(--alt-font);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1;
  margin-bottom: 6px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted-text);
  margin-bottom: 28px;
  font-family: var(--main-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card.featured .price-period {
  color: rgba(255,255,255,0.5);
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin-bottom: 28px;
}

.price-card.featured .price-divider {
  border-color: rgba(255,255,255,0.1);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted-text);
  font-family: var(--main-font);
  line-height: 1.5;
}

.price-card.featured .price-features li {
  color: rgba(255,255,255,0.75);
}

.price-features li::before {
  content: '→';
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card.featured .price-features li::before {
  color: var(--accent-color);
}

.price-disclaimer {
  background: rgba(13, 148, 136, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 20px 26px;
  font-size: 0.83rem;
  color: var(--muted-text);
  margin-top: 44px;
  line-height: 1.7;
}

/* ─── BOOKING FORM ─── */
.form-section {
  background: var(--background-color);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  padding: 60px 52px;
  box-shadow: 0 16px 48px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--text-color);
  background: var(--background-color);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--muted-text);
  line-height: 1.65;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary-color);
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--light-color);
}

.faq-list {
  max-width: 820px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-item:first-child { border-radius: 4px 4px 0 0; }
.faq-item:last-child { border-radius: 0 0 4px 4px; }

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark-color);
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--light-color);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease, background 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq-toggle:checked ~ .faq-question .faq-arrow {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.faq-toggle:checked ~ .faq-question {
  background: var(--light-color);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 0 solid var(--border-color);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
  border-top-width: 1px;
}

.faq-answer p {
  padding: 20px 28px 24px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted-text);
  margin: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #021817;
  padding: 72px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
  height: 38px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  max-width: 280px;
  margin: 0;
  line-height: 1.75;
}

.footer-col h4 {
  color: rgba(255,255,255,0.5);
  font-family: var(--main-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent-color);
}

.footer-bottom-row {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
  max-width: 900px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--dark-color);
  padding: 88px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.page-hero h1 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  font-family: var(--main-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 480px;
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 75vh; }

  .about-grid,
  .expert-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image img,
  .expert-photo img { height: 300px; }
  .about-image::before,
  .expert-photo::after { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .steps-timeline { margin-top: 36px; }
  .step-row::before { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .form-wrapper { padding: 36px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
}