:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef4fb;
  --ink: #16324b;
  --ink-soft: #5b7184;
  --primary: #0a3864;
  --primary-deep: #082946;
  --accent: #ff7f2a;
  --accent-soft: #ffd8bf;
  --support: #8dc153;
  --line: rgba(10, 56, 100, 0.12);
  --shadow: 0 24px 60px rgba(9, 30, 52, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(141, 193, 83, 0.08), transparent 28%),
    radial-gradient(circle at right 20%, rgba(255, 127, 42, 0.08), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 251, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(246, 248, 251, 0.94);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 14px 30px rgba(11, 39, 66, 0.12);
}

.brand span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #1864a0 100%);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(10, 56, 100, 0.22);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 14px 28px rgba(11, 39, 66, 0.1);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  position: relative;
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero-orb-a {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(141, 193, 83, 0.2), transparent 68%);
}

.hero-orb-b {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 127, 42, 0.18), transparent 68%);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(10, 56, 100, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--support), #6fa63c);
  box-shadow: 0 0 0 8px rgba(141, 193, 83, 0.12);
}

.hero-copy h1,
.section-copy h2,
.section-header h2,
.cta-shell h2,
.contact-copy h2 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text,
.section-copy p,
.section-header p,
.cta-shell p,
.contact-copy p {
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #f79e3e 100%);
  box-shadow: 0 18px 34px rgba(255, 127, 42, 0.28);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(10, 56, 100, 0.14);
}

.btn-wide {
  min-width: 220px;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--support), #72af36);
}

.hero-visual {
  position: relative;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  display: grid;
  grid-template-rows: 380px auto;
}

.hero-card-copy {
  padding: 22px 24px 24px;
}

.hero-card-copy strong,
.story-surface h3,
.service-card-body h3,
.feature-item h3,
.benefit-card strong,
.timeline-card h3,
.faq-item summary,
.contact-card strong,
.site-footer h3 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-card-copy span,
.story-surface p,
.service-card-body p,
.feature-item p,
.benefit-card p,
.timeline-card p,
.faq-item p,
.contact-card span,
.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hero-card-mini {
  display: grid;
  grid-template-rows: 170px auto;
}

.floating-card {
  transform: translateY(22px);
}

.trust-strip {
  padding: 10px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item,
.benefit-card,
.timeline-card,
.faq-item,
.contact-card,
.contact-form,
.story-surface {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(9, 30, 52, 0.06);
}

.trust-item {
  padding: 24px;
}

.trust-item strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.section {
  padding: 92px 0;
}

.section-grid,
.benefits-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.story-panel {
  position: relative;
}

.story-panel > img {
  min-height: 520px;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-surface {
  position: absolute;
  right: 20px;
  left: 20px;
  bottom: 20px;
  padding: 26px;
}

.section-header {
  max-width: 760px;
}

.services-grid,
.benefits-grid,
.footer-grid,
.training-panel {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(9, 30, 52, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(9, 30, 52, 0.12);
}

.service-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  padding: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.timeline-card {
  padding: 28px 24px;
}

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #1966a3);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.training-section {
  padding-top: 0;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.training-highlights {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.training-highlights li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
}

.training-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--support), #72af36);
}

.training-panel {
  grid-template-columns: 1fr;
}

.training-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(9, 30, 52, 0.08);
}

.training-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.training-card-copy {
  padding: 22px 24px 24px;
}

.training-card-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.training-card-copy p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-panel {
  padding-top: 0;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: var(--shadow);
}

.cta-shell h2,
.cta-shell p {
  color: #fff;
}

.cta-shell p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--accent);
  font-size: 1.5rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
}

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(10, 56, 100, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255, 127, 42, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 127, 42, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 30px;
  padding: 38px 0 26px;
  background: linear-gradient(180deg, #0b335a 0%, #082541 100%);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid > div {
  display: grid;
  gap: 12px;
}

.brand-footer span,
.site-footer h3,
.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1faa59 0%, #2fcc72 100%);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 22px 38px rgba(32, 124, 63, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .benefits-layout,
  .contact-grid,
  .training-layout,
  .trust-grid,
  .timeline,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .hero-copy h1,
  .section-copy h2,
  .section-header h2,
  .cta-shell h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 7vw, 3.1rem);
  }

  .hero-grid,
  .section-grid,
  .benefits-layout,
  .contact-grid,
  .training-layout,
  .trust-grid,
  .timeline,
  .services-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 32px;
  }

  .floating-card {
    transform: none;
  }

  .story-panel > img {
    min-height: 420px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand span {
    font-size: 0.88rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero-card-main {
    grid-template-rows: 290px auto;
  }

  .hero-card-mini {
    grid-template-rows: 180px auto;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-section {
    padding-bottom: 72px;
  }

  .cta-shell,
  .contact-form,
  .trust-item,
  .benefit-card,
  .timeline-card {
    padding: 24px;
  }
}
