:root {
  --color-white: #ffffff;
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-emerald-500: #10b981;
  --color-teal-300: #5eead4;
  --color-teal-200: #99f6e4;
  --color-brand: #00e896;
  --color-red-500: #ef4444;
  --header-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --card-shadow-soft: 0 16px 50px rgba(15, 23, 42, 0.08);
  --card-shadow-dark: 0 16px 50px rgba(15, 23, 42, 0.18);
  --radius-xl: 2rem;
  --container-width: 72rem;
  --content-width: 48rem;
  --content-width: 100%;
  --content-width: 100%;
  --transition-default: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--color-slate-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url("bg_gradient_mixed_top.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top center;
  background-color: var(--color-white);
}

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

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

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

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2rem 0;
}

.section-top-tight {
  padding-top: 3rem;
  padding-bottom: 0;
}

.header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 72px;

  background: #f7f3ec;
  padding: 16px 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.header-nav a:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}

.hero {
  padding: 3rem 0 5rem;
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 42rem;
}

.header-bar {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--header-shadow);
}

.logo {
  width: auto;
  height: 3.5rem;
}

.content-width {
  max-width: var(--content-width);
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-emerald-500);
}

.eyebrow-dark {
  color: var(--color-teal-300);
}

.eyebrow-muted {
  letter-spacing: 0.12em;
  color: var(--color-slate-400);
}

.title-xl,
.title-lg,
.title-md,
.title-sm {
  margin: 0;
  font-weight: 900;
  color: var(--color-slate-900);
}

.title-xl {
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--color-white);
}

.title-lg {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  line-height: 1.15;
}

.title-md {
  font-size: 1.5rem;
  line-height: 1.2;
}

.title-sm {
  font-size: 1.25rem;
  line-height: 1.25;
}

.title-light {
  color: var(--color-white);
}

.nowrap-desktop {
  white-space: normal;
}

.body-lg,
.body-md,
.body-sm {
  margin: 0;
  color: var(--color-slate-700);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.78;
}

.body-md {
  font-size: 1rem;
  line-height: 1.75;
}

.body-sm {
  font-size: 1rem;
  line-height: 1.75;
}

.body-light {
  color: var(--color-white);
}

.body-muted {
  color: var(--color-slate-300);
}

.text-brand-dark {
  color: var(--color-slate-950);
}

.hero-text {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.78;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .title-xl,
  .hero-text {
    color: var(--color-slate-900);
  }
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-video {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.2);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color var(--transition-default), color var(--transition-default), border-color var(--transition-default), transform var(--transition-default), box-shadow var(--transition-default);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  cursor: pointer;
}

.button-dark {
  background: var(--color-slate-900);
  color: var(--color-white);
}

.button-dark:hover {
  background: #172033;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.24);
}

.button-light {
  background: var(--color-white);
  color: var(--color-slate-950);
  border-color: rgba(15, 23, 42, 0.1);
}

.button-light:hover {
  background: #eef2f7;
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.2);
}

.button:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.45);
  outline-offset: 3px;
}

.button:active {
  transform: translateY(0);
}

.card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow-soft);
  backdrop-filter: blur(10px);
}

.card-dark {
  background: var(--color-slate-900);
  box-shadow: var(--card-shadow-dark);
}

.brand-card {
  background: var(--color-brand);
}

.grid-two {
  display: grid;
  gap: 2rem;
}

.grid-intro {
  display: grid;
  gap: 2.5rem;
}

.challenge-copy {
  display: grid;
  gap: 1.5rem;
}

.challenge-list {
  margin: 0;
  padding-left: 1.25rem;
  padding-left: 0;
  list-style: none;
  color: var(--color-slate-700);
}

.challenge-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  break-inside: avoid;
  font-size: 1rem;
  line-height: 1.7;
}

.challenge-list li:last-child {
  margin-bottom: 0;
}

.challenge-list li::before {
  content: "x";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 900;
  color: var(--color-red-500);
}

.solution-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--color-slate-700);
}

.solution-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  break-inside: avoid;
  font-size: 1rem;
  line-height: 1.7;
}

.solution-list li:last-child {
  margin-bottom: 0;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 900;
  color: var(--color-emerald-500);
}

.solution-list-light {
  color: var(--color-slate-300);
}

.solution-flow {
  display: grid;
  gap: 1.5rem;
}

.solution-step {
  display: grid;
  gap: 0.65rem;
}

.solution-step .title-sm {
  color: var(--color-white);
}

.feature-grid {
  display: grid;
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}

.metrics-section {
  padding: 6rem 0 6rem;
}

.metrics-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.metric-item {
  padding: 1rem 0.75rem;
  text-align: center;
}

.metric-value {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: var(--color-brand);
}

.metric-label {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-slate-500);
}

.steps {
  margin-top: 3rem;
}

.step {
  display: grid;
  gap: 1rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.step+.step {
  border-top: 0;
}

.step-bordered {
  border-bottom: 1px solid var(--color-slate-200);
}

.step-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: var(--color-slate-400);
}

.step-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--color-slate-900);
}

.step-duration {
  font-weight: 700;
  color: var(--color-slate-400);
}

.pricing-grid {
  display: grid;
  gap: 2.5rem;
}

.stack-lg {
  display: grid;
  gap: 2rem;
}

.divider-top {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--color-white);
}

.price-sm {
  font-size: 1.25rem;
}

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

.faq-item {
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  list-style: none;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
}

.faq-question .title-sm {
  margin: 0;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-slate-900);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 2px;
  background: var(--color-white);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-default), opacity var(--transition-default);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  margin: 1rem 0 0;
  padding-right: 3.5rem;
}

.example-stage {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.example-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.75rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  min-height: 28rem;
}

.example-panel-dark {
  background: linear-gradient(180deg, #f8fffc 0%, #effcf6 100%);
}

.phone-shell {
  width: min(100%, 19rem);
  margin: auto auto;
  padding: 0.6rem;
  border-radius: 2rem;
  background: #111827;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}

.phone-screen {
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 57 / 128;
  background-image: url("companion_whatsapp.jpeg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.pdf-preview {
  width: min(100%, 28rem);
  margin: auto auto;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 210 / 297;
  background-image: url("rapport_pdf.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
}

.team-block {
  margin-top: 3rem;
}

.team-intro {
  max-width: var(--content-width);
}

.team-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.9rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow-soft);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--color-slate-200);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.3rem 1.1rem 1.5rem;
  text-align: center;
}

.team-name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  color: var(--color-slate-900);
}

.team-role {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-slate-700);
}

.team-socials {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.team-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: var(--color-slate-900);
  color: var(--color-white);
  transition: background-color var(--transition-default), transform var(--transition-default);
}

.team-social:hover {
  background: #172033;
  transform: translateY(-1px);
}

.team-social:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.45);
  outline-offset: 3px;
}

.team-social svg {
  width: 0.85rem;
  height: 0.85rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 75%;
    margin-inline: auto;
  }
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 0.75rem;
}

.mt-lg {
  margin-top: 1.25rem;
}

.mt-xl {
  margin-top: 1.5rem;
}

.mt-2xl {
  margin-top: 2rem;
}

.step-last {
  margin-bottom: 0;
  padding-bottom: 0;
}

.cta-title {
  font-size: 3rem;
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.footer-dark {
  background: var(--color-slate-900);
}

.footer-brand {
  width: min(100%, 15rem);
  height: auto;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.contact-form-light {
  background: rgba(248, 250, 252, 0.88);
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-form-light .form-field label {
  color: var(--color-slate-900);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(203, 213, 225, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-slate-900);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(94, 234, 212, 0.5);
  outline-offset: 2px;
  border-color: rgba(94, 234, 212, 0.7);
}

.contact-form .button {
  margin-top: 1.5rem;
}

.contact-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-feedback {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 700;
}

.form-feedback-success {
  color: var(--color-emerald-500);
}

.form-feedback-error {
  color: var(--color-red-500);
}

.contact-block {
  margin-top: 2rem;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.78;
  color: var(--color-slate-300);
}

.contact-block p {
  margin: 0;
}

.contact-link {
  color: var(--color-teal-300);
  transition: color var(--transition-default);
}

.contact-link:hover {
  color: var(--color-teal-200);
}

.footer-note {
  margin: 3rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-slate-500);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-slate-300);
  transition: color var(--transition-default);
}

.footer-links a:hover {
  color: var(--color-teal-300);
}

@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .section-tight {
    padding: 3rem 0;
  }

  .section-top-tight {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .hero-layout {
    gap: 3rem;
  }

  .title-xl {
    font-size: 3.75rem;
    line-height: 1.05;
  }

  .title-lg {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .nowrap-desktop {
    white-space: nowrap;
  }

  .card {
    padding: 3.5rem 3rem;
  }

  .step {
    grid-template-columns: 110px 1fr;
    gap: 2rem;
  }

  .challenge-list {
    column-count: 2;
    column-gap: 2.5rem;
  }

  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.75rem 2rem;
  }

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

  .form-field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 34rem);
  }

  .hero-video {
    margin-top: 0;
  }

  .hero-text {
    color: var(--color-white);
  }

  .grid-intro {
    grid-template-columns: 1fr 1.2fr;
  }

  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

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

  .metrics-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
