:root {
  --bg: #f5f0e3;
  --bg-soft: #fff9ef;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-dark: #0f2b1f;
  --brand: #09a84e;
  --brand-dark: #0a6d37;
  --brand-soft: rgba(9, 168, 78, 0.14);
  --ink: #123126;
  --ink-soft: #567265;
  --line: rgba(18, 49, 38, 0.12);
  --accent: #f4a21c;
  --accent-deep: #d77700;
  --shadow: 0 20px 60px rgba(12, 39, 28, 0.12);
  --shadow-strong: 0 28px 90px rgba(12, 39, 28, 0.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(244, 162, 28, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(9, 168, 78, 0.16), transparent 22%),
    linear-gradient(180deg, #f9f4e8 0%, #f4efe2 46%, #fbf9f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 49, 38, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 49, 38, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 74%);
  pointer-events: none;
  z-index: -1;
}

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

button,
input,
video {
  font: inherit;
}

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

video {
  display: block;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 2rem auto 2rem 52%;
  width: min(520px, 42vw);
  transform: translateX(-6%);
  background: linear-gradient(135deg, rgba(244, 162, 28, 0.14), rgba(9, 168, 78, 0.12));
  border-radius: 42px;
  filter: blur(2px);
  z-index: 0;
}

.section-accent .container {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(249, 244, 232, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 49, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

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

.brand-logo {
  width: 132px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fffdf8;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(215, 119, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(215, 119, 0, 0.24);
  filter: saturate(1.04);
}

.button-small {
  min-height: 44px;
  padding: 0.68rem 1.15rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  border-color: rgba(18, 49, 38, 0.12);
  box-shadow: none;
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  padding-top: 4rem;
}

.hero-stack {
  display: grid;
  gap: 1.4rem;
}

.hero-banner {
  position: relative;
  min-height: 650px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #10261d;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 29, 20, 0.2) 0%, rgba(9, 29, 20, 0.48) 30%, rgba(9, 29, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 29, 20, 0.74) 0%, rgba(9, 29, 20, 0.32) 52%, rgba(9, 29, 20, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
  color: #fffef7;
}

.hero-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero-logo {
  width: clamp(140px, 18vw, 200px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.18));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 249, 234, 0.94);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero h1,
.section-heading h2,
.panel-top h2,
.hero-brief h2,
.testimonial-feature-copy h3,
.cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.06;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.hero-subtitle {
  margin: 1.1rem 0 0.75rem;
  max-width: 24ch;
  font-size: clamp(1.08rem, 2.2vw, 1.52rem);
  font-weight: 700;
  color: rgba(255, 243, 218, 0.96);
}

.hero-description {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 249, 234, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-highlights span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fffef8;
  font-weight: 700;
}

.hero-proof,
.hero-grid,
.benefits-grid,
.product-grid,
.support-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.hero-brief,
.hero-panel,
.feature-card,
.product-card,
.partner-card,
.industry-panel,
.support-card,
.step-card,
.apply-form,
.faq-item,
.testimonial-card,
.testimonial-feature-copy {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 1.35rem 1.4rem;
  border-radius: 26px;
}

.proof-card strong,
.stat-card strong,
.industry-stat strong,
.partner-note strong,
.footer-title {
  display: block;
  font-weight: 800;
  color: var(--surface-dark);
}

.proof-card span,
.stat-card span,
.industry-stat span,
.partner-note p,
.testimonial-body p,
.footer-copy,
.footer-meta {
  color: var(--ink-soft);
}

.hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
}

.hero-brief {
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 32px;
}

.hero-brief h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.hero-brief > p:not(.eyebrow) {
  margin-top: 0.95rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.stat-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 49, 38, 0.08);
}

.hero-panel {
  padding: 1.5rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 40, 28, 0.97), rgba(20, 79, 48, 0.92)),
    var(--surface-dark);
  color: #f0faef;
}

.panel-label {
  margin: 0 0 0.7rem;
  color: rgba(255, 244, 218, 0.72);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.panel-top h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.panel-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-card-index,
.product-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.mini-card-index {
  background: rgba(244, 162, 28, 0.16);
  color: #fff0c8;
}

.mini-card h3,
.feature-card h3,
.product-card h3,
.support-card h3,
.step-card h3 {
  margin: 0 0 0.42rem;
  font-size: 1.12rem;
}

.mini-card p,
.feature-card p,
.product-card p,
.support-card p,
.step-card p,
.section-heading p,
.industry-copy p,
.cta-copy p,
.form-note,
.faq-answer p,
.testimonial-feature-copy p,
.testimonial-body p {
  margin: 0;
  color: var(--ink-soft);
}

.mini-card p {
  color: rgba(240, 250, 239, 0.84);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p,
.industry-copy p,
.cta-copy p,
.testimonial-feature-copy p {
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

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

.feature-card,
.product-card,
.support-card,
.step-card,
.testimonial-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.feature-card,
.support-card {
  min-height: 220px;
}

.feature-card::before,
.support-card::before,
.product-card::before,
.step-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

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

.product-card {
  min-height: 220px;
}

.product-card-wide {
  grid-column: span 2;
}

.product-icon {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-soft), rgba(244, 162, 28, 0.18));
  color: var(--brand-dark);
}

.partner-layout,
.industry-grid,
.testimonial-feature,
.cta-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 1.4rem;
  align-items: stretch;
}

.partner-card {
  padding: 1.55rem;
  border-radius: 30px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-list li {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 49, 38, 0.08);
  font-weight: 700;
}

.partner-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(9, 168, 78, 0.1), rgba(244, 162, 28, 0.12));
  border: 1px solid rgba(18, 49, 38, 0.08);
}

.industry-panel {
  padding: 1.5rem;
  border-radius: 32px;
  display: grid;
  gap: 1rem;
}

.industry-stat {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 49, 38, 0.08);
}

.testimonials-section {
  position: relative;
}

.cta-banner-section {
  padding-top: 2.5rem;
}

.cta-banner-heading {
  margin-bottom: 1.5rem;
}

.cta-banner-card {
  display: block;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-strong);
  background: var(--surface-strong);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta-banner-card:hover,
.cta-banner-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 34px 100px rgba(12, 39, 28, 0.2);
}

.cta-banner-card img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial-feature {
  margin-bottom: 1.4rem;
  align-items: center;
  grid-template-columns: minmax(280px, 360px) 1fr;
}

.testimonial-feature-copy {
  padding: 1.7rem;
  border-radius: 30px;
}

.testimonial-feature-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.feature-points,
.cta-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.feature-points li,
.cta-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}

.feature-points li::before,
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.video-shell {
  padding: 0.75rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 43, 31, 0.98), rgba(21, 83, 49, 0.94)),
    var(--surface-dark);
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  border-radius: 20px;
  background: #0c2218;
}

.testimonials-section .video-shell {
  justify-self: center;
}

.testimonials-section .video-shell video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.video-shell-featured video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.testimonial-card {
  padding: 0.8rem;
}

.testimonial-card .video-shell {
  padding: 0.5rem;
  border-radius: 22px;
}

.testimonial-body {
  padding: 1rem 0.7rem 0.45rem;
}

.testimonial-body h3 {
  margin: 0;
  font-size: 1.12rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-number {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-dark), #1f7c46);
  color: #fff6df;
}

.cta-section {
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: auto auto 8% 4%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(9, 168, 78, 0.24), transparent 68%);
  pointer-events: none;
}

.apply-form {
  padding: 1.6rem;
  border-radius: 30px;
}

.apply-embed {
  padding: 0.85rem;
}

.apply-embed iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1.03rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(244, 162, 28, 0.16);
  color: var(--accent-deep);
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.35rem 1.35rem;
}

.site-footer {
  padding: 1.5rem 0 2.4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 126px;
}

.footer-title {
  margin: 0;
}

.footer-copy,
.footer-meta {
  margin: 0.2rem 0 0;
  font-size: 0.96rem;
}

.whatsapp-chat-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.whatsapp-chat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(8, 93, 47, 0.24);
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-chat-button img {
  width: min(118px, 24vw);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(12, 39, 28, 0.26);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-chat-button:hover .whatsapp-chat-pill,
.whatsapp-chat-button:focus-visible .whatsapp-chat-pill,
.whatsapp-chat-button:hover img,
.whatsapp-chat-button:focus-visible img {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(8, 93, 47, 0.28);
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .whatsapp-chat-pill,
  .whatsapp-chat-button img,
  .faq-toggle {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-proof,
  .hero-grid,
  .partner-layout,
  .industry-grid,
  .testimonial-feature,
  .benefits-grid,
  .product-grid,
  .support-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .hero-banner,
  .hero-content {
    min-height: 590px;
  }

  .section-accent::before {
    inset: 2rem 1rem auto 1rem;
    width: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.35rem 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 110px;
  }

  .brand-copy {
    display: none;
  }

  .button-small {
    display: none;
  }

  .whatsapp-chat-button {
    right: 0.8rem;
    bottom: 0.8rem;
    gap: 0.55rem;
  }

  .whatsapp-chat-pill {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }

  .whatsapp-chat-button img {
    width: min(94px, 27vw);
    border-radius: 22px;
  }

  .cta-banner-card {
    border-radius: 26px;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-banner {
    border-radius: 28px;
    min-height: 540px;
  }

  .hero-content {
    min-height: 540px;
    padding: 1.45rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-brief,
  .hero-panel,
  .proof-card,
  .feature-card,
  .product-card,
  .partner-card,
  .industry-panel,
  .support-card,
  .step-card,
  .apply-form,
  .faq-item,
  .testimonial-card,
  .testimonial-feature-copy {
    border-radius: 24px;
  }

  .hero-stats,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-chat-pill {
    display: none;
  }

  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
