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

  :root {
    --navy: #0b1d3a;
    --navy-mid: #142952;
    --teal: #0dcb8f;
    --teal-dim: #0aad78;
    --teal-light: #e0faf2;
    --slate: #4a5c7a;
    --slate-light: #8fa3c0;
    --bg: #f5f8fc;
    --white: #ffffff;
    --text: #0b1d3a;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 2px 16px rgba(11,29,58,0.08);
    --shadow-md: 0 6px 32px rgba(11,29,58,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11,29,58,0.08);
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
  }
  .logo span { color: var(--teal); }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    background: var(--teal);
    color: var(--navy) !important;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: .88rem !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--teal-dim) !important; color: var(--navy) !important; }

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

  /* ─── HERO ─── */
  .hero {
    padding: 100px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--teal-light);
    color: var(--teal-dim);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--teal);
  }

  .hero p {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--teal);
    color: var(--navy);
    border: none;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--teal-dim); transform: translateY(-2px); }

  .btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: .83rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, color .2s;
  }
  .btn-secondary:hover { background: var(--navy); color: var(--white); }

  .hero-visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(13,203,143,.15);
    border-radius: 50%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .stat-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.25rem;
  }
  .stat-card .num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    display: block;
  }
  .stat-card .lbl {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-top: .2rem;
    display: block;
  }

  .calendar-preview {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1rem;
  }
  .cal-header {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cal-header span { color: var(--teal); font-size: .75rem; }
  .cal-slots {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  .cal-slot {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
  }
  .slot-time {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    min-width: 50px;
  }
  .slot-bar {
    flex: 1;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 .7rem;
    font-size: .75rem;
    font-weight: 500;
  }
  .slot-bar.taken { background: rgba(13,203,143,.25); color: var(--teal); }
  .slot-bar.free { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
  .slot-bar.confirm { background: rgba(250,200,50,.2); color: #f7c950; }

  /* ─── SECTION HEADERS ─── */
  .section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dim);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--slate);
    max-width: 540px;
  }

  /* ─── PAIN POINTS ─── */
  .pain-section {
    background: var(--white);
    padding: 80px 0;
  }
  .pain-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .pain-card {
    background: var(--bg);
    border: 1px solid rgba(11,29,58,.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  .pain-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .pain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
  }
  .pain-card p { font-size: .9rem; color: var(--slate); }

  /* ─── FEATURES ─── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feature-card {
    background: var(--white);
    border: 1px solid rgba(11,29,58,.07);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform .2s, box-shadow .2s;
  }
  .feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

  .feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--teal-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
  }
  .feature-card p { font-size: .9rem; color: var(--slate); }

  /* ─── FOR WHOM ─── */
  .for-whom {
    background: var(--navy);
    padding: 80px 0;
  }
  .for-whom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .for-whom .section-title { color: var(--white); }
  .for-whom .section-subtitle { color: rgba(255,255,255,.6); }
  .for-whom .section-tag { background: rgba(13,203,143,.15); }

  .whom-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .whom-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    transition: background .2s;
  }
  .whom-item:hover { background: rgba(13,203,143,.12); border-color: rgba(13,203,143,.3); }
  .whom-check {
    width: 28px;
    height: 28px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    color: var(--navy);
    font-weight: 700;
  }

  /* ─── PRICING ─── */
  .pricing-section {
    background: var(--white);
    padding: 80px 0;
  }
  .pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .price-card {
    border: 1px solid rgba(11,29,58,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform .2s;
  }
  .price-card:hover { transform: translateY(-4px); }

  .price-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    position: relative;
  }
  .price-card.featured::before {
    content: 'Polecane';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .price-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }

  .price-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
  }
  .price-card.featured h3 { color: var(--white); }

  .price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    margin: 1rem 0 .25rem;
  }
  .price-amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-light);
  }
  .price-card.featured .price-amount small { color: rgba(255,255,255,.5); }

  .price-desc {
    font-size: .88rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
  }
  .price-card.featured .price-desc { color: rgba(255,255,255,.6); }

  .price-features {
    list-style: none;
    text-align: left;
    font-size: .88rem;
  }
  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--slate);
    margin-bottom: .6rem;
  }
  .price-card.featured .price-features li { color: rgba(255,255,255,.75); }
  .price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
  }

  /* ─── FORM ─── */
  .form-section {
    padding: 80px 0;
    background: var(--bg);
  }
  .form-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
  }
  .form-inner .section-title { margin-bottom: .75rem; }
  .form-inner .section-subtitle { margin: 0 auto 2.5rem; }

  .contact-form {
    background: var(--white);
    border: 1px solid rgba(11,29,58,.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: left;
    box-shadow: var(--shadow);
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .75rem 1rem;
    border: 1.5px solid rgba(11,29,58,.15);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .92rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,203,143,.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    width: 100%;
    padding: .95rem;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .form-submit:hover { background: var(--teal-dim); transform: translateY(-2px); }

  .form-note {
    font-size: .8rem;
    color: var(--slate-light);
    text-align: center;
    margin-top: 1rem;
  }

  .form-success {
    display: none;
    background: var(--teal-light);
    border: 1.5px solid var(--teal);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--teal-dim);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .form-error {
    display: none;
    background: #fff0f0;
    border: 1.5px solid #e74c3c;
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    color: #c0392b;
    font-size: .88rem;
    margin-top: 1rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 50px 5% 30px;
    color: rgba(255,255,255,.6);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 2rem;
  }
  .footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: .75rem;
  }
  .footer-logo span { color: var(--teal); }
  .footer-tagline {
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .social-links {
    display: flex;
    gap: .75rem;
  }
  .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .85rem;
    transition: background .2s;
  }
  .social-link:hover { background: var(--teal); color: var(--navy); }

  .footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: .5rem; }
  .footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-col p { font-size: .88rem; line-height: 1.8; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: .5rem;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 60px 5%; }
    .hero-visual { order: -1; }
    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .whom-list { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge-float { right: 0; bottom: -12px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
  }

  @media (max-width: 640px) {
    .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(--white);
      border-bottom: 1px solid rgba(11,29,58,.1);
      padding: 1.5rem 5%;
      gap: 1.25rem;
    }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; }
  }
  /* ─── ABOUT SECTION ─── */

.about-section {
  background: var(--white);
  padding: 90px 5%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-photo-placeholder {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  background: var(--bg);
  border: 2px dashed rgba(11,29,58,.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: var(--slate);
  font-size: 1rem;
  text-align: center;
}

.about-photo-placeholder span {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-badge-float {
  position: absolute;
  right: -20px;
  bottom: 20px;

  background: var(--teal);
  color: var(--navy);

  padding: .9rem 1.2rem;
  border-radius: 50px;

  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9rem;

  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-content p {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
}

.about-content strong {
  color: var(--navy);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 2rem;

  background: #25d366;
  color: white;

  text-decoration: none;

  padding: .95rem 1.8rem;
  border-radius: 50px;

  font-family: 'Outfit', sans-serif;
  font-weight: 700;

  transition: transform .2s, opacity .2s;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* MOBILE */

@media (max-width: 900px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-photo-wrap {
    text-align: center;
  }

  .about-badge-float {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }

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

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .form-row { grid-template-columns: 1fr; }
.contact-form { padding: 1.5rem; }

}
