:root {
  --ink: #f5f8fb;
  --muted: #a9b5c4;
  --line: rgba(148, 163, 184, 0.22);
  --paper: #07111d;
  --white: #101b2a;
  --green: #ff8a00;
  --green-dark: #ffb45c;
  --amber: #f5a524;
  --blue: #42a5ff;
  --coral: #ff6b4a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 138, 0, 0.12), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(66, 165, 255, 0.12), transparent 30%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(7, 17, 29, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(136px, 13vw, 184px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  gap: 6px;
  padding: 6px;
  color: var(--muted);
  font-size: clamp(0.84rem, 0.92vw, 0.94rem);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 750;
}

.nav-links a.active {
  color: #10141b;
  background: var(--green);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  gap: 12px;
}

.social-links {
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  color: var(--green);
  border-color: rgba(22, 116, 95, 0.38);
  transform: translateY(-1px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
}

.header-cta {
  padding: 0 16px;
  color: #10141b;
  border: 1px solid var(--line);
  background: var(--green);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: #10141b;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span,
.status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

.trust-row span {
  padding: 0 12px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.12);
}

.bill-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-top strong {
  font-size: 2.4rem;
  line-height: 1;
}

.status-pill {
  padding: 0 10px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.14);
}

.bars {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.bar {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bar i {
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.bar i::before {
  display: block;
  width: var(--width);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}

.saving-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.95), rgba(66, 165, 255, 0.78));
  border-radius: 8px;
}

.saving-card span {
  color: rgba(255, 255, 255, 0.72);
}

.saving-card strong {
  font-size: 1.5rem;
}

.panel-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.certification-strip {
  padding: 18px clamp(20px, 5vw, 72px) 48px;
}

.certification-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.certification-track img {
  display: block;
  width: 100%;
  max-height: 116px;
  object-fit: contain;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.two-column,
.calculator-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section p {
  color: var(--muted);
  font-size: 1rem;
}

.change-grid,
.value-grid,
.steps,
.partner-points,
.payment-grid {
  display: grid;
  gap: 16px;
}

.change-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.info-box,
.value-grid article,
.steps article,
.partner-points article,
.payment-grid article,
.calculator,
.lead-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-box,
.value-grid article,
.steps article,
.partner-points article,
.payment-grid article {
  padding: 22px;
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.savings {
  background: rgba(255, 255, 255, 0.035);
}

.customer-paths {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.savings .value-grid article {
  background: var(--paper);
}

.customer-paths .value-grid article {
  background: var(--white);
}

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

.metric {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 2.4rem;
  font-weight: 850;
  line-height: 1;
}

.calculator {
  padding: 24px;
  box-shadow: var(--shadow);
}

.calculator label,
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}

.spend-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0;
}

.spend-value span:first-child {
  font-size: 2.7rem;
  font-weight: 850;
  line-height: 1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--green);
}

.hidden {
  display: none;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.results {
  display: grid;
  gap: 12px;
}

.results div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
}

.results span {
  color: var(--muted);
}

.results strong {
  text-align: right;
}

.results .total {
  color: #10141b;
  background: var(--green);
}

.results .total span {
  color: rgba(255, 255, 255, 0.72);
}

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

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: #10141b;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.faq-section {
  background: rgba(255, 255, 255, 0.035);
}

.partner-section {
  background: rgba(66, 165, 255, 0.07);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-section {
  background: rgba(255, 138, 0, 0.06);
  border-top: 1px solid rgba(255, 138, 0, 0.16);
  border-bottom: 1px solid rgba(255, 138, 0, 0.16);
}

.partner-points {
  grid-template-columns: 1fr;
}

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

.certification-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.certification-grid article {
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 210px;
  padding: 18px;
  color: #111827;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.certification-grid img {
  width: 100%;
  height: 132px;
  object-fit: contain;
}

.certification-grid h3 {
  margin: 0;
  color: #182231;
  font-size: 0.92rem;
  line-height: 1.25;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  align-items: center;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.direct-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.direct-contact a:hover {
  border-color: rgba(22, 116, 95, 0.38);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(180px, 0.5fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #050b13;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 750;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-logo {
  display: block;
  width: 172px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  max-width: 640px;
  margin: 6px 0 0;
}

.disclaimer {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(169, 181, 196, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 750;
}

.page-hero {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.page-hero h1 {
  max-width: 980px;
}

.page-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 8vw, 112px);
}

.page-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(88vh - 84px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 82px);
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 138, 0, 0.16), transparent 31%),
    radial-gradient(circle at 16% 74%, rgba(66, 165, 255, 0.13), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.contact-hero > *,
.contact-hero-art,
.office-grid > * {
  min-width: 0;
}

.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
}

.contact-hero-art {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.contact-hero-art img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.28));
}

.office-grid {
  display: grid;
  gap: 16px;
}

.office-grid article {
  display: grid;
  align-content: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-office-section {
  background: rgba(255, 138, 0, 0.055);
  border-top: 1px solid rgba(255, 138, 0, 0.14);
  border-bottom: 1px solid rgba(255, 138, 0, 0.14);
}

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

.office-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 11px;
  color: #10141b;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.office-grid h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.contact-form-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(66, 165, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.02);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: calc(70vh - 84px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 138, 0, 0.15), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(66, 165, 255, 0.12), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.blog-hero > *,
.blog-card,
.blog-card-image {
  min-width: 0;
}

.blog-hero h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 5.4vw, 6.3rem);
}

.blog-hero-visual {
  display: grid;
  place-items: center;
}

.blog-hero-visual img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-category-row,
.blog-card-meta,
.blog-article-meta,
.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-category-row {
  margin-top: 24px;
}

.blog-category-row span,
.blog-card-meta span,
.blog-tag-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.blog-list-section {
  background: rgba(255, 255, 255, 0.025);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 340px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card-image {
  display: block;
  margin: -16px -16px 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--line);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-meta {
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-card-meta span {
  min-height: 28px;
  padding: 0 9px;
  font-size: 0.72rem;
}

.blog-card h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.22vw, 1.28rem);
  line-height: 1.14;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.blog-read-more,
.blog-back-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 850;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.blog-pagination a:hover,
.blog-pagination span {
  color: #10141b;
  background: var(--green);
}

@media (max-width: 1240px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-article {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 138, 0, 0.12), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(66, 165, 255, 0.1), transparent 30%);
}

.blog-article-header,
.blog-article-cover,
.blog-article-body {
  max-width: 880px;
}

.blog-article-header {
  margin-bottom: 38px;
}

.blog-article-header h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
}

.blog-article-meta {
  color: var(--muted);
  font-weight: 800;
}

.blog-tag-row {
  margin-top: 18px;
}

.blog-article-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-article-body {
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
  margin: 38px 0 14px;
  color: var(--ink);
  line-height: 1.1;
}

.blog-article-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.blog-article-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.blog-article-body p,
.blog-article-body ul {
  margin-bottom: 18px;
}

.blog-article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-article-body a {
  color: var(--green-dark);
  font-weight: 800;
}

.blog-article-body img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-article-body code {
  padding: 0.12em 0.36em;
  color: #ffd199;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.blog-article-body pre {
  overflow-x: auto;
  padding: 18px;
  background: #050b13;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-article-body pre code {
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.blog-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 138, 0, 0.055);
  border-top: 1px solid rgba(255, 138, 0, 0.14);
}

.blog-article-cta > div {
  max-width: 780px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 32%, rgba(255, 138, 0, 0.16), transparent 28%),
    radial-gradient(circle at 18% 56%, rgba(66, 165, 255, 0.14), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.service-hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6.6vw, 7.4rem);
}

.service-visual {
  min-height: 520px;
  padding: clamp(12px, 2vw, 24px);
}

.service-visual svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
}

.visual-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 16;
  filter: drop-shadow(0 0 14px rgba(66, 165, 255, 0.24));
}

.line-one {
  stroke: #25cbd3;
}

.line-two {
  stroke: #ff8a00;
}

.line-three {
  stroke: #ffcf33;
}

.visual-node rect,
.visual-core circle,
.visual-pill rect {
  fill: rgba(16, 27, 42, 0.86);
  stroke: rgba(148, 163, 184, 0.24);
  stroke-width: 2;
}

.visual-node text,
.visual-core text,
.visual-pill text {
  fill: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.visual-node text {
  font-size: 22px;
}

.visual-core circle {
  fill: url(#orangeBlue);
  stroke: rgba(255, 255, 255, 0.28);
}

.visual-core text {
  fill: #08111d;
  font-size: 19px;
}

.visual-pill rect {
  fill: rgba(255, 255, 255, 0.06);
}

.visual-pill text {
  fill: var(--muted);
  font-size: 18px;
}

.service-stack {
  background: rgba(255, 255, 255, 0.035);
}

.service-index {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #10141b;
  background: var(--green);
  border-radius: 999px;
  font-weight: 850;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.service-menu {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-menu a {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 800;
}

.service-menu a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.service-menu span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #10141b;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-details {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  scroll-margin-top: 116px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-detail-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.service-detail-head h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.service-detail-head > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.service-detail-head .service-card-icon {
  margin-bottom: 0;
}

.service-detail-head h3,
.service-detail-head p {
  grid-column: 2;
}

.service-detail-head h3 {
  margin: 0;
}

.service-detail-head p {
  max-width: 920px;
  margin: 0;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-columns div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-columns h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.service-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-review-card {
  display: grid;
  gap: 22px;
  align-self: stretch;
  align-content: center;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 138, 0, 0.16), transparent 34%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.startup-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 86px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 0, 0.18), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(66, 165, 255, 0.13), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.startup-hero h1 {
  max-width: 920px;
  font-size: clamp(3.1rem, 6.1vw, 6.9rem);
}

.startup-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.startup-proof-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.startup-hero-art {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.startup-hero-art img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.28));
}

.startup-snapshot {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.snapshot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.snapshot-top strong {
  display: block;
  max-width: 320px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.snapshot-lines {
  display: grid;
  gap: 15px;
}

.snapshot-lines div {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.snapshot-lines i {
  display: block;
  height: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.snapshot-lines i::before {
  display: block;
  width: var(--width);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}

.startup-credit-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: #10141b;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.96), rgba(66, 165, 255, 0.82));
  border-radius: 8px;
}

.startup-credit-card span {
  color: rgba(16, 20, 27, 0.74);
  font-weight: 800;
}

.startup-credit-card strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.startup-problems {
  background: rgba(255, 255, 255, 0.025);
}

.startup-challenge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.startup-challenge-grid article {
  display: grid;
  align-content: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.startup-card-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  color: #10141b;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.value-grid .startup-card-icon,
.payment-grid .startup-card-icon,
.partner-points .startup-card-icon,
.info-box .startup-card-icon,
.steps .startup-card-icon,
.startup-type-grid .startup-card-icon,
.startup-savings-grid .startup-card-icon {
  margin-bottom: 16px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.steps .startup-card-icon + span {
  margin-top: 0;
}

.startup-card-icon::before,
.startup-card-icon::after,
.startup-step-icon::before,
.startup-step-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-team::before {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 999px;
  box-shadow: 15px 9px 0 -6px currentColor, -15px 9px 0 -6px currentColor;
}

.icon-team::after {
  width: 34px;
  height: 14px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translateY(12px);
}

.icon-chart::before {
  width: 30px;
  height: 22px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.icon-chart::after {
  width: 28px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(-34deg) translate(1px, 1px);
}

.icon-credit::before {
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-credit::after {
  width: 18px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
  transform: translateY(1px);
}

.icon-migrate::before {
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.icon-migrate::after {
  width: 17px;
  height: 17px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg) translate(0, -1px);
}

.icon-stack::before {
  width: 30px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 11px 0 -3px currentColor, 0 22px 0 -3px currentColor;
}

.icon-award::before {
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.icon-award::after {
  width: 14px;
  height: 18px;
  border-left: 6px solid currentColor;
  border-right: 6px solid currentColor;
  transform: translateY(18px) skewX(-10deg);
}

.icon-payment::before {
  width: 32px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.icon-payment::after {
  width: 24px;
  height: 4px;
  background: currentColor;
  transform: translateY(-5px);
}

.icon-ai::before {
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.icon-ai::after {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 3px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 100% / 3px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 8px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 50% / 8px 3px no-repeat;
}

.icon-saas::before {
  width: 32px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.icon-saas::after {
  width: 18px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.icon-game::before {
  width: 34px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.icon-game::after {
  width: 4px;
  height: 16px;
  background: currentColor;
  box-shadow: -6px 6px 0 currentColor, 10px 3px 0 2px currentColor;
}

.icon-commerce::before {
  width: 28px;
  height: 24px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  transform: translateY(5px);
}

.icon-commerce::after {
  width: 20px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  transform: translateY(-11px);
}

.startup-challenge-grid article > span {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1;
}

.startup-stack {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.startup-help-list,
.startup-savings-grid,
.startup-support-grid,
.startup-type-grid,
.startup-type-list {
  display: grid;
  gap: 16px;
}

.startup-help-list {
  grid-template-columns: 1fr;
}

.startup-help-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.startup-help-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #10141b;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 8px;
  font-weight: 900;
}

.startup-help-list h3 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.startup-help-list p {
  max-width: 980px;
  margin: 0;
}

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

.startup-savings-section {
  background: rgba(255, 138, 0, 0.055);
  border-bottom: 1px solid rgba(255, 138, 0, 0.14);
}

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

.startup-savings-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  min-height: 190px;
  align-content: start;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.startup-savings-grid .startup-card-icon {
  margin-bottom: 0;
}

.startup-savings-grid span {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.startup-savings-grid strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

.startup-savings-grid p {
  grid-column: 1 / -1;
}

.startup-support-grid article,
.startup-type-grid article,
.startup-type-list article {
  display: grid;
  align-content: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.startup-support-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  color: #10141b;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.startup-types {
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}

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

.startup-type-list {
  grid-template-columns: 1fr;
}

.startup-review-card {
  background:
    radial-gradient(circle at 84% 14%, rgba(66, 165, 255, 0.17), transparent 34%),
    radial-gradient(circle at 16% 86%, rgba(255, 138, 0, 0.12), transparent 32%),
    var(--white);
}

.use-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 82px);
  background:
    radial-gradient(circle at 84% 20%, rgba(66, 165, 255, 0.16), transparent 31%),
    radial-gradient(circle at 16% 76%, rgba(255, 138, 0, 0.15), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.use-case-hero > *,
.use-case-hero-art,
.customer-logo-marquee,
.customer-logo-card,
.use-case-grid > *,
.case-detail-card,
.pattern-list > * {
  min-width: 0;
}

.use-case-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
}

.use-case-hero-art {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.use-case-hero-art img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.28));
}

.case-map {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 138, 0, 0.18), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-map-top,
.case-map-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.case-map-top span,
.case-map-result span {
  color: var(--muted);
  font-weight: 800;
}

.case-map-top strong {
  color: var(--green-dark);
  font-size: 2.4rem;
  line-height: 1;
}

.case-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-map-grid div {
  display: grid;
  min-height: 154px;
  align-content: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-map-grid .startup-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}

.case-map-grid strong {
  font-size: 1.12rem;
}

.case-map-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.case-map-result {
  padding: 18px;
  color: #10141b;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.96), rgba(66, 165, 255, 0.82));
  border-radius: 8px;
}

.case-map-result span {
  color: rgba(16, 20, 27, 0.72);
}

.case-map-result strong {
  text-align: right;
}

.customer-logo-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 138, 0, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--line);
}

.customer-logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.customer-logo-track {
  display: flex;
  width: max-content;
  animation: customerLogoScroll 42s linear infinite;
}

.customer-logo-marquee:hover .customer-logo-track {
  animation-play-state: paused;
}

.customer-logo-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.customer-logo-card {
  display: grid;
  width: clamp(172px, 15vw, 230px);
  height: 112px;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.customer-logo-card img {
  display: block;
  width: 100%;
  max-width: 178px;
  height: 72px;
  object-fit: contain;
}

.customer-logo-card img.logo-edan {
  transform: scale(1.5);
}

.customer-logo-card img.logo-purcotton {
  transform: scale(1.72);
}

.customer-logo-card img.logo-hailuo {
  max-width: 190px;
}

@keyframes customerLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.use-case-overview {
  background: rgba(255, 255, 255, 0.025);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-case-grid article {
  display: grid;
  align-content: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-case-grid article > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.use-case-grid h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.15;
}

.use-case-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 850;
}

.case-detail-section {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-detail-list {
  display: grid;
  gap: 18px;
}

.case-detail-card {
  scroll-margin-top: 116px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-detail-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.case-detail-title > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #10141b;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.case-detail-title h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.case-detail-title p {
  max-width: 920px;
  margin: 0;
}

.spend-patterns {
  background: rgba(255, 138, 0, 0.055);
  border-bottom: 1px solid rgba(255, 138, 0, 0.14);
}

.pattern-list {
  display: grid;
  gap: 14px;
}

.pattern-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pattern-list span {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pattern-list strong {
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  line-height: 1.2;
}

.use-case-review-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 138, 0, 0.16), transparent 34%),
    radial-gradient(circle at 14% 84%, rgba(66, 165, 255, 0.16), transparent 32%),
    var(--white);
}

.review-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.service-review-card:not(.startup-review-card) .review-card-top {
  align-items: end;
}

.review-card-top > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #10141b;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.review-card-top h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.review-card-top p {
  margin: 0;
}

.review-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.review-flow div {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-flow strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #10141b;
  background: var(--blue);
  border-radius: 999px;
}

.review-flow span {
  color: var(--ink);
  font-weight: 800;
}

.review-flow i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.review-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-metrics span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #ffd199;
  background: rgba(255, 138, 0, 0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-social {
  justify-content: flex-start;
  flex-direction: row;
  margin-top: 18px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(23, 32, 39, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.28);
}

.floating-contact svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-whatsapp {
  background: #1fae64;
}

.contact-telegram {
  background: #2481cc;
}

.contact-email {
  background: var(--green-dark);
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 44px));
  padding: 18px;
  color: var(--ink);
  background: rgba(16, 27, 42, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 40px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

  .hero,
  .service-hero,
  .startup-hero,
  .use-case-hero,
  .contact-hero,
  .blog-hero,
  .two-column,
  .calculator-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .change-grid,
  .value-grid,
  .steps,
  .payment-grid,
  .startup-support-grid,
  .startup-challenge-grid,
  .startup-savings-grid,
  .startup-type-grid,
    .blog-grid,
    .use-case-grid,
    .office-grid,
    .case-map-grid,
    .certification-grid,
    .service-detail-layout,
  .service-columns,
  .page-content {
    grid-template-columns: 1fr;
  }

  .startup-hero-art,
  .use-case-hero-art,
  .contact-hero-art {
    min-height: auto;
  }

  .service-menu {
    position: static;
  }

  .review-flow {
    grid-template-columns: 1fr;
  }

  .review-flow i {
    width: 2px;
    height: 22px;
    margin: 0 auto;
  }

  .service-visual {
    min-height: auto;
  }

  .service-visual svg {
    min-height: 380px;
  }

  .certification-track img {
    width: 132px;
    flex: 0 0 132px;
  }

  .certification-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .customer-logo-card {
    width: 180px;
    height: 104px;
  }

  .blog-article-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand img {
    width: 116px;
    height: 44px;
  }

  .header-actions .social-links {
    display: none;
  }

  .header-cta {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 21;
    min-height: 40px;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 50%;
    bottom: 14px;
    grid-template-columns: repeat(3, 48px);
    transform: translateX(50%);
  }

  .panel-top,
  .snapshot-top,
  .saving-card,
  .results div,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-social {
    flex-direction: row;
  }

  .cookie-notice {
    right: 14px;
    bottom: 78px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .use-case-hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding-inline: 24px;
  }

  .use-case-hero-copy,
  .use-case-hero .hero-subtitle,
  .use-case-hero h1 {
    width: 100%;
    max-width: min(100%, 342px);
  }

  .use-case-hero h1 {
    font-size: 2.7rem;
  }

  .case-map {
    width: 100%;
    max-width: min(100%, 342px);
  }

  .case-map-top,
  .case-map-result {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-map-result strong {
    text-align: left;
  }

  .customer-logo-section .section-heading h2 {
    font-size: 2rem;
  }

  .customer-logo-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .customer-logo-card {
    width: 156px;
    height: 92px;
    padding: 14px;
  }

  .customer-logo-card img {
    height: 58px;
  }

  .customer-logo-card img.logo-edan {
    transform: scale(1.36);
  }

  .customer-logo-card img.logo-purcotton {
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-logo-track {
    animation: none;
  }
}
