@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Bricolage+Grotesque:wght@400;500;600;700;800&display=swap');

/* Accessibility & SEO helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

.noscript-notice {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

.review-text {
  margin: 0;
  border: none;
  padding: 0;
}

.review-text p {
  margin: 0;
}

:root {
  --font-size: 16px;
  --background: #FFFBF5;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --muted: #F5F0EB;
  --muted-foreground: #6B7280;
  --accent: #FFF3E8;
  --border: rgba(0, 0, 0, 0.08);
  --brand: #E8772E;
  --radius: 0.625rem;
}

.dark {
  --background: #221f1f;
  --foreground: oklch(0.985 0 0);
  --card: #2d2a2a;
  --muted: #3a3636;
  --muted-foreground: oklch(0.708 0 0);
  --accent: #3a3636;
  --border: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  transition: background-color 0.3s, color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.font-display {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--background) 80%, transparent);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--brand);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

.btn-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.btn-icon:hover {
  background: var(--accent);
}

.btn-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

.btn-webflow {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #146EF5;
  color: white;
  transition: background-color 0.2s;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.btn-webflow:hover { background: #0F5FD6; }

.btn-shopify {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #96BF48;
  color: white;
  transition: background-color 0.2s;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.btn-shopify:hover { background: #7FA73D; }

.menu-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.menu-toggle:hover { background: var(--accent); }

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-menu-inner a {
  display: block;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.mobile-menu-inner a:hover { color: var(--foreground); }

.mobile-menu-actions {
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-theme-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  background: var(--accent);
  transition: background-color 0.2s;
}

.btn-theme-mobile:hover { opacity: 0.8; }

.mobile-menu-actions .btn-webflow,
.mobile-menu-actions .btn-shopify {
  text-align: center;
  padding: 0.625rem 1rem;
}

/* Section headers */
.section-label {
  font-size: 0.8125rem;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.5rem; }
}

.section-desc {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 9rem;
    padding-bottom: 7rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg::before {
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  background: rgba(232, 119, 46, 0.05);
}

.hero-bg::after {
  top: -5rem;
  left: -10rem;
  width: 500px;
  height: 500px;
  background: rgba(232, 119, 46, 0.08);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero h1 .webflow { color: #4353FF; }
.hero h1 .shopify { color: #96bf48; }

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  color: white;
  font-size: 0.9375rem;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-hero-webflow {
  background: #4353FF;
  box-shadow: 0 10px 15px -3px rgba(67, 83, 255, 0.2);
}

.btn-hero-webflow:hover { background: #3644E0; }

.btn-hero-shopify {
  background: #96bf48;
  box-shadow: 0 10px 15px -3px rgba(150, 191, 72, 0.2);
}

.btn-hero-shopify:hover { background: #7ea23d; }

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.hero-perk {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-perk svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

/* Dashboard mockup */
.mockup-wrap {
  position: relative;
}

.mockup {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(232, 119, 46, 0.1);
  border: 1px solid var(--border);
}

.mockup-bar {
  background: var(--card);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-dots {
  display: flex;
  gap: 0.375rem;
}

.mockup-dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #facc15; }
.mockup-dots span:nth-child(3) { background: #4ade80; }

.mockup-url {
  flex: 1;
  margin: 0 1rem;
  background: #f3f4f6;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

.dark .mockup-url {
  background: var(--muted);
  color: var(--muted-foreground);
}

.mockup-body {
  background: linear-gradient(to bottom right, #2a2626, #1f1d1d);
  padding: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .mockup-body { padding: 2rem; }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mockup-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-header-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.mockup-header-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.mockup-header-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feed-item {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feed-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
  font-size: 0.6875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-name {
  font-size: 0.8125rem;
  font-weight: 500;
}

.feed-url {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
}

.feed-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feed-posts {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (max-width: 639px) {
  .feed-posts { display: none; }
}

.feed-status {
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.feed-status.synced {
  background: #dcfce7;
  color: #15803d;
}

.feed-status.syncing {
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
}

.floating-logo {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  background: #2a2a2a;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  section { padding-top: 7rem; padding-bottom: 7rem; }
}

/* Sources grid */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .sources-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.source-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.source-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-color: rgba(232, 119, 46, 0.2);
}

.source-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.source-card:hover .source-icon-wrap {
  background: rgba(232, 119, 46, 0.05);
}

.source-icon-wrap img {
  width: 1.75rem;
  height: 1.75rem;
}

.source-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.dark .source-card img[src*="medium"],
.dark .source-card img[src*="squarespace"] {
  filter: invert(1);
}

/* Features grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-color: rgba(232, 119, 46, 0.2);
}

.feature-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(232, 119, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(232, 119, 46, 0.15);
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
}

.feature-badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
  font-weight: 600;
  white-space: nowrap;
}

.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* How it works */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(232, 119, 46, 0.1);
  margin-bottom: 1.5rem;
}

.step-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  max-width: 260px;
  margin: 0 auto;
}

/* Pricing */
.pricing-toggles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.platform-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.platform-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  background: var(--muted);
  color: var(--muted-foreground);
}

.platform-btn:hover { background: var(--accent); }

.platform-btn.active-webflow {
  background: #4353FF;
  color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.platform-btn.active-shopify {
  background: #7AB55C;
  color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.platform-btn.active-webflow img,
.platform-btn.active-shopify img {
  filter: brightness(0) invert(1);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.billing-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  font-weight: 500;
}

.billing-label.active {
  color: var(--foreground);
  font-weight: 600;
}

.billing-switch {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 3rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--muted);
  transition: background-color 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.billing-switch.yearly {
  background: var(--brand);
}

.billing-switch-thumb {
  position: absolute;
  top: 50%;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s ease;
  transform: translateY(-50%);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
  pointer-events: none;
}

.billing-switch.yearly .billing-switch-thumb {
  transform: translateY(-50%) translateX(1.5rem);
}

.save-badge {
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
}

.pricing-grid.shopify {
  max-width: 72rem;
}

@media (min-width: 640px) {
  .pricing-grid.webflow { grid-template-columns: repeat(2, 1fr); max-width: 56rem; }
  .pricing-grid.shopify { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pricing-grid.shopify { grid-template-columns: repeat(3, 1fr); }
}

.plan-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.plan-card:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }

.plan-card.highlighted {
  border: 2px solid var(--brand);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--brand);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.plan-price-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
}

.plan-price-period {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-left: 0.25rem;
}

.plan-yearly-note {
  display: block;
  font-size: 0.75rem;
  color: var(--brand);
  margin-top: 0.25rem;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
}

.plan-features li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.plan-features li.included svg { color: var(--brand); }
.plan-features li.excluded svg { color: #d1d5db; }
.plan-features li.excluded span { color: var(--muted-foreground); }

.plan-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.plan-cta:hover { background: var(--accent); }

.plan-cta.premium {
  color: white;
  border: none;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.plan-cta.premium.webflow { background: #4353FF; }
.plan-cta.premium.webflow:hover { background: #3644E0; }
.plan-cta.premium.shopify { background: #7AB55C; }
.plan-cta.premium.shopify:hover { background: #6A9F4E; }

.pricing-footnote {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-color: rgba(232, 119, 46, 0.2);
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.1;
}

.review-quote svg {
  width: 3rem;
  height: 3rem;
  color: var(--brand);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(232, 119, 46, 0.1);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.review-location {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--brand);
  color: var(--brand);
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.625;
  position: relative;
  z-index: 1;
  white-space: pre-line;
}

blockquote.review-text {
  quotes: none;
}

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

details.faq-item[open] {
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--foreground);
}

details.faq-item summary.faq-trigger svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

details.faq-item[open] summary.faq-trigger svg {
  transform: rotate(180deg);
}

details.faq-item .faq-content {
  padding: 0 1.25rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625;
  color: var(--muted-foreground);
}

details.faq-item summary.faq-trigger span {
  flex: 1;
  min-width: 0;
}

details.faq-item .faq-content p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* Pricing: all plans in HTML; JS only toggles visibility */
#pricing .pricing-subtitle-webflow,
#pricing .pricing-footnote-webflow,
#pricing .pricing-panel-webflow {
  display: none;
}

#pricing.platform-webflow .pricing-subtitle-shopify,
#pricing.platform-webflow .pricing-footnote-shopify,
#pricing.platform-webflow .pricing-panel-shopify {
  display: none;
}

#pricing.platform-webflow .pricing-subtitle-webflow,
#pricing.platform-webflow .pricing-footnote-webflow,
#pricing.platform-webflow .pricing-panel-webflow {
  display: block;
}

#pricing.platform-webflow .pricing-panel-webflow {
  display: grid;
}

#pricing .plan-price-yearly {
  display: none;
}

#pricing.billing-yearly .plan-price-monthly {
  display: none;
}

#pricing.billing-yearly .plan-price-yearly {
  display: block;
}

/* CTA */
.cta-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .cta-section { padding-top: 4rem; padding-bottom: 4rem; }
}

.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, #E8772E, #D16A25, #B85A1E);
  padding: 2.5rem 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-box { padding: 4rem; }
}

.cta-box::before,
.cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(40px);
  pointer-events: none;
}

.cta-box::before {
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
}

.cta-box::after {
  bottom: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
}

.cta-inner {
  position: relative;
}

.cta-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-box h2 { font-size: 2.75rem; }
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: background-color 0.2s;
}

.cta-webflow { background: #4353FF; }
.cta-webflow:hover { background: #3644E0; }
.cta-shopify { background: #7AB55C; }
.cta-shopify:hover { background: #6A9F4E; }

/* Footer */
.footer {
  background: #1a1a2e;
  color: white;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
  max-width: 20rem;
  margin-top: 1rem;
}

.footer h4 {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.625rem;
}

.footer ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom p { text-align: left; }
}

.footer-bottom a.brand-link {
  color: var(--brand);
  transition: color 0.2s;
}

.footer-bottom a.brand-link:hover { color: #D16A25; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-legal { gap: 1.5rem; }
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icon helpers */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }

.hidden { display: none !important; }
