:root {
  --ink: #17152b;
  --purple: #5b2be0;
  --purple-dark: #4720ba;
  --coral: #ff5a36;
  --yellow: #ffd84a;
  --cream: #fff8f1;
  --white: #ffffff;
  --muted: #6d6879;
  --line: #e9e4df;
  --green: #25d366;
  --green-accessible: #128c4e;
  --soft-purple: #f5f2ff;
  --soft-gray: #f8f7fb;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(23, 21, 43, 0.11);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font: 400 1rem/1.65 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
h2 { margin-bottom: 1.35rem; font-size: clamp(2.45rem, 5vw, 4.25rem); }
h3 { font-size: 1.42rem; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 105px 0; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 18px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--yellow); }
.section-heading { max-width: 800px; margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.section-heading.centered { margin: 0 auto 55px; text-align: center; }
.section-heading.centered .eyebrow,
.section-heading.centered > p:last-child { justify-content: center; margin-inline: auto; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 9px 22px rgba(91, 43, 224, 0.18);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { background: var(--purple-dark); box-shadow: 0 13px 28px rgba(91, 43, 224, 0.28); transform: translateY(-2px); }
.button span { font-size: 1.15em; }
.button-small { min-height: 43px; padding: 11px 19px; font-size: 0.86rem; }
.button-secondary { color: var(--ink); background: transparent; border: 1.5px solid #cbc5d4; box-shadow: none; }
.button-secondary:hover { color: var(--purple); background: var(--white); border-color: var(--purple); box-shadow: none; }
.button-light { color: var(--ink); background: var(--white); box-shadow: none; }
.button-light:hover { color: var(--purple); background: var(--cream); }
.button-block { width: 100%; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid rgba(23, 21, 43, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(23, 21, 43, 0.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 0.85rem; font-weight: 750; }
.main-nav > a:not(.button) { position: relative; padding: 8px 0; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 10px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 160px 0 86px; background: var(--cream); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-one { top: -110px; right: -130px; width: 610px; height: 610px; background: rgba(255, 216, 74, 0.22); }
.hero-orb-two { bottom: -240px; left: 42%; width: 440px; height: 440px; border: 1px solid rgba(91, 43, 224, 0.13); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: 46px; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.15rem, 5.7vw, 5rem); }
.hero h1 span { position: relative; display: inline; color: var(--purple); }
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 7px;
  border-radius: 8px;
  background: var(--yellow);
}
.hero-text { max-width: 650px; margin-bottom: 30px; color: #5e596a; font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin: 35px 0 15px; padding-top: 24px; border-top: 1px solid #dfd8d0; }
.hero-metrics div { padding-right: 14px; }
.hero-metrics strong, .hero-metrics span { display: block; }
.hero-metrics strong { font-family: "Outfit", Arial, sans-serif; font-size: 0.98rem; line-height: 1.25; }
.hero-metrics span { margin-top: 4px; color: #777181; font-size: 0.78rem; line-height: 1.35; }
.microcopy { max-width: 670px; margin-bottom: 0; color: #817b87; font-size: 0.8rem; }
.hero-visual { position: relative; z-index: 1; margin: 0; min-width: 0; }
.hero-visual::before { content: ""; position: absolute; inset: 7% -12% 8% 4%; border: 1px solid rgba(91, 43, 224, 0.16); border-radius: 50%; }
.hero-visual picture, .hero-visual > img { position: relative; z-index: 2; width: 119%; max-width: none; margin-left: -13%; filter: drop-shadow(0 30px 34px rgba(23, 21, 43, 0.2)); }
.visual-label {
  position: absolute;
  z-index: 4;
  top: 5%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(23, 21, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(23, 21, 43, 0.1);
  font-size: 0.76rem;
  font-weight: 800;
}
.visual-label span { color: var(--coral); }
.visual-note {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: 7%;
  max-width: 225px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(23, 21, 43, 0.15);
  font-size: 0.78rem;
  line-height: 1.45;
}
.visual-note > span { display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 6px; border-radius: 50%; color: #159748; background: #dcf8e5; font-weight: 900; }
.business-mockup picture,
.business-mockup > img { aspect-ratio: 4 / 3; height: auto; object-fit: contain; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { padding: 32px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.benefit-card:hover { border-color: #cec3f2; box-shadow: 0 18px 38px rgba(23, 21, 43, 0.07); transform: translateY(-5px); }
.benefit-card h3 { margin: 22px 0 12px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: 0.91rem; }
.icon-box { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; color: var(--purple); background: #eee8ff; }
.icon-box svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon-coral { color: var(--coral); background: #ffe7e1; }
.icon-yellow { color: #886900; background: #fff1bd; }
.icon-green { color: #159748; background: #e1f8e9; }

.essentials { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.essentials::after { content: "§"; position: absolute; top: -165px; left: 27%; color: rgba(255, 255, 255, 0.035); font: 800 470px/1 "Outfit", sans-serif; pointer-events: none; }
.essentials-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: start; gap: 90px; }
.essentials h2 { color: var(--white); }
.essentials-copy { position: sticky; top: 130px; }
.essentials-copy > p:not(.eyebrow) { color: #c4c0cf; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; color: var(--yellow); font-weight: 800; }
.text-link:hover { color: var(--white); }
.check-panel { padding: 14px 30px; border-radius: 28px; color: var(--ink); background: var(--white); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18); }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 13px; padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 750; }
.feature-list li:last-child { border-bottom: 0; }
.feature-list span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: #159748; background: #e2faeb; font-size: 0.76rem; font-weight: 900; }
.feature-list.two-columns { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
.feature-list.two-columns li:nth-last-child(-n + 2) { border-bottom: 0; }

.segments { background: var(--white); }
.segments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.segment-card { position: relative; display: flex; flex-direction: column; min-height: 290px; padding: 30px 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-gray); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.segment-card:hover { border-color: #cec3f2; box-shadow: 0 18px 38px rgba(23, 21, 43, 0.07); transform: translateY(-5px); }
.segment-card > span { position: absolute; top: 14px; right: 18px; color: #ddd5f4; font: 800 3.6rem/1 "Outfit", sans-serif; }
.segment-card h3 { position: relative; max-width: 235px; margin: 66px 0 12px; }
.segment-card p { position: relative; margin-bottom: 22px; color: var(--muted); font-size: 0.9rem; }
.segment-card a { position: relative; margin-top: auto; color: var(--purple); font-size: 0.82rem; font-weight: 800; }
.segment-card a:hover { color: var(--purple-dark); }

.comparison { background: var(--soft-purple); }
.comparison-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch; gap: 22px; max-width: 970px; margin-inline: auto; }
.comparison-card { padding: 39px 36px; border-radius: 28px; }
.comparison-card h3 { margin-bottom: 25px; font-size: 1.8rem; }
.comparison-label { display: inline-flex; margin-bottom: 20px; padding: 6px 11px; border-radius: 999px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-card ul { margin: 0; padding: 0; list-style: none; }
.comparison-card li { position: relative; margin-bottom: 16px; padding-left: 29px; }
.comparison-card li::before { position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; font-size: 0.72rem; font-weight: 900; }
.social-card { border: 1px solid #ddd6e6; background: rgba(255, 255, 255, 0.72); }
.social-card .comparison-label { color: var(--muted); background: #ece9f0; }
.social-card li { color: var(--muted); }
.social-card li::before { content: "•"; color: #8d8798; background: #ece9f0; }
.site-card { color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.site-card h3 { color: var(--white); }
.site-card .comparison-label { color: var(--ink); background: var(--yellow); }
.site-card li { color: #dad6e3; }
.site-card li::before { content: "✓"; color: var(--ink); background: var(--yellow); }
.site-card .button { margin-top: 17px; }

.ethics { background: var(--soft-gray); }
.ethics-card { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 50px; padding: 58px 62px; border: 1px solid #e5e0ed; border-radius: 34px; background: var(--white); box-shadow: 0 20px 50px rgba(60, 30, 130, 0.04); }
.ethics-symbol { display: grid; place-items: center; width: 120px; height: 160px; border-radius: 60px 60px 18px 18px; color: var(--yellow); background: var(--ink); font: 700 60px/1 "Outfit", sans-serif; }
.ethics-card h2 { max-width: 760px; font-size: clamp(2.3rem, 4.4vw, 3.8rem); }
.ethics-card p:not(.eyebrow) { max-width: 840px; color: var(--muted); }
.ethics-card .ethics-note { margin: 22px 0 0; padding: 14px 17px; border-left: 4px solid var(--coral); border-radius: 0 10px 10px 0; background: var(--cream); font-size: 0.86rem; }

.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 20px; }
.price-card { position: relative; overflow: hidden; padding: 34px 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); }
.price-card.featured { padding-top: 76px; border: 2px solid var(--coral); box-shadow: 0 25px 50px rgba(255, 90, 54, 0.09); }
.featured-badge { position: absolute; inset: 0 0 auto; padding: 13px; color: var(--white); background: var(--coral); text-align: center; text-transform: uppercase; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; }
.price-card-head { min-height: 172px; }
.plan-tag { display: inline-block; margin-bottom: 20px; padding: 6px 11px; border-radius: 20px; color: var(--purple); background: #eee9ff; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 10px; font-size: 1.88rem; }
.price-card-head > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.89rem; }
.price { display: flex; flex-direction: column; padding: 19px 0 22px; border-bottom: 1px solid var(--line); }
.price small { color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.price strong { font: 700 2.5rem/1.15 "Outfit", sans-serif; }
.price strong span { color: var(--muted); font-size: 0.8rem; }
.price-card ul { min-height: 442px; margin: 0; padding: 22px 0 14px; list-style: none; }
.price-card li { position: relative; margin-bottom: 12px; padding-left: 26px; font-size: 0.82rem; }
.price-card li::before { content: "✓"; position: absolute; top: 0.14em; left: 0; display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: #14984b; background: #e6f9ec; font-size: 0.7rem; font-weight: 900; }
.price-card .button { padding-inline: 14px; font-size: 0.84rem; }
.dark-card { color: var(--white); background: var(--ink); border-color: var(--ink); }
.dark-card h3, .dark-card .price strong { color: var(--white); }
.dark-card .plan-tag { color: var(--yellow); background: rgba(255, 255, 255, 0.09); }
.dark-card .price-card-head > p:last-child, .dark-card .price small, .dark-card .price strong span { color: #c5c1d0; }
.dark-card .price { border-color: rgba(255, 255, 255, 0.14); }
.dark-card li::before { color: var(--ink); background: var(--yellow); }
.pricing-note { max-width: 770px; margin: 34px auto 0; color: var(--muted); text-align: center; font-size: 0.8rem; }

.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 0; padding: 0; list-style: none; }
.steps-grid::before { content: ""; position: absolute; top: 29px; right: 8%; left: 8%; height: 2px; background: #d9d1ed; }
.steps-grid li { position: relative; padding: 0 10px; text-align: center; }
.step-number { position: relative; z-index: 2; display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 25px; border: 5px solid var(--white); border-radius: 50%; color: var(--purple); background: #eee8ff; font: 800 1rem/1 "Outfit", sans-serif; }
.steps-grid li:last-child .step-number { color: var(--white); background: var(--coral); }
.steps-grid h3 { margin-bottom: 10px; font-size: 1.15rem; }
.steps-grid p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; }

.showcase { position: relative; overflow: hidden; color: var(--white); background: var(--purple); }
.showcase::after { content: "!"; position: absolute; right: -70px; bottom: -210px; color: rgba(255, 255, 255, 0.07); font: 800 520px/1 "Outfit", sans-serif; transform: rotate(7deg); }
.showcase-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: center; gap: 66px; }
.showcase h2 { color: var(--white); }
.showcase-copy > p:not(.eyebrow, .concept-note) { color: #e0d9f8; }
.showcase-list { margin: 28px 0; padding: 0; list-style: none; }
.showcase-list li { display: grid; grid-template-columns: 35px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); font-weight: 700; }
.showcase-list span { color: var(--yellow); font-family: "Outfit", sans-serif; font-weight: 800; }
.concept-note { margin-bottom: 0; color: #d5cdf2; font-size: 0.8rem; }
.showcase-visual { margin: 0; padding: 24px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 30px; background: rgba(255, 255, 255, 0.08); }
.showcase-visual img, .showcase-visual picture { width: 100%; filter: drop-shadow(0 25px 32px rgba(23, 21, 43, 0.28)); }
.showcase-visual figcaption { margin-top: 12px; color: #ddd5f7; text-align: center; font-size: 0.78rem; font-weight: 700; }
.showcase-intro { position: relative; z-index: 2; max-width: 830px; margin-bottom: 48px; }
.showcase-intro > p:last-child { max-width: 680px; color: #e0d9f8; }
.visual-examples { position: relative; z-index: 2; display: grid; grid-template-columns: 1.45fr 0.55fr; align-items: stretch; gap: 20px; }
.concept-feature { margin: 0; padding: 24px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 30px; background: rgba(255, 255, 255, 0.09); }
.concept-feature picture { aspect-ratio: 4 / 3; width: 100%; height: auto; }
.concept-feature img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(23, 21, 43, 0.3)); }
.concept-feature figcaption { margin-top: 12px; color: #ddd5f7; text-align: center; font-size: 0.78rem; font-weight: 700; }
.style-options { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
.style-card { padding: 23px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 22px; background: rgba(255, 255, 255, 0.09); }
.style-card > div { display: grid; grid-template-columns: 1fr 0.45fr 0.7fr; gap: 5px; margin-bottom: 19px; }
.style-card > div span { height: 7px; border-radius: 999px; background: var(--yellow); }
.style-card > div span:nth-child(2) { background: var(--coral); }
.style-card > div span:nth-child(3) { background: var(--white); opacity: 0.7; }
.style-local > div span:first-child { background: #73e0ae; }
.style-premium > div span:first-child { background: #d8b870; }
.style-premium > div span:nth-child(2) { background: #a89dbe; }
.style-card h3 { margin-bottom: 8px; color: var(--white); font-size: 1.15rem; }
.style-card p { margin-bottom: 0; color: #ded8f3; font-size: 0.8rem; line-height: 1.45; }
.published-projects { position: relative; z-index: 2; margin-top: 48px; padding-top: 38px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.projects-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.projects-heading h3 { margin-bottom: 0; color: var(--white); font-size: 1.65rem; }
.projects-heading p { margin-bottom: 0; color: #ddd5f7; font-size: 0.88rem; }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.projects-grid a { display: flex; flex-direction: column; gap: 7px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 17px; background: rgba(255, 255, 255, 0.08); transition: transform 180ms ease, background 180ms ease; }
.projects-grid a:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.projects-grid strong { color: var(--white); font-size: 0.91rem; }
.projects-grid span { color: #d7d0ef; font-size: 0.73rem; }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: start; gap: 90px; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-intro .button { margin-top: 18px; }
.faq-item { border-bottom: 1px solid #ded7d1; }
.faq-item h3 { margin: 0; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; padding: 24px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: "Outfit", Arial, sans-serif; font-size: 1.16rem; font-weight: 700; cursor: pointer; }
.faq-plus { flex: none; color: var(--purple); font: 400 1.75rem/1 ui-sans-serif, sans-serif; transition: transform 180ms ease; }
.faq-question[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 1fr; visibility: visible; }
.faq-answer p { min-height: 0; margin: 0; padding: 0 50px 22px 0; overflow: hidden; color: var(--muted); font-size: 0.9rem; }
.js .faq-answer { grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows 220ms ease, visibility 220ms; }
.js .faq-answer p { padding-bottom: 0; transition: padding 220ms ease; }
.js .faq-item.is-open .faq-answer { grid-template-rows: 1fr; visibility: visible; }
.js .faq-item.is-open .faq-answer p { padding-bottom: 22px; }

.quote { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: start; gap: 90px; }
.quote-copy > p:not(.eyebrow) { color: var(--muted); }
.direct-contact { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.contact-dot { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: #e7faee; }
.contact-dot::after { content: ""; width: 14px; height: 14px; border: 4px solid var(--green); border-radius: 50%; }
.direct-contact small, .direct-contact a { display: block; }
.direct-contact small { color: var(--muted); font-size: 0.78rem; }
.direct-contact a { font-weight: 800; }
.quote-form { padding: 32px; border-radius: 26px; background: var(--soft-gray); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 800; }
.field label span { color: var(--coral); }
.field input, .field select, .field textarea { display: block; width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid #dcd7e2; border-radius: 11px; outline: none; color: var(--ink); background: var(--white); transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 115px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91, 43, 224, 0.1); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c93d20; box-shadow: 0 0 0 3px rgba(201, 61, 32, 0.08); }
.field input::placeholder, .field textarea::placeholder { color: #9993a1; }
.field-error { display: block; min-height: 18px; margin-top: 3px; color: #a82f17; font-size: 0.76rem; line-height: 1.4; }
.button-submit { width: 100%; margin-top: 4px; }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 0.78rem; }

.final-cta { padding: 15px 0 105px; }
.final-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; overflow: hidden; padding: 64px; border-radius: 35px; color: var(--white); background: var(--purple); }
.final-card::after { content: ""; position: absolute; top: -140px; right: -120px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); }
.final-card h2 { max-width: 760px; margin-bottom: 0; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.5rem); }
.final-card .button { position: relative; z-index: 2; }

.site-footer { padding: 65px 0 25px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.45fr 1fr; gap: 45px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 15px 0 0; color: #aca8b9; font-size: 0.84rem; }
.site-footer h2 { margin-bottom: 17px; color: var(--yellow); font: 800 0.76rem/1.4 ui-sans-serif, system-ui, sans-serif; letter-spacing: 0.09em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #d5d2dc; font-size: 0.82rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 22px; border-top: 1px solid #393649; color: #8e8a9b; font-size: 0.76rem; }
.footer-bottom p { margin-bottom: 0; }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: var(--white); background: var(--green-accessible); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22); animation: whatsapp-pulse 2.4s infinite; }
.floating-whatsapp svg { width: 31px; fill: currentColor; }
@keyframes whatsapp-pulse { 50% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2), 0 0 0 11px rgba(37, 211, 102, 0.1); } }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 820px; margin-inline: auto; text-align: center; }
  .hero-content .eyebrow, .button-row { justify-content: center; }
  .hero-text, .microcopy { margin-inline: auto; }
  .hero-metrics { max-width: 740px; margin-inline: auto; }
  .hero-visual { width: min(760px, 100%); margin: 28px auto 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .essentials-grid { gap: 55px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 670px; margin-inline: auto; }
  .price-card-head, .price-card ul { min-height: 0; }
  .showcase-grid { gap: 42px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid, .quote-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.4fr; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(620px, calc(100% - 28px)); }
  .section { padding: 74px 0; }
  h2 { font-size: 2.42rem; }
  .site-header { height: 72px; }
  .brand img { width: 126px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(23, 21, 43, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 12px 10px; }
  .main-nav .button { margin-top: 8px; }
  .hero { padding: 112px 0 64px; }
  .hero h1 { font-size: clamp(2.85rem, 12vw, 3.7rem); }
  .hero-text { font-size: 1rem; }
  .button-row { display: grid; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
  .hero-visual picture, .hero-visual > img { width: 112%; margin-left: -8%; }
  .visual-label { left: 2%; }
  .benefits-grid, .essentials-grid, .showcase-grid, .faq-grid, .quote-grid, .comparison-grid, .visual-examples { grid-template-columns: 1fr; }
  .benefit-card { padding: 27px; }
  .essentials-grid { gap: 34px; }
  .essentials-copy, .faq-intro { position: static; }
  .check-panel { padding: 10px 20px; }
  .feature-list.two-columns { grid-template-columns: 1fr; }
  .feature-list.two-columns li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .segments-grid { grid-template-columns: 1fr; }
  .segment-card { min-height: 255px; }
  .comparison-card { padding: 31px 25px; }
  .ethics-card { grid-template-columns: 1fr; gap: 26px; padding: 38px 28px; }
  .ethics-symbol { width: 86px; height: 112px; border-radius: 45px 45px 14px 14px; font-size: 46px; }
  .price-card { padding: 29px 23px; }
  .price-card.featured { padding-top: 72px; }
  .steps-grid { grid-template-columns: 1fr 1fr; row-gap: 38px; }
  .steps-grid::before { display: none; }
  .showcase-grid { gap: 36px; }
  .showcase-visual { padding: 15px; }
  .style-options { grid-template-columns: 1fr; grid-template-rows: none; }
  .projects-heading { display: block; }
  .projects-heading h3 { margin-bottom: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .quote-form { padding: 24px 19px; }
  .final-cta { padding: 5px 0 74px; }
  .final-card { grid-template-columns: 1fr; gap: 28px; padding: 42px 28px; text-align: center; }
  .final-card .eyebrow { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .site-footer { padding-bottom: 95px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

@media (max-width: 520px) {
  .eyebrow { font-size: 0.75rem; }
  .hero h1 { font-size: 2.65rem; }
  .hero-metrics strong { font-size: 0.92rem; }
  .visual-label { top: 1%; }
  .visual-note { display: none; }
  .benefits-grid, .steps-grid, .footer-grid, .projects-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .feature-list li { font-size: 0.9rem; }
  .price strong { font-size: 2.2rem; }
  .faq-answer p { padding-right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}


/* =========================================================
   PADRONIZAÇÃO OBA SITES — HERO, PREÇOS, FAQ E CTA FINAL
   ========================================================= */
:root{--oba-navy:#17152b;--oba-orange:#ff5a36;--oba-orange-light:#ff7048;--oba-orange-dark:#e9472e;}

.hero{
  min-height:calc(100vh - 82px);
  padding:126px 0 58px;
  background:
    radial-gradient(circle at 88% 12%,rgba(255,255,255,.10),transparent 28%),
    linear-gradient(120deg,var(--oba-orange-light) 0%,var(--oba-orange) 46%,var(--oba-orange-dark) 100%);
}
.hero-orb-one{background:rgba(255,255,255,.09)}
.hero-orb-two{border-color:rgba(255,255,255,.17)}
.hero-grid{grid-template-columns:1.03fr .97fr;gap:44px;align-items:center}
.hero .eyebrow{color:var(--oba-navy)}
.hero h1{max-width:690px;margin-bottom:18px;color:#fff;font-size:clamp(3rem,5vw,4.55rem)}
.hero h1 span{color:var(--oba-navy)}
.hero h1 span::after{background:#ffd84a}
.hero-text{margin-bottom:22px;color:#fff}
.hero .button-row .button:first-child{background:var(--oba-navy);color:#fff;box-shadow:none}
.hero .button-row .button:first-child:hover{background:#211e3f}
.hero .button-secondary{color:#fff;border-color:rgba(255,255,255,.8)}
.hero .button-secondary:hover{color:var(--oba-navy);background:#fff;border-color:#fff}
.hero-metrics{margin:24px 0 10px;padding-top:18px;border-top-color:rgba(255,255,255,.35)}
.hero-metrics strong{color:var(--oba-navy)}
.hero-metrics span,.hero .microcopy{color:#fff}

.hero-form-wrap{position:relative;z-index:3;width:100%;padding-top:10px}
.hero-form{padding:26px 24px 20px;border-radius:24px;background:#fff;box-shadow:0 24px 60px rgba(23,21,43,.18)}
.hero-form-kicker{margin:0 0 4px;color:var(--oba-orange);font-size:.74rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.hero-form h2{margin:0 0 6px;color:var(--oba-navy);font-size:2rem}
.hero-form-intro{margin:0 0 14px;color:#6d6879;font-size:.84rem;line-height:1.5}
.hero-form label{display:block;margin-bottom:9px;color:var(--oba-navy);font-size:.78rem;font-weight:800}
.hero-form input{width:100%;height:40px;margin-top:4px;padding:8px 12px;border:1px solid #ddd7e3;border-radius:11px;color:var(--oba-navy);background:#fff;outline:0}
.hero-form input:focus{border-color:var(--oba-orange);box-shadow:0 0 0 3px rgba(255,90,54,.12)}
.hero-form-button{width:100%;min-height:46px;margin-top:2px;background:var(--oba-navy);box-shadow:none}
.hero-form-button:hover{background:#211e3f;box-shadow:none}
.hero-form-note{margin:9px 0 0;color:#777181;font-size:.7rem;text-align:center}
.hp-field{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

.pricing{
  background:
    radial-gradient(circle at 88% 15%,rgba(255,255,255,.10),transparent 28%),
    linear-gradient(120deg,var(--oba-orange-light) 0%,var(--oba-orange) 46%,var(--oba-orange-dark) 100%);
}
.pricing .section-heading .eyebrow{color:var(--oba-navy)}
.pricing .section-heading h2,.pricing .section-heading>p:last-child,.pricing .pricing-note{color:#fff}
.pricing-card,.price-card{background:#fff}
.pricing .pricing-card,.pricing .price-card{border-color:rgba(255,255,255,.55);box-shadow:0 20px 48px rgba(23,21,43,.14)}
.pricing .button{background:var(--oba-navy);color:#fff}

.faq{
  background:
    radial-gradient(circle at 88% 15%,rgba(255,255,255,.10),transparent 28%),
    linear-gradient(120deg,var(--oba-orange-light) 0%,var(--oba-orange) 46%,var(--oba-orange-dark) 100%);
}
.faq .eyebrow{color:var(--oba-navy)}
.faq h2,.faq-intro>p:not(.eyebrow),.faq-question,.faq-answer p{color:#fff}
.faq-item{border-bottom-color:rgba(255,255,255,.4)}
.faq-plus{color:var(--oba-navy)}
.faq-intro .button{background:var(--oba-navy);color:#fff;box-shadow:none}

.final-cta{background:#fff}
.final-card{
  background:
    radial-gradient(circle at 92% 10%,rgba(255,255,255,.10),transparent 25%),
    linear-gradient(120deg,var(--oba-orange-light) 0%,var(--oba-orange) 48%,var(--oba-orange-dark) 100%);
}
.final-card .eyebrow{color:var(--oba-navy)}
.final-card h2{color:#fff}
.final-card .button{background:var(--oba-navy);color:#fff}
.final-card .button:hover{background:#211e3f;color:#fff}

@media (max-width:800px){
  .hero{min-height:0;padding:110px 0 54px}
  .hero-grid{grid-template-columns:1fr;gap:28px}
  .hero h1{font-size:clamp(2.6rem,12vw,4rem)}
  .hero-form-wrap{padding-top:0}
  .hero-form{padding:22px 18px}
  .pricing,.faq{background:linear-gradient(145deg,var(--oba-orange-light) 0%,var(--oba-orange) 55%,var(--oba-orange-dark) 100%)}
}

.pricing .price-card h3,
.pricing .price-card .plan-desc,
.pricing .price-card .price,
.pricing .price-card .price small,
.pricing .price-card .price strong,
.pricing .price-card li {
    color: #15132b !important;
}
