:root {
  --pine-deep: #111827;
  --pine: #ff5722;
  --pine-mid: #e64a19;
  --copper: #f5b400;
  --copper-soft: #ffd56a;
  --paper: #fff7f0;
  --mist: #ffe8d6;
  --surface: #ffffff;
  --ink: #12151a;
  --muted: #3d4650;
  --line: #ead7c8;
  --whatsapp: #25d366;
  --danger: #b91c1c;
  --font-display: "Lexend", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 12px;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  --max: 1120px;
  --page-gutter: clamp(1.25rem, 5vw, 2.25rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--muted);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--pine); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus {
  left: 1rem; top: 1rem; background: var(--pine); color: #fff;
  padding: .6rem 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 .85rem;
}
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.22;
  margin: 0 0 .75rem;
  font-weight: 700;
}
h1 { font-size: clamp(1.85rem, 4.2vw, 3.05rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 40rem;
  margin: 0 0 1.35rem;
  color: var(--muted);
}
.section--alt { background: var(--mist); }
.section--attract {
  background: var(--pine-deep);
  color: #c5d5cf;
}
.section--attract h2,
.section--attract h3 { color: #f3f6f4; }
.section--attract .lead { color: #9db5ad; }
.stage-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .55rem;
}
.section-head { margin-bottom: 2rem; max-width: 44rem; }
.section-head--wide { max-width: 48rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pine-deep);
  border-top: 5px solid var(--pine);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
  flex-wrap: nowrap;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  min-height: 42px;
  padding: .35rem .85rem;
}
.header-phone:hover { background: rgba(255,87,34,.25); }
@media (min-width: 860px) {
  .header-tools { margin-left: 0; order: 3; }
  .nav-links { margin-left: auto; order: 2; }
  .logo { order: 1; }
}
@media (max-width: 520px) {
  .header-phone span { display: none; }
  .header-phone { width: 42px; height: 42px; padding: 0; justify-content: center; }
}
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 36px; width: auto; }
.logo--footer img { height: 42px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.nav-toggle-bars i {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}
.site-header.is-nav-open .nav-toggle-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle-bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  color: #e3ece8;
  font-weight: 600;
  font-size: .92rem;
}
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links .nav-cta { color: #fff; }

@media (max-width: 859px) {
  .site-header.is-nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--pine-deep);
    padding: 1rem var(--page-gutter) 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: .35rem;
  }
  .nav-links a { padding: .7rem 0; }
}
@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 52px;
  padding: .75rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1.2;
}
.btn-ico { flex: 0 0 auto; }
.btn-primary {
  background: var(--pine);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 87, 34, .35);
}
.btn-primary:hover { background: var(--pine-mid); }
.btn-ghost,
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost { color: var(--ink); background: #fff; }
.hero .btn-ghost { background: #fff; }
.btn-wa {
  background: var(--whatsapp);
  color: #fff;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.btn-row--center { justify-content: center; }

@media (max-width: 859px) {
  .hero .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero .btn-row .btn-wa {
    grid-column: 1 / -1;
  }
  .hero .btn-row .btn {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .hero .btn-row {
    flex-wrap: nowrap;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 2.5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-paper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 87, 34, .28), transparent 32%),
    radial-gradient(circle at 8% 90%, rgba(245, 180, 0, .22), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.hero-rule {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 1.75rem;
}
.hero-copy { max-width: 40rem; }
.reassure {
  margin: 1rem 0 0;
  font-size: .92rem;
  color: var(--muted);
}
.hero-visual { min-width: 0; }
.hero-stage {
  background: var(--surface);
  border: 4px solid #ff5722;
  box-shadow: 0 18px 40px rgba(255, 87, 34, .22);
  padding: .7rem;
}
@media (min-width: 960px) {
  .hero-stage { transform: rotate(-1.1deg); }
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.hero-caption {
  margin: .7rem .2rem .2rem;
  font-size: .9rem;
  color: var(--muted);
}
.hero-caption strong { color: var(--ink); display: block; font-family: var(--font-display); }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 1.15rem;
}
.trust-pills > div,
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .92rem;
  color: var(--muted);
}
.trust-pills strong { color: var(--ink); font-family: var(--font-display); }
.stars {
  color: #f5b400;
  letter-spacing: .04em;
  font-size: 1rem;
}
.star-dim { opacity: .4; }
.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.trust-strip > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .92rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
}
.trust-gmb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem;
}
.trust-gmb img { width: min(100%, 280px); height: auto; }
.stat-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  font-weight: 800;
}
@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }
  .trust-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards / bento as editorial stacks */
.bento {
  display: grid;
  gap: 1rem;
}
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.15rem 1.2rem;
}
.bento-cell--media { padding: 0; overflow: hidden; }
.feature-item { display: grid; grid-template-columns: auto 1fr; gap: .85rem; }
.feature-item .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--mist);
  color: var(--pine);
  border-radius: 50%;
}
.feature-item .icon svg { width: 20px; height: 20px; }
.section-photo img { width: 100%; object-fit: cover; }
.section-photo figcaption {
  padding: .7rem 1rem 1rem;
  font-size: .85rem;
  color: var(--muted);
}
.decision-line {
  margin: 1.5rem 0 1rem;
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 44rem;
}
@media (min-width: 800px) {
  .bento--problems,
  .bento--benefits,
  .bento--reasons {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cell--media { grid-row: span 2; }
  .bento-cell--wide { grid-column: 1 / -1; }
}

.reason-grid { list-style: none; margin: 0; padding: 0; }
.reason-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.reason-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--copper);
  line-height: 1;
}

/* Tech */
.tech-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 0 1.25rem;
}
.tech-fade { display: none; }
.tech-track {
  display: flex;
  gap: .75rem;
  width: max-content;
  animation: tech-marquee 36s linear infinite;
}
.tech-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 190px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .8rem 1rem;
}
.tech-card-icon { color: var(--pine); }
.tech-card-copy { display: flex; flex-direction: column; }
.tech-card-copy span { font-size: .8rem; color: var(--muted); }
@keyframes tech-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tech-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* Solutions */
.solutions-grid {
  display: grid;
  gap: 1.25rem;
}
.solution-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
}
.solution-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.solution-body { padding: 1.35rem 1.35rem 1.5rem; }
.solution-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 .4rem;
}
.solution-body ul { margin: 0 0 1.1rem; padding-left: 1.1rem; }
.solution-body li { margin: .3rem 0; }
@media (min-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr 1fr; }
}

/* Work */
.case {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
}
.case:last-child { border-bottom: 0; margin-bottom: 0; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pine);
  background: var(--mist);
  padding: .25rem .55rem;
  margin-bottom: .55rem;
}
.case-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .75rem;
  background: var(--pine-deep);
}
.browser-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9db5ad;
}
.browser-url {
  margin-left: .5rem;
  color: #c5d5cf;
  font-size: .78rem;
}
.case-viewport {
  --case-h: 420px;
  height: var(--case-h);
  overflow: hidden;
}
.case-viewport img {
  width: 100%;
  transform: translateY(0);
  transition: transform 8s linear;
}
.case-frame.is-scrubbing .case-viewport img,
.case-frame:hover .case-viewport img {
  transform: translateY(calc(-100% + var(--case-h)));
}
@media (min-width: 900px) {
  .case { grid-template-columns: .9fr 1.1fr; align-items: start; }
}

/* Why / process / offer */
.why-layout,
.offer-layout,
.closing-layout {
  display: grid;
  gap: 1.5rem;
}
.why-points { display: grid; gap: 1rem; }
.why-points article {
  padding-left: 1rem;
  border-left: 3px solid var(--copper);
}
.media-frame { border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.media-shot img { width: 100%; object-fit: cover; }

.process-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}
.process-index {
  font-family: var(--font-display);
  color: var(--copper);
  font-size: 1.35rem;
}
.check-list { margin: 0 0 1.2rem; padding-left: 1.15rem; }
.check-list li { margin: .35rem 0; }

@media (min-width: 860px) {
  .why-layout,
  .offer-layout,
  .closing-layout { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .process-list { grid-template-columns: 1fr 1fr; }
}

/* Form */
.book-wrap { max-width: 720px; }
.form-error {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}
.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
  margin-bottom: .65rem;
}
.progress span {
  height: 4px;
  background: var(--mist);
}
.progress span.active { background: var(--pine); }
.progress-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
}
.form-step { display: none; }
.form-step.active { display: block; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
  font-size: .92rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: .65rem .8rem;
  border-radius: var(--radius);
}
.field textarea { min-height: 120px; resize: vertical; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.hint { font-size: .82rem; color: var(--muted); margin: .35rem 0 0; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .5rem;
}
.form-status { min-height: 1.25rem; font-size: .9rem; }

/* FAQ */
.faq-grid { display: grid; gap: .65rem; }
.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  padding: .2rem 1rem;
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: .9rem 0;
}
.faq-grid details p { margin: 0 0 1rem; }

/* Thank you */
.thank-you-wrap { max-width: 720px; }
.thank-you-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem;
  margin: 1.25rem 0;
}
.thank-you-back { margin-top: 1.25rem; }

/* Footer */
.site-footer {
  background: var(--pine-deep);
  color: #c5d5cf;
  padding: 2.75rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
}
.footer-tagline {
  font-family: var(--font-display);
  color: #f3f6f4;
  font-size: 1.15rem;
  margin: .85rem 0 .5rem;
}
.footer-brand-copy { margin: 0 0 1rem; }
.footer-brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.footer-contact strong,
.footer-trust strong {
  display: block;
  color: #f3f6f4;
  margin-bottom: .7rem;
}
.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li {
  display: flex;
  gap: .55rem;
  margin: .55rem 0;
}
.footer-contact a { color: #e3ece8; }
.footer-crosslink { font-size: .9rem; }
.footer-crosslink a { color: var(--copper-soft); }
.gmb-note { font-size: .85rem; }
.social-row { display: flex; gap: .5rem; margin-top: .85rem; }
.social-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: var(--radius);
}
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: .85rem;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}
.footer-bottom a { color: #e3ece8; }
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.4fr .9fr .9fr; }
}

/* Sticky + float */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .65rem var(--page-gutter) calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 247, 240, .97);
  border-top: 1px solid var(--line);
}
.sticky-cta.is-visible { display: grid; }
.sticky-cta .btn { width: 100%; }
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 859px) {
  .wa-float { display: none; }
  body.has-sticky-cta { padding-bottom: 5.75rem; }
}

.reveal.is-pending { opacity: 0; transform: translateY(12px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }
@media (prefers-reduced-motion: reduce) {
  .reveal.is-pending { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .case-viewport img { transition: none; }
}

/* Unique vibrant section skins */
.section { position: relative; overflow: hidden; }
.section--problems {
  background-color: #fff5f0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 87, 34, .16), transparent 42%);
}
.section--problems .bento-cell {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(255, 87, 34, .08);
  border: 0;
  border-left: 6px solid #ff5722;
}
.section--problems .feature-item:nth-child(3n) { border-left-color: #f5b400; }
.section--problems .feature-item:nth-child(3n+1) { border-left-color: #0ea5e9; }
.section--problems .feature-item:nth-child(3n+2) { border-left-color: #10b981; }
.section--problems .feature-item .icon {
  background: #fff3ee;
  color: #ff5722;
  width: 48px;
  height: 48px;
}
.section--problems .bento-cell--media {
  border-left: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(17, 24, 39, .12);
}

.section--tech {
  background: #111827;
  color: #e5e7eb;
}
.section--tech h2,
.section--tech .decision-line { color: #fff; }
.section--tech .lead { color: #cbd5e1; }
.section--tech .stage-label { color: #ffd56a; }
.section--tech .tech-card {
  background: #1f2937;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.section--tech .tech-card:nth-child(4n+1) .tech-card-icon { color: #ff5722; }
.section--tech .tech-card:nth-child(4n+2) .tech-card-icon { color: #f5b400; }
.section--tech .tech-card:nth-child(4n+3) .tech-card-icon { color: #2dd4bf; }
.section--tech .tech-card:nth-child(4n) .tech-card-icon { color: #38bdf8; }
.section--tech .tech-card-copy span { color: #9ca3af; }

.channel-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .channel-grid { grid-template-columns: 1fr 1fr; }
}
.channel-card {
  background: #1f2937;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  color: #cbd5e1;
}
.channel-card:nth-child(1) { border-top: 4px solid #ff5722; }
.channel-card:nth-child(2) { border-top: 4px solid #f5b400; }
.channel-card:nth-child(3) { border-top: 4px solid #2dd4bf; }
.channel-card:nth-child(4) { border-top: 4px solid #38bdf8; }
.channel-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .45rem;
}
.channel-card p { margin: 0; }

.proof-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .proof-band { grid-template-columns: 1.15fr .85fr; }
}
.proof-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.proof-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.proof-copy h3 { margin-top: 0; }
.proof-copy ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: #cbd5e1;
}
.proof-copy li { margin: .35rem 0; }

.section--reasons {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 180, 0, .28), transparent 40%),
    #fffaf0;
}
.section--reasons .reason-item {
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 30px rgba(245, 180, 0, .16);
}
.section--reasons .reason-num {
  font-size: 2.1rem;
  color: #ff5722;
  min-width: 2.2rem;
}

.section--solutions {
  background-color: #fff7f0;
  background-image: linear-gradient(135deg, #fff7f0 0%, #e8f8ff 100%);
}
.solution-card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .12);
  overflow: hidden;
}
.solution-card--dev { outline: 3px solid #ff5722; outline-offset: -3px; }
.solution-card--redesign { outline: 3px solid #0d9488; outline-offset: -3px; }
.solution-card--dev .solution-kicker { color: #ff5722; }
.solution-card--redesign .solution-kicker { color: #0d9488; }
.solution-card--redesign .btn-primary {
  background: #0d9488;
  box-shadow: 0 8px 20px rgba(13, 148, 136, .35);
}
.solution-card--redesign .btn-primary:hover { background: #0f766e; }

.section--benefits {
  background:
    radial-gradient(circle at 10% 80%, rgba(14, 165, 233, .18), transparent 36%),
    #f4fbff;
}
.section--benefits .benefit-item {
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(14, 165, 233, .12);
}
.section--benefits .bento-cell--media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(14, 165, 233, .18);
}

.section--work {
  background: #1a1423;
  color: #e5e7eb;
}
.section--work h2,
.section--work h3 { color: #fff; }
.section--work .lead,
.section--work .case-meta p { color: #cbd5e1; }
.section--work .tag {
  background: rgba(255, 87, 34, .2);
  color: #ffd56a;
}
.section--work .case { border-bottom-color: rgba(255,255,255,.1); }
.section--work .case-frame {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.section--work .browser-chrome { background: #ff5722; }
.section--work .browser-url { color: #fff; }

.section--why {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 87, 34, .4), transparent 34%),
    #111827;
}
.section--why .why-points article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid #ff5722;
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.section--why .media-frame {
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(255, 87, 34, .25);
}

.section--process {
  background-color: #ecfdf5;
  background-image: linear-gradient(180deg, #ecfdf5 0%, #fff 70%);
}
.section--process .process-item {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 185, 129, .16);
  background: #fff;
}
.section--process .process-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ff5722;
  color: #fff;
  font-size: 1rem;
}
.section--process .process-item:nth-child(2) .process-index { background: #f5b400; color: #111; }
.section--process .process-item:nth-child(3) .process-index { background: #0ea5e9; }
.section--process .process-item:nth-child(4) .process-index { background: #10b981; }

.section--offer {
  background-color: #ff5722;
  background-image: linear-gradient(120deg, #ff5722 0%, #ff8a3d 55%, #f5b400 100%);
  color: #fff;
}
.section--offer h2 { color: #fff; }
.section--offer .lead,
.section--offer .check-list { color: rgba(255,255,255,.92); }
.section--offer .section-photo {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,.2);
}
.section--offer .btn-primary {
  background: #111827;
  box-shadow: none;
}
.section--offer .btn-primary:hover { background: #000; }

.section--book {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 87, 34, .2), transparent 46%),
    #fff7f0;
}
.section--book .form-shell {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(255, 87, 34, .16);
  border-top: 6px solid #ff5722;
}

.section--faq {
  background-color: #fff;
}
.section--faq details {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
  border-left: 6px solid #ff5722;
}
.section--faq details:nth-child(3n+2) { border-left-color: #0ea5e9; }
.section--faq details:nth-child(3n) { border-left-color: #10b981; }

.section--closing {
  background-color: #111827;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245, 180, 0, .35), transparent 32%),
    linear-gradient(160deg, #111827 0%, #7c2d12 100%);
}
.section--closing .section-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,.3);
}
