@font-face { font-family: "Manrope"; src: url("../assets/fonts/manrope-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../assets/fonts/manrope-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../assets/fonts/manrope-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../assets/fonts/manrope-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../assets/fonts/manrope-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --primary: #bd0a10;
  --primary-dark: #9e080d;
  --highlight: #e8433b;
  --foreground: #242424;
  --muted: #757575;
  --border: #e5e5e5;
  --input: #d6d6d6;
  --surface: #fdf9f8;
  --brand-soft: #fff0ef;
  --secondary: #fce9e8;
  --ink: #2a2828;
  --ink-muted: #c5c5c5;
  --ink-border: #4c4949;
  --white: #fff;
  --danger: #d93434;
  --success: #258c5b;
  --shadow: 0 10px 24px rgba(189, 10, 16, .24);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--foreground); background: var(--white); font-family: "Manrope", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body, button, input, textarea, select { font-family: "Manrope", Arial, sans-serif; }
button, input, textarea, select { font-size: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
p, h1, h2, h3, blockquote, figure { margin: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.shell { width: min(calc(100% - 2rem), 1180px); margin-inline: auto; }
.section-space { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.anchor-section { scroll-margin-top: 5rem; }
.section-kicker { color: var(--primary); font-size: .75rem; line-height: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.section-kicker.highlight { color: var(--highlight); }
.section-title { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; font-weight: 800; text-wrap: balance; }
.lead { font-size: 1.25rem; line-height: 1.7; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid rgba(229,229,229,.8); background: rgba(255,255,255,.95); backdrop-filter: blur(9px); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: auto; height: 60px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
.desktop-nav > a, .mobile-nav > a { color: var(--muted); font-size: .875rem; font-weight: 700; transition: color .2s ease; }
.desktop-nav > a:hover, .mobile-nav > a:hover { color: var(--primary); }
.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 7px; background: transparent; color: var(--foreground); cursor: pointer; }
.menu-toggle:hover { background: var(--secondary); }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { padding-block: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav[hidden] { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 42px; border-radius: 6px; padding: .68rem 1.2rem; font-weight: 700; line-height: 1.25; cursor: pointer; transition: filter .2s, box-shadow .2s, transform .2s, opacity .2s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--primary), var(--highlight)); box-shadow: var(--shadow); }
.btn-primary:hover { filter: brightness(.92) saturate(1.08); box-shadow: 0 12px 28px rgba(189, 10, 16, .34); }
.btn-light { color: var(--primary); background: var(--white); box-shadow: 0 10px 24px rgba(0,0,0,.15); }
.btn-light:hover { filter: brightness(.96); }
.btn-xl { min-height: 48px; padding: .8rem 1.4rem; }
.btn:disabled { cursor: not-allowed; opacity: .5; filter: grayscale(.15); transform: none; box-shadow: none; }

.hero-section { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--white) 40%, var(--brand-soft)); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 2.5rem; padding: 5.25rem 0 1rem; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid rgba(189,10,16,.2); border-radius: 99px; background: var(--secondary); padding: .5rem .75rem; color: var(--primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow svg { width: 1rem; height: 1rem; }
.hero-copy h1 { max-width: 48rem; margin-top: 1.25rem; font-size: clamp(2.5rem, 4.5vw, 3.75rem); line-height: 1.06; font-weight: 800; text-wrap: balance; }
.hero-copy > p { max-width: 42rem; margin-top: 1.5rem; color: var(--muted); font-size: 1.125rem; line-height: 1.65; }
.hero-copy .btn { margin-top: 2rem; }
.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; }
.hero-visual > img { position: relative; z-index: 2; width: 100%; height: 100%; max-height: 520px; border-radius: 9px; object-fit: contain; filter: drop-shadow(0 22px 25px rgba(0,0,0,.2)); }
.hero-shape { position: absolute; inset: 4% -18% 2% 5%; border-radius: 45% 20% 45% 25%; background: linear-gradient(145deg, var(--primary), var(--highlight)); transform: rotate(-3deg); opacity: .13; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: .5rem; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,.92); padding: .65rem .8rem; box-shadow: 0 16px 40px rgba(0,0,0,.15); color: var(--foreground); font-size: .75rem; font-weight: 800; backdrop-filter: blur(8px); }
.floating-chip svg { color: var(--primary); }
.chip-left { left: 0; top: 3rem; }
.chip-right { right: 0; bottom: 3.5rem; }

.brands-section { padding-block: 3rem; border-block: 1px solid var(--border); background: var(--surface); }
.brands-title { text-align: center; color: var(--primary); font-size: .875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.logo-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); align-items: center; gap: 1.5rem; }
.logo-grid > div { height: 5.5rem; display: flex; align-items: center; justify-content: center; }
.logo-grid img { width: 9rem; height: 5.5rem; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .25s; }
.logo-grid img:hover { filter: grayscale(0); opacity: 1; }
.logo-grid img[data-logo="omo"], .logo-grid img[data-logo="thebest"] { width: 7rem; }
.logo-grid img[data-logo="ortho"] { width: 10.5rem; }
.logo-grid img[data-logo="sicoob"] { width: 7.75rem; }
.stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--border); }
.stats > div { padding: 1.75rem 1.5rem; text-align: center; }
.stats > div + div { border-left: 1px solid var(--border); }
.stats strong { display: block; color: var(--primary); font-size: 1.875rem; font-weight: 800; }
.stats span { display: block; margin-top: .25rem; color: var(--muted); font-size: .875rem; }

.dark-section { color: var(--white); background: var(--ink); }
.challenge-section { background: #191515; }
.qg-section, .qg-section .qg-grid, .qg-section .qg-grid article { background: #191515; }
.challenge-copy { max-width: 62.5rem; }
.challenge-copy .section-title { max-width: 58rem; margin-top: 1rem; }
.dark-muted { max-width: 48rem; margin-top: 1.5rem; color: var(--ink-muted); }
.challenge-copy .btn { margin-top: 2rem; }
.center-heading { max-width: 48rem; margin-inline: auto; text-align: center; }
.center-heading .section-title { margin-top: .75rem; }
.video-frame { position: relative; max-width: 100%; aspect-ratio: 16/9; margin-top: 2.5rem; overflow: hidden; border: 8px solid var(--ink); border-radius: 12px; background: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.center-action { margin-top: 2rem; text-align: center; }

.solution-section { background: var(--brand-soft); text-align: center; }
.solution-copy { display: flex; align-items: center; flex-direction: column; }
.round-icon { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); background: var(--primary); }
.round-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-kicker { margin-top: 1.5rem; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.solution-copy .section-title { max-width: 60rem; margin-top: .75rem; }
.solution-line { margin-top: 1.5rem; color: var(--primary); font-size: 1.5rem; font-weight: 800; }
.solution-copy .btn { margin-top: 2rem; }

.feature-section.alt { background: var(--surface); }
.feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: center; gap: 3rem; }
.feature-copy h2 { margin-top: 1.5rem; font-size: clamp(2.5rem, 4vw, 3.75rem); line-height: 1.03; font-weight: 800; text-wrap: balance; }
.feature-copy > p { margin-top: 1.25rem; color: var(--muted); font-size: 1.125rem; line-height: 1.7; }
.feature-copy > strong { display: block; margin-top: 1.25rem; color: var(--primary); font-size: 1.125rem; }
.feature-copy > .btn { margin-top: 2rem; }
.feature-label { display: flex; align-items: center; gap: .75rem; }
.feature-label span { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--primary); background: var(--secondary); }
.feature-label p { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-visual { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 12px; background: var(--brand-soft); padding: 1.5rem; }
.product-visual::before { content: ""; position: absolute; width: 13rem; height: 13rem; border: 1px solid var(--primary); border-radius: 50%; opacity: .15; }
.product-visual img { position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(0,0,0,.18)); }
.order-one { order: 1; }
.order-two { order: 2; }

.how-heading { max-width: 57rem; }
.how-heading .section-title { margin-top: 1rem; }
.qg-grid { margin-block: 3rem 2.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border-radius: 9px; background: var(--ink-border); }
.qg-grid article { min-height: 230px; display: flex; align-items: flex-start; flex-direction: column; gap: 1rem; padding: 2rem; background: var(--ink); }
.qg-grid article > svg { width: 1.5rem; height: 1.5rem; color: var(--highlight); }
.qg-grid article strong { font-size: .8rem; letter-spacing: .1em; }
.qg-grid article p { color: var(--ink-muted); line-height: 1.7; }

.testimonials-heading { max-width: 40rem; }
.testimonials-heading .section-title { margin-top: .75rem; }
.testimonial-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.testimonial-grid figure { min-height: 290px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 8px; background: var(--white); padding: 2rem; }
.stars { color: #c18d18; font-size: 1.125rem; letter-spacing: .08em; }
.testimonial-grid blockquote { margin-top: 1rem; font-size: 1.05rem; line-height: 1.75; }
.testimonial-grid figcaption { margin-top: auto; padding-top: 1.5rem; color: var(--primary); font-size: .82rem; font-weight: 800; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2.5rem; }
.faq-grid .section-title { margin-top: .75rem; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding-block: 1.5rem; font-weight: 700; line-height: 1.5; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--primary); }
.faq-list summary span { color: var(--muted); font-size: 1.4rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(180deg); }
.faq-list details > div { padding: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }
.faq-list ul { margin: 1rem 0 0; padding-left: 1.25rem; }
.faq-list .btn { margin-top: 2rem; }

.form-section { color: var(--white); background: var(--primary); }
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 3rem; }
.form-kicker { color: #ffd1d1; }
.form-copy .section-title { margin-top: .75rem; }
.form-copy > p:not(.section-kicker) { margin-top: 1.5rem; color: #f7d9d9; font-size: 1.125rem; line-height: 1.7; }
.selected-interest { margin-top: 2rem; display: flex; align-items: center; gap: .75rem; font-size: .875rem; }
.selected-interest svg { width: 1.3rem; height: 1.3rem; }
.form-panel { border-radius: 12px; background: var(--white); padding: clamp(1.5rem,4vw,2.5rem); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.fields-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.field-full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: .5rem; color: var(--foreground); font-size: .875rem; font-weight: 800; }
.field input { width: 100%; height: 3rem; border: 1px solid var(--input); border-radius: 6px; background: var(--white); padding-inline: .85rem; color: var(--foreground); outline: 0; transition: .2s; }
.field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(189,10,16,.14); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.error { min-height: 1.3em; display: block; margin-top: .35rem; color: var(--danger); font-size: .78rem; }
.submit-btn { width: 100%; margin-top: .45rem; }
.form-status { min-height: 1.4rem; margin-top: .75rem; color: var(--muted); text-align: center; font-size: .85rem; }
.form-status.error-message { color: var(--danger); }

.launch-section { background: var(--surface); }
.launch-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.launch-card { border: 1px solid var(--border); border-radius: 8px; background: var(--white); padding: clamp(1.5rem,4vw,2.5rem); }
.launch-card.accent { border-top: 4px solid var(--primary); }
.launch-icon { width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; border-radius: 7px; color: var(--primary); background: var(--secondary); }
.launch-icon.filled { color: var(--white); background: var(--primary); }
.launch-card h2 { margin-top: 1.5rem; font-size: 1.5rem; line-height: 1.25; font-weight: 800; }
.launch-card p { min-height: 3.3rem; margin-top: .75rem; color: var(--muted); line-height: 1.65; }
.launch-card .btn { margin-top: 1.75rem; }

.final-cta { position: relative; overflow: hidden; color: var(--white); background: #191515; text-align: center; }
.final-cta::after { content: ""; position: absolute; inset: -80% -20%; background: linear-gradient(115deg, transparent 32%, rgba(189,10,16,.38) 50%, transparent 68%); transform: rotate(-8deg); }
.final-cta .shell { position: relative; z-index: 1; }
.final-cta h2 { max-width: 48rem; margin-inline: auto; }
.final-cta p { max-width: 42rem; margin: 1.25rem auto 0; color: var(--ink-muted); font-size: 1.125rem; line-height: 1.7; }
.final-cta .btn { margin-top: 2rem; }

footer { padding-block: 2rem; border-top: 1px solid var(--border); background: var(--white); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.footer-inner img { width: auto; height: 56px; }
.footer-inner p { color: var(--muted); font-size: .875rem; }

.thank-you-page { min-height: 100vh; display: flex; flex-direction: column; background: linear-gradient(145deg, var(--white) 30%, var(--brand-soft)); }
.thank-you-header { position: static; }
.thank-you-main { flex: 1; display: grid; place-items: center; padding: 5rem 1rem; }
.thank-you-card { width: min(100%, 700px); border: 1px solid rgba(189,10,16,.1); border-radius: 16px; background: rgba(255,255,255,.96); padding: clamp(2rem,6vw,4rem); box-shadow: 0 30px 80px rgba(55,20,20,.13); text-align: center; }
.success-icon { width: 4.5rem; height: 4.5rem; display: grid; place-items: center; margin-inline: auto; border-radius: 50%; color: var(--white); background: var(--success); }
.success-icon svg { width: 2.25rem; height: 2.25rem; stroke-width: 2.5; }
.thank-you-card .section-kicker { margin-top: 1.75rem; }
.thank-you-card h1 { margin-top: .75rem; font-size: clamp(2.1rem,5vw,3.7rem); line-height: 1.08; font-weight: 800; }
.thank-you-card > p:not(.section-kicker) { max-width: 34rem; margin: 1.25rem auto 0; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.thank-you-actions { margin-top: 2rem; display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; }
.btn-outline { border: 1px solid var(--input); color: var(--foreground); background: var(--white); box-shadow: none; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 8.5rem 4rem; }
  .hero-visual { min-height: 430px; }
  .logo-grid { grid-template-columns: repeat(3,1fr); }
  .feature-grid, .form-grid { gap: 2.25rem; }
  .qg-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .brand img { height: 54px; }
  .hero-copy h1 { font-size: 2.55rem; }
  .hero-visual { min-height: 340px; }
  .floating-chip { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stats > div + div { border-left: 0; border-top: 1px solid var(--border); }
  .feature-grid, .form-grid, .testimonial-grid, .launch-grid { grid-template-columns: 1fr; }
  .order-one, .order-two { order: initial; }
  .feature-section.alt .product-visual { order: 2; }
  .product-visual { min-height: 280px; padding: 1rem; }
  .qg-grid { grid-template-columns: 1fr; }
  .fields-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .launch-card p { min-height: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 479px) {
  .shell { width: min(calc(100% - 1.5rem), 1180px); }
  .section-space { padding-block: 4rem; }
  .hero-grid { padding-top: 7.5rem; gap: 1.5rem; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-copy > p { font-size: 1rem; }
  .hero-visual { min-height: 270px; }
  .logo-grid { grid-template-columns: repeat(2,1fr); }
  .btn-xl { width: 100%; }
  .feature-copy h2 { font-size: 2.3rem; }
  .testimonial-grid figure { min-height: 320px; padding: 1.5rem; }
  .thank-you-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
