/* ============================================================
   DUCKDOODLE — MAIN STYLESHEET
   Restaurant SaaS Platform · United Kingdom
   ============================================================ */

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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-bg:             #ffffff;
  --color-bg-subtle:      #f8fafc;
  --color-bg-dark:        #0f172a;
  --color-bg-dark-2:      #1e293b;
  --color-primary:        #4f46e5;
  --color-primary-hover:  #3730a3;
  --color-primary-light:  #ede9fe;
  --color-accent:         #10b981;
  --color-accent-light:   #d1fae5;
  --color-text:           #0f172a;
  --color-text-muted:     #475569;
  --color-text-subtle:    #94a3b8;
  --color-border:         #e2e8f0;
  --color-border-dark:    #334155;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-py:       96px;
  --container-max:    1200px;
  --container-px:     24px;

  --radius-sm:  6px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(26px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
h4 { font-size: 18px; }

p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section      { padding: var(--section-py) 0; }
.section--alt { background: var(--color-bg-subtle); }
.section--dark {
  background: var(--color-bg-dark);
  color: white;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.nav__logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 8px 24px 20px;
}

.nav__mobile.open { display: block; }

.nav__mobile-link {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link.mobile-cta { color: var(--color-primary); font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--secondary:hover {
  background: var(--color-bg-subtle);
  border-color: #cbd5e1;
}

.btn--outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

.btn--ghost-white {
  background: white;
  color: var(--color-primary);
  font-weight: 700;
}
.btn--ghost-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-bg-dark);
  color: white;
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 22px;
}

.hero__title span {
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 470px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   DASHBOARD MOCKUP
   ============================================================ */
.mockup-window {
  background: #1e293b;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -10px rgb(0 0 0 / 0.55), 0 0 0 1px rgba(99,102,241,0.2);
  border: 1px solid #334155;
}

.mockup-titlebar {
  background: #0f172a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #334155;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-dot--red    { background: #ef4444; }
.mockup-dot--yellow { background: #f59e0b; }
.mockup-dot--green  { background: #10b981; }

.mockup-title {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  margin-left: 6px;
}

.mockup-body { padding: 20px; }

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mockup-logo-text {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.mockup-live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.mockup-live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.mockup-stat {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid #334155;
}

.mockup-stat-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.mockup-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.mockup-orders { display: flex; flex-direction: column; gap: 8px; }

.mockup-order {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-order-id   { font-size: 11px; color: #64748b; font-weight: 500; }
.mockup-order-name { font-size: 13px; color: #e2e8f0; font-weight: 600; margin-top: 2px; }

.mockup-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.mockup-badge--new       { background: rgba(79, 70, 229, 0.2); color: #a5b4fc; }
.mockup-badge--preparing { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.mockup-badge--ready     { background: rgba(16, 185, 129, 0.2); color: #10b981; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-strip__check {
  width: 18px;
  height: 18px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-label--light { color: #a5b4fc; }

.section-header h2    { color: var(--color-text); margin-bottom: 16px; }
.section-header p     { font-size: 17px; color: var(--color-text-muted); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card__icon svg { width: 22px; height: 22px; }

.feature-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__list  { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.why__item { display: flex; gap: 14px; align-items: flex-start; }

.why__item-check {
  width: 32px;
  height: 32px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.why__item-check svg { width: 16px; height: 16px; }

.why__item-content h4 { font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 3px; }
.why__item-content p  { font-size: 14px; color: var(--color-text-muted); }

/* ============================================================
   SUBSCRIPTION PREVIEW BOX
   ============================================================ */
.sub-preview {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.sub-preview__price-block {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.sub-preview__price-label { font-size: 12px; color: var(--color-text-subtle); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.sub-preview__price-value { font-size: 30px; font-weight: 800; color: var(--color-text); letter-spacing: -0.03em; }
.sub-preview__price-period { font-size: 13px; color: var(--color-text-muted); margin-top: 3px; }

.sub-preview__rows { display: flex; flex-direction: column; gap: 10px; }

.sub-preview__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.sub-preview__row-label { font-size: 14px; color: var(--color-text-muted); }

.sub-preview__row-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
}

/* ============================================================
   TRUST CALLOUT SECTION (KYC Critical)
   ============================================================ */
.trust-section {
  background: var(--color-bg-dark);
  padding: 88px 0;
  color: white;
}

.trust-section__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.trust-section h2  { color: white; margin-bottom: 16px; }
.trust-section > .trust-section__inner > p { color: #94a3b8; font-size: 17px; margin-bottom: 0; }

.trust-callout-box {
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-top: 44px;
  text-align: left;
}

.trust-callout-box p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.75;
}

.trust-callout-box p:last-child { margin-bottom: 0; }
.trust-callout-box strong { color: #a5b4fc; font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-bg-dark);
  padding: 72px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5b4fc;
  margin-bottom: 14px;
}

.page-hero h1    { color: white; margin-bottom: 16px; }
.page-hero p     { font-size: 18px; color: #94a3b8; max-width: 560px; }

/* ============================================================
   PRODUCT CARDS (products page)
   ============================================================ */
.product-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--color-border);
}

.product-section:last-of-type { border-bottom: none; }

.product-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-section__inner--reverse { direction: rtl; }
.product-section__inner--reverse > * { direction: ltr; }

.product-section__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.product-section__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.product-section__icon svg { width: 26px; height: 26px; }

.product-section h2 { color: var(--color-text); margin-bottom: 14px; }
.product-section p  { font-size: 16px; color: var(--color-text-muted); margin-bottom: 24px; }

.product-features { display: flex; flex-direction: column; gap: 10px; }

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.product-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-visual {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 48px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-visual-inner {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-visual-bar {
  height: 12px;
  background: var(--color-border);
  border-radius: 100px;
  overflow: hidden;
}

.product-visual-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #818cf8);
  border-radius: 100px;
}

.product-visual-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: center;
}

.product-visual-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-visual-icon svg { width: 20px; height: 20px; }
.product-visual-title { font-size: 14px; font-weight: 600; color: var(--color-text); }
.product-visual-sub   { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}

.pricing-card--featured {
  background: var(--color-bg-dark);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.pricing-card--featured .pricing-tier { color: #94a3b8; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-currency { font-size: 22px; font-weight: 700; color: var(--color-text); align-self: flex-start; margin-top: 6px; }
.pricing-amount   { font-size: 52px; font-weight: 800; color: var(--color-text); letter-spacing: -0.04em; line-height: 1; }
.pricing-period   { font-size: 14px; color: var(--color-text-muted); align-self: flex-end; margin-bottom: 6px; }

.pricing-card--featured .pricing-currency,
.pricing-card--featured .pricing-amount { color: white; }
.pricing-card--featured .pricing-period { color: #94a3b8; }

.pricing-custom-price { font-size: 36px; font-weight: 800; color: var(--color-text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }

.pricing-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  min-height: 42px;
}

.pricing-card--featured .pricing-desc { color: #94a3b8; }

.pricing-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 24px;
}

.pricing-card--featured .pricing-divider { background: var(--color-border-dark); }

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.pricing-card--featured .pricing-feature { color: #cbd5e1; }

.pricing-check { color: var(--color-accent); flex-shrink: 0; }

.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-note {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.pricing-note p { font-size: 15px; color: var(--color-text-muted); }
.pricing-note strong { color: var(--color-text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.faq-answer { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.about-stat {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.about-stat__value { font-size: 32px; font-weight: 800; color: var(--color-primary); letter-spacing: -0.03em; }
.about-stat__label { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }

.callout-box {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
}

.callout-box h3    { font-size: 16px; font-weight: 600; color: var(--color-text); margin-bottom: 14px; }
.callout-box ul    { display: flex; flex-direction: column; gap: 9px; }
.callout-box ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--color-text-muted); }
.callout-box ul li::before { content: ''; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; flex-shrink: 0; }

.callout-box--warning {
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.callout-box--warning h3  { color: #92400e; }
.callout-box--warning li  { color: #78350f; }
.callout-box--warning li::before { background: #f59e0b; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-text-subtle); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--color-text); }
.contact-info-value a { color: var(--color-primary); }

.form-group  { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control { resize: vertical; min-height: 128px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px var(--container-px) 100px;
}

.legal-updated {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin: 8px 0 52px;
}

.legal-wrap h2 { font-size: 22px; margin: 44px 0 14px; color: var(--color-text); }
.legal-wrap h3 { font-size: 17px; margin: 30px 0 10px; color: var(--color-text); font-weight: 600; }

.legal-wrap p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-wrap ul, .legal-wrap ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-wrap ul { list-style: disc; }
.legal-wrap ol { list-style: decimal; }

.legal-wrap li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 7px;
}

.legal-wrap a { color: var(--color-primary); text-decoration: underline; }

.legal-wrap strong { color: var(--color-text); font-weight: 600; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-primary);
  padding: 88px 0;
  text-align: center;
}

.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; }

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: #94a3b8;
  padding: 68px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.footer__logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #10b981;
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: 14px;
  color: #64748b;
  transition: color 0.15s;
}

.footer__link:hover { color: #e2e8f0; }
.footer__link--accent { color: #a5b4fc; }

.footer__bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy { font-size: 13px; color: #475569; }

.footer__bottom-links { display: flex; gap: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  .nav__links,
  .nav__cta     { display: none; }
  .nav__hamburger { display: flex; }

  .hero         { padding: 64px 0 80px; }
  .hero__inner  { grid-template-columns: 1fr; gap: 48px; }
  .hero__mockup { order: -1; }

  .why-grid              { grid-template-columns: 1fr; gap: 40px; }
  .about-intro           { grid-template-columns: 1fr; gap: 48px; }
  .about-stat-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 48px; }
  .product-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .product-section__inner--reverse { direction: ltr; }
  .footer__grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom        { flex-direction: column; align-items: flex-start; }
  .trust-strip__inner    { gap: 20px; }
}

@media (max-width: 540px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mockup-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stat-grid { grid-template-columns: 1fr; }
}
