/* SEO SolutionX — Main styles (theme-aware via theme.css) */

:root {
  --bg: var(--site-bg, #f2f5f9);
  --bg-card: var(--site-bg-card, #ffffff);
  --border: var(--site-border, rgba(30, 64, 175, 0.12));
  --muted: var(--site-text-muted, #64748b);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-primary: 0 4px 20px color-mix(in srgb, var(--color-primary) 25%, transparent);
}

*, *::before, *::after { box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body.site-body {
  margin: 0;
  line-height: 1.65;
  font-weight: 500;
}
/* Page enter / exit — header stays fixed; content fades smoothly */
#page-transition-root {
  opacity: 1;
  transform: none;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  #page-transition-root {
    overflow-x: hidden;
  }
}
html.page-transitions-ready #page-transition-root {
  will-change: opacity, transform;
}
html.page-transitions-ready body.is-entering #page-transition-root,
html.page-transitions-ready body:not(.is-loaded):not(.is-navigating) #page-transition-root {
  opacity: 0;
  transform: translateY(16px);
}
html.page-transitions-ready body.is-navigating #page-transition-root {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 1, 1),
    transform 0.22s cubic-bezier(0.4, 0, 1, 1);
}
html.page-transitions-ready body.is-loaded #page-transition-root {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html.page-transitions-ready #page-transition-root {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}
html.no-page-transitions #page-transition-root {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container-custom { width: min(1200px, 92vw); margin: 0 auto; }
.text-center { text-align: center; }
.mb-lg { margin-bottom: 2rem; }
.section-padding { padding: 5rem 0; }
@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }
}
@media (max-width: 640px) {
  .footer-newsletter--bar .newsletter-form--footer {
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
  }

  .footer-newsletter--bar .newsletter-form-head {
    flex: 1 1 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.25rem 0.55rem;
  }

  .footer-newsletter--bar .newsletter-form-head p {
    white-space: normal;
  }

  .footer-newsletter--bar .newsletter-form-row {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .section-padding { padding: 2.75rem 0; }
  .container-custom { width: min(1200px, 94vw); }
}
.section-separator { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius); font-weight: 700;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  font-size: .95rem; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--site-btn-text, #fff);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: color-mix(in srgb, var(--color-primary) 8%, transparent); }
.btn-ghost { background: transparent; color: var(--site-text); border: none; }
.btn-ghost:hover { color: var(--color-primary); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-block { width: 100%; }

/* Header */
.main-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--site-header-bg); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; gap: 1rem;
}
.header-logo img { height: 42px; width: auto; }
.logo-text { font-weight: 800; color: var(--color-primary); font-size: 1.1rem; }
.header-nav { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  padding: .5rem .7rem; font-weight: 600; font-size: .875rem;
  color: var(--site-text-muted); border-radius: var(--radius); transition: .2s;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--site-bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: .5rem; box-shadow: var(--site-shadow);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a { padding: .6rem .75rem; border-radius: 6px; font-size: .875rem; color: var(--site-text); }
.nav-dropdown-menu a:hover { background: color-mix(in srgb, var(--color-primary) 8%, transparent); color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.mobile-menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--site-text);
}
.mobile-nav {
  display: flex; flex-direction: column; padding: 1rem;
  border-top: 1px solid var(--border); background: var(--site-bg);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a { padding: .75rem 0; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--site-text); }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
}

/* Section typography */
.section-label {
  display: inline-block; color: var(--color-primary); font-weight: 800;
  text-transform: uppercase; letter-spacing: .15em; font-size: .75rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15;
  margin: .75rem 0; color: var(--site-text-heading);
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }

/* Hero */
.hero-section {
  --hero-accent: var(--color-primary);
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
}
.hero-section .container-custom.hero-grid {
  width: min(1440px, 98vw);
  max-width: none;
}
.hero-bg { position: absolute; inset: 0; background: var(--bg); z-index: -2; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1;
  opacity: .5; pointer-events: none;
}
.hero-glow-1 { width: 280px; height: 280px; top: 10%; left: 5%; background: color-mix(in srgb, var(--color-primary) 8%, transparent); }
.hero-glow-2 { width: 380px; height: 380px; bottom: 10%; right: 5%; background: color-mix(in srgb, var(--hero-accent) 14%, transparent); transition: background 0.7s ease; }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
  margin-inline: auto;
}
.hero-content {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}
.hero-grid:not(:has(.hero-media)) {
  grid-template-columns: minmax(0, 1fr);
}
.hero-grid:not(:has(.hero-media)) .hero-content {
  justify-self: center;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.hero-grid:not(:has(.hero-media)) .hero-description {
  margin-inline: auto;
}
.hero-grid:not(:has(.hero-media)) .hero-actions {
  justify-content: center;
}
.hero-badge {
  display: inline-block; padding: .35rem .85rem; border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary); font-size: .8rem; font-weight: 700; margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  color: var(--site-text-heading);
}
.hero-title-main { display: block; margin-bottom: .3rem; }
.hero-rotating-text {
  display: block; color: var(--hero-accent);
  transition: opacity 0.32s ease, color 0.7s ease;
  min-height: 1.2em;
}
.hero-description {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 1.35rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-actions .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-width: 1.5px;
}
.hero-media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 0;
  justify-self: start;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: min(100%, 640px);
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  background: var(--site-bg, #fff);
  box-shadow:
    0 16px 48px color-mix(in srgb, var(--color-primary) 7%, transparent),
    0 2px 12px rgba(15, 23, 42, 0.04);
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(to top, var(--site-bg, #fff) 0%, transparent 22%),
    linear-gradient(to right, var(--site-bg, #fff) 0%, transparent 10%, transparent 90%, var(--site-bg, #fff) 100%);
  opacity: 0.55;
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.hero-side-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(680px, 76vh);
  object-fit: cover;
  object-position: center center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .hero-section .container-custom.hero-grid {
    width: min(1440px, 96vw);
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .hero-media { order: -1; margin-top: 0; }
  .hero-content {
    order: 0;
    max-width: none;
    justify-self: center;
    margin-inline: auto;
    padding: 0 clamp(0.75rem, 4vw, 1.5rem);
  }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-media {
    justify-content: center;
  }
  .hero-image-frame {
    margin-inline: auto;
    max-width: min(92vw, 520px);
  }
  .hero-side-image {
    max-height: min(546px, 65vh);
  }
}

/* Showcase — Google Merchant feature tabs (pixel-matched) */
.showcase-section { padding: 0; background: transparent; }
.showcase-section .container-custom {
  width: min(1203px, 94vw);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: clamp(1.5rem, 5vw, 4rem);
}
.showcase-section .showcase-heading {
  align-self: center;
  width: 100%;
}
.showcase-heading {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  max-width: 820px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 148px 268px 274px;
  column-gap: clamp(72px, 11vw, 128px);
  row-gap: 1.5rem;
  align-items: center;
  justify-content: end;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  margin-left: auto;
}
.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 148px;
  height: 268px;
  align-self: center;
}
.showcase-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 148px;
  height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
  cursor: pointer;
  font-family: var(--font-sans, 'Poppins', system-ui, sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  overflow: visible;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: left;
  flex-shrink: 0;
}
.showcase-tab:hover:not(.is-active) {
  border-color: #bdc1c6;
  background: #f8f9fa;
}
.showcase-tab.is-active {
  color: var(--site-btn-text, #fff);
  box-shadow: none;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.showcase-tab.is-active[data-tab="search"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.showcase-tab.is-active[data-tab="maps"] {
  background: #34a853;
  border-color: #34a853;
}
.showcase-tab.is-active[data-tab="youtube"] {
  background: #ea4335;
  border-color: #ea4335;
}
.showcase-tab.is-active[data-tab="images"] {
  background: #fbbc04;
  border-color: #f9ab00;
  color: #202124;
}
.showcase-tab.is-active[data-tab="images"] .showcase-tab-icon svg {
  color: #202124;
}
.showcase-tab.is-active[data-tab="images"] .showcase-tab-icon svg [stroke] {
  stroke: #202124;
}
.showcase-tab.is-active[data-tab="images"] .showcase-tab-icon svg [fill]:not([fill="none"]) {
  fill: #202124;
}
.showcase-tab.is-active .showcase-tab-icon svg {
  color: #fff;
}
.showcase-tab.is-active .showcase-tab-icon svg [stroke] {
  stroke: #fff;
}
.showcase-tab.is-active .showcase-tab-icon svg [fill]:not([fill="none"]) {
  fill: #fff;
}
.showcase-tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.showcase-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  line-height: 0;
}
.showcase-tab-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.showcase-tab-label { white-space: nowrap; }
.showcase-section.is-paused .showcase-tab.is-active,
.gm-showcase-wrap.is-paused .showcase-tab.is-active {
  opacity: 0.92;
}
.showcase-phone {
  display: flex;
  justify-content: center;
  width: 268px;
}
.showcase-phone-frame {
  position: relative;
  width: 268px;
  height: 480px;
  margin: 0;
  padding: 3px;
  background: #fff;
  border: 2px solid #dadce0;
  border-radius: 34px;
  box-sizing: border-box;
  box-shadow:
    0 1px 2px rgba(60, 64, 67, .12),
    0 6px 20px rgba(60, 64, 67, .08);
  overflow: hidden;
}
.showcase-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.showcase-phone-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  display: block;
  transition: opacity .35s ease;
}
.showcase-phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  display: block;
  transition: opacity .35s ease;
}
.showcase-phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  color: #5f6368;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.showcase-phone-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f0fe;
  color: #1a73e8;
}
.showcase-phone-placeholder-icon svg {
  width: 24px;
  height: 24px;
}
.showcase-phone-placeholder p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #3c4043;
}
.showcase-phone-screen.is-switching video,
.showcase-phone-screen.is-switching img { opacity: 0; }
.showcase-content {
  min-width: 0;
  width: 274px;
}
.showcase-content-inner {
  transition: opacity .3s ease, transform .3s ease;
}
.showcase-content-inner.is-fading {
  opacity: 0;
  transform: translateY(6px);
}
.showcase-title {
  font-family: var(--font-sans, 'Poppins', system-ui, sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #3c4043;
  margin: 0 0 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.showcase-desc {
  font-family: var(--font-sans, 'Poppins', system-ui, sans-serif);
  color: #3c4043;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 274px;
}
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 148px minmax(220px, 268px) minmax(220px, 274px);
    column-gap: clamp(40px, 7vw, 72px);
  }
}
@media (max-width: 960px) {
  .showcase-section .container-custom {
    align-items: center;
    padding-right: 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    justify-content: stretch;
    margin-left: 0;
  }
  .showcase-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    justify-content: flex-start;
  }
  .showcase-phone { width: 100%; }
  .showcase-tab {
    width: auto;
    min-width: 124px;
    height: 48px;
    padding: 12px 18px;
    font-size: 15px;
  }
  .showcase-phone-frame {
    height: 420px;
    width: min(100%, 250px);
    max-width: 250px;
  }
  .showcase-content {
    width: 100%;
    text-align: center;
  }
  .showcase-title { font-size: clamp(1.35rem, 4vw, 28px); }
  .showcase-desc { margin-inline: auto; max-width: 36ch; }
}

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
}
.service-card h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 .5rem; }
.service-card > p { color: var(--muted); margin-bottom: 1.25rem; }
.service-links { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1rem; }
.service-links a {
  padding: .75rem 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .85rem; font-weight: 700; transition: .2s;
}
.service-links a:hover { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 8%, transparent); }
.service-more { color: var(--color-primary); font-weight: 700; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* Marquee */
.marquee-section { padding: 1.5rem 0; overflow: hidden; border-block: 1px solid var(--border); }
.marquee-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: marqueeText 40s linear infinite;
}
.marquee-item {
  font-size: clamp(1.35rem, 3.5vw, 2.75rem); font-weight: 900; white-space: nowrap;
  display: flex; align-items: center; gap: 1rem; color: #fafafa;
}
@media (max-width: 640px) {
  .marquee-section { padding: 1rem 0; }
  .marquee-track { gap: 1rem; }
  .marquee-item {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
    gap: 0.65rem;
  }
  .gm-marquee-wrap { padding: 0.85rem 0; }
}
.marquee-item.alt { color: var(--color-primary); font-style: italic; }
.marquee-dot { color: var(--color-primary); animation: pulse 2s infinite; }
@keyframes marqueeText { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(520px, 62vh);
  min-height: 0;
  border-radius: 32px 32px 120px 32px;
  overflow: hidden;
  border: none;
  background: var(--site-bg, #fff);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.about-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}
.about-text { color: var(--muted); font-size: 1.05rem; }
.about-text p { margin-bottom: 1rem; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0; }
.about-check {
  padding: .75rem 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); font-size: .875rem; font-weight: 700;
}
.about-progress {
  padding: 1.25rem; background: color-mix(in srgb, var(--color-primary) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent);
  border-radius: var(--radius-lg); margin-bottom: 1.5rem;
}
.progress-header { display: flex; justify-content: space-between; margin-bottom: .75rem; font-weight: 900; font-size: .8rem; color: var(--color-primary); }
.progress-bar { height: 12px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 2px; }
.progress-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, #fff));
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
html.perf-lite .progress-fill[data-target] { transition-duration: 0.9s; }
.progress-value { font-variant-numeric: tabular-nums; }
.about-owner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.owner-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid color-mix(in srgb, var(--color-primary) 30%, transparent); }
.about-owner h4 { margin: 0; font-size: 1.1rem; }
.about-owner p { margin: 0; color: var(--muted); font-size: .875rem; }
.about-owner .btn { margin-left: auto; }
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap {
    max-height: min(440px, 55vh);
    max-width: min(100%, 400px);
    margin-inline: auto;
  }
  .about-owner .btn { margin-left: 0; width: 100%; }
}

/* Pricing */
.pricing-section { padding: 6rem 0; background: var(--site-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-card {
  position: relative; background: #080808; border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column;
  transition: .3s;
}
.pricing-card.is-popular { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: #000; padding: .4rem 1.25rem;
  border-radius: 999px; font-size: .65rem; font-weight: 900; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; color: var(--site-text-heading); margin: 1rem 0 .5rem; text-align: center; }
.plan-desc { color: #71717a; font-size: .875rem; text-align: center; min-height: 40px; }
.plan-price { text-align: center; margin: 1.5rem 0; padding: 1.5rem; background: rgba(255,255,255,.03); border-radius: var(--radius); }
.price-current { font-size: 2.5rem; font-weight: 900; color: var(--color-primary); }
.price-old { text-decoration: line-through; color: #71717a; margin-right: .5rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.plan-features li { padding: .4rem 0; color: #d4d4d8; font-size: .875rem; border-bottom: 1px solid rgba(255,255,255,.04); }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* Stats */
.stats-section { padding: 0; background: transparent; border: none; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}
.stat-item {
  position: relative;
  text-align: center;
  padding: 0.5rem 1.25rem;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: color-mix(in srgb, #fff 28%, transparent);
}
.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  text-shadow: var(--shadow-primary);
  margin-bottom: 0.65rem;
  transition: transform 0.35s ease;
}
.stat-value.is-counting {
  transform: scale(1.03);
}
.stat-label {
  margin: 0;
  color: color-mix(in srgb, #fff 80%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 0; }
  .stat-item:nth-child(2n)::after { display: none; }
  .stat-item:not(:last-child):not(:nth-child(2n))::after { display: block; }
}

/* Clients */
.clients-section { padding: 4rem 0; background: var(--site-bg); border-block: 1px solid var(--border); overflow: hidden; }
.clients-header { text-align: center; margin-bottom: 2rem; }
.clients-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.clients-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--site-text);
}
.clients-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marqueeLogos 35s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo-card {
  flex-shrink: 0;
  width: 240px;
  height: 120px;
  background: var(--site-bg-card, #fff);
  border-radius: 10px;
  border: 1px solid var(--site-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.client-logo-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.client-logo-card img {
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 94%;
  object-fit: contain;
  object-position: center;
  display: block;
}
@keyframes marqueeLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.quote-icon { font-size: 3rem; color: var(--color-primary); line-height: 1; opacity: .5; }
.stars { color: var(--color-primary); letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img, .avatar-placeholder {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  background: var(--color-primary); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 900;
}
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: .8rem; color: var(--muted); }
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Footer */
.main-footer {
  background: var(--site-bg-alt);
  color: var(--site-text);
  padding: 2.25rem 0 1rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem 1.75rem;
  margin-bottom: 0.85rem;
  align-items: start;
}

.footer-legal-col {
  min-width: 0;
}
.footer-logo img { height: 38px; margin-bottom: 0.5rem; }
.footer-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--site-text-heading);
}
.footer-desc {
  color: var(--muted);
  max-width: 340px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
}
.footer-contact {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  transition: color .2s ease;
  color: var(--site-text);
}
.footer-contact:hover { color: var(--color-primary); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--site-border);
  background: var(--site-bg-card);
  color: var(--site-text-muted);
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}
.footer-social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}
.footer-social-link:hover {
  color: var(--site-btn-text, #fff);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--color-primary) 32%, transparent);
}
.footer-links h4 {
  font-weight: 800;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.footer-links a {
  display: block;
  color: var(--muted);
  padding: 0.2rem 0;
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--site-text-heading); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-bottom p { margin: 0; }

.footer-payment-strip {
  width: 100%;
  margin: 0.35rem 0 1.1rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--border);
}

.footer-payment-badges {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
}

.footer-payment-badge {
  margin: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-primary) 35%, transparent) transparent;
  border-radius: 10px;
  background: var(--site-bg-card);
  border: 1px solid color-mix(in srgb, var(--site-border) 70%, transparent);
  padding: 0.55rem 0.65rem;
  text-align: center;
}

.footer-payment-badge::-webkit-scrollbar {
  height: 6px;
}

.footer-payment-badge::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.footer-payment-badge img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 168px;
  object-fit: contain;
  object-position: center;
}

.footer-payment-badge.is-wide-strip {
  text-align: center;
}

.footer-payment-badge.is-wide-strip img {
  display: inline-block;
  width: auto;
  max-width: none;
  max-height: none;
  height: clamp(84px, 14vw, 132px);
}

.footer-newsletter {
  margin-bottom: 0;
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--site-border);
  background: var(--site-bg-card);
}

.footer-newsletter--bar {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--site-border);
  background: var(--site-bg-card);
}

.footer-newsletter--bar .newsletter-form--footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem 1.15rem;
  width: 100%;
  min-width: 0;
}

.footer-newsletter--bar .newsletter-form-head {
  display: flex;
  align-items: center;
  gap: 0.55rem 0.85rem;
  flex: 0 0 auto;
  margin: 0;
  min-width: 0;
}

.footer-newsletter--bar .newsletter-form-head h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.footer-newsletter--bar .newsletter-form-head p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--muted);
  white-space: nowrap;
}

.footer-newsletter--bar .newsletter-form-row {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  min-width: 0;
  margin: 0;
}

.footer-newsletter--bar .newsletter-form-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding: 0.45rem 0.7rem;
  font-size: 0.8125rem;
  border-radius: 8px;
  min-height: 36px;
}

.footer-newsletter--bar .newsletter-form-btn {
  flex: 0 0 auto;
  width: auto;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  border-radius: 8px;
  min-height: 36px;
  line-height: 1.2;
  white-space: nowrap;
}

.newsletter-form-head h4,
.newsletter-form-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--site-text-heading);
}
.newsletter-form-head p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.newsletter-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.newsletter-form-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--site-border);
  background: var(--site-bg);
  color: var(--site-text);
  font-size: 0.9375rem;
}
.newsletter-form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
.newsletter-form-btn {
  flex: 0 0 auto;
  border-radius: 12px;
  white-space: nowrap;
}
.newsletter-form--footer .newsletter-form-head h4 {
  color: var(--color-primary);
}
.newsletter-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }

  .footer-legal-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 1.75rem 0 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.25rem;
    margin-bottom: 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.15rem;
  }

  .footer-logo img {
    height: 34px;
    margin-bottom: 0.65rem;
  }

  .footer-desc {
    max-width: none;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .footer-contact {
    font-size: 0.8125rem;
  }

  .footer-social {
    margin-top: 0.75rem;
  }

  .footer-payment-strip {
    margin-top: 0.15rem;
    padding-top: 0.85rem;
  }

  .footer-newsletter--bar .newsletter-form-head p {
    white-space: normal;
  }

  .footer-links h4 {
    font-size: 0.875rem;
    margin-bottom: 0.45rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
    padding: 0.18rem 0;
    line-height: 1.45;
  }

  .footer-links-legal {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .footer-links-legal h4 {
    margin-bottom: 0.35rem;
  }

  .footer-bottom {
    padding-top: 0.75rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .footer-newsletter--bar .newsletter-form--footer {
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
  }

  .footer-newsletter--bar .newsletter-form-head {
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 0.25rem 0.55rem;
  }

  .footer-newsletter--bar .newsletter-form-head p {
    white-space: normal;
  }

  .footer-newsletter--bar .newsletter-form-row {
    flex: 1 1 100%;
  }
}

/* Flash messages */
.messages-wrap { max-width: 720px; margin: 1rem auto; padding: 0 1rem; }
.alert { padding: .875rem 1.25rem; border-radius: 8px; margin-bottom: .75rem; font-size: .875rem; }
.alert-success { background: color-mix(in srgb, var(--color-primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); color: var(--color-primary); }
.alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #f87171; }
.alert-warning { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.35); color: #d97706; }

.site-notif-toast {
  position: fixed;
  top: calc(var(--site-header-offset, 72px) + 1rem);
  right: 1.1rem;
  left: auto;
  z-index: 10040;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: min(92vw, 440px);
  padding: 0.85rem 1rem 0.85rem 0.9rem;
  border-radius: 18px;
  background: #e8f8f0;
  border: 1px solid #c6edd8;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.site-notif-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-notif-toast--error {
  background: #fef2f2;
  border-color: #fecaca;
}
.site-notif-toast--warning {
  background: #fffbeb;
  border-color: #fde68a;
}
.site-notif-toast--info {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.site-notif-toast-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: #16a34a;
  box-shadow: 0 1px 2px rgba(22, 163, 74, 0.35);
}
.site-notif-toast-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}
.site-notif-toast--error .site-notif-toast-icon {
  background: #dc2626;
  box-shadow: 0 1px 2px rgba(220, 38, 38, 0.35);
}
.site-notif-toast--warning .site-notif-toast-icon {
  background: #d97706;
  box-shadow: none;
}
.site-notif-toast--info .site-notif-toast-icon {
  background: #2563eb;
  box-shadow: none;
}
.site-notif-toast-body { flex: 1; min-width: 0; }
.site-notif-toast strong {
  display: inline;
  font-size: 0.9rem;
  color: #166534;
  margin: 0;
  font-weight: 700;
}
.site-notif-toast span {
  display: inline;
  font-size: 0.9rem;
  color: #166534;
  line-height: 1.4;
  font-weight: 700;
}
.site-notif-toast strong + span::before {
  content: ' ';
}
.site-notif-toast--error strong,
.site-notif-toast--error span {
  color: #991b1b;
}
.site-notif-toast--warning strong,
.site-notif-toast--warning span {
  color: #92400e;
}
.site-notif-toast--info strong,
.site-notif-toast--info span {
  color: #1e3a8a;
}
.site-notif-toast-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
  opacity: 0.85;
}
.site-notif-toast-close:hover { opacity: 1; color: #334155; }
