/* QPayo Landing Page Styles */

:root {
  --teal: #00C2B2;
  --teal-dark: #00A89A;
  --teal-light: #E6FAF8;
  --dark: #1A1A2E;
  --gray-900: #2D2D3A;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #DDD;
  --gray-100: #F8F9FA;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--teal); }
.text-center { text-align: center; }

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--gray-100);
}

.section-sub {
  max-width: 560px;
  margin: 16px auto 48px;
  color: var(--gray-700);
  font-size: 1.05rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo--center {
  justify-content: center;
  margin-bottom: 24px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 133, 119, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(0, 194, 178, 0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo:hover .logo__icon {
  box-shadow: 0 10px 24px rgba(0, 133, 119, 0.55), 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px rgba(0, 224, 212, 0.5);
  transform: scale(1.05);
}

.logo__icon--lg {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 133, 119, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 5px rgba(0, 194, 178, 0.35);
}

.logo__text {
  color: var(--dark);
  letter-spacing: -0.03em;
}

.logo__text--lg {
  font-size: 2rem;
}

.logo__brand {
  color: var(--dark);
}

.logo__q {
  background: linear-gradient(135deg, #00E5D4 0%, #00A89A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}

.nav a:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

/* Store badges */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badges--center {
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition);
}

.store-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #111;
}

/* App screenshots */
.screenshot {
  display: block;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition);
}

.screenshot--hero {
  width: min(100%, 320px);
  margin: 0 auto;
}

.screenshot--sm {
  width: 180px;
}

.screenshot--md {
  width: 220px;
  margin: 0 auto;
}

.screenshot--lg {
  width: 260px;
  margin: 0 auto;
}

.screenshot--gallery {
  width: 200px;
}

.screenshot--tilt-left { transform: rotate(-8deg); }
.screenshot--tilt-center { transform: translateY(-16px) scale(1.05); z-index: 2; position: relative; }
.screenshot--tilt-right { transform: rotate(8deg); }

.screenshot--center {
  transform: scale(1.08);
  z-index: 2;
  position: relative;
}

.phones-angled .screenshot {
  flex-shrink: 0;
}

.highlight__inner .screenshot:hover,
.phones-row .screenshot:hover,
.gallery-row .screenshot:hover {
  transform: translateY(-4px);
}

.highlight__inner .screenshot--tilt-left:hover { transform: rotate(-8deg) translateY(-4px); }
.highlight__inner .screenshot--tilt-center:hover { transform: translateY(-20px) scale(1.05); }
.highlight__inner .screenshot--tilt-right:hover { transform: rotate(8deg) translateY(-4px); }
.highlight__inner .screenshot--center:hover { transform: scale(1.08) translateY(-4px); }

/* Phone mockups (legacy) */
.phone {
  background: var(--dark);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 2;
}

.phone__screen {
  border-radius: 20px;
  padding: 36px 16px 16px;
  min-height: 320px;
  overflow: hidden;
}

.phone__screen--dark {
  background: #12121F;
  color: var(--white);
}

.phone__screen--light {
  background: var(--white);
  color: var(--dark);
}

.phone--hero {
  width: 260px;
  transform: rotate(-5deg);
}

.phone--sm { width: 160px; }
.phone--md { width: 200px; }
.phone--lg { width: 240px; }
.phone--gallery { width: 180px; }

.phone--tilt-left { transform: rotate(-12deg); }
.phone--tilt-center { transform: translateY(-20px) scale(1.05); z-index: 2; }
.phone--tilt-right { transform: rotate(12deg); }

.phone--center {
  transform: scale(1.08);
  z-index: 2;
}

/* App UI elements */
.app-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin: 16px 0;
}

.chart-bar {
  flex: 1;
  background: #333;
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

.chart-bar--active { background: var(--teal); }

.app-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
}

.app-stat span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
}

.app-stat--sm { font-size: 1.4rem; }

.app-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.app-list__item strong { margin-left: auto; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--red { background: #FF6B6B; }
.dot--blue { background: #4ECDC4; }
.dot--green { background: #95E1A3; }
.dot--orange { background: #FFA07A; }
.dot--purple { background: #DDA0DD; }
.dot--teal { background: var(--teal); }

.mini-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.big-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  text-align: center;
  margin: 20px 0;
}

.sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sub-row span:last-child { margin-left: auto; font-weight: 600; }

.sub-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
}

.sub-icon--n { background: #E50914; }
.sub-icon--s { background: #1DB954; }
.sub-icon--a { background: #FF0000; }

.mini-chart {
  height: 40px;
  margin: 12px 0;
}

.mini-chart svg { width: 100%; height: 100%; }
.mini-chart--tall { height: 60px; }

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cat-item {
  background: var(--gray-100);
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
}

.cat-item span { display: block; font-size: 1.2rem; margin-bottom: 4px; }

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.keypad span {
  background: #222;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.savings-ring {
  position: relative;
  width: 80px;
  margin: 20px auto;
}

.savings-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--teal);
}

.donut-chart {
  width: 100px;
  margin: 16px auto;
}

.legend {
  font-size: 0.65rem;
  color: var(--gray-500);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.calendar { font-size: 0.65rem; }
.cal-header { font-weight: 700; margin-bottom: 8px; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; text-align: center; }
.cal-day { padding: 6px; border-radius: 4px; }
.cal-day--muted { color: var(--gray-300); }
.cal-day--active { background: var(--teal); color: var(--white); font-weight: 700; }
.cal-day--dot { position: relative; }
.cal-day--dot::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
}

.unused-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.badge {
  font-size: 0.55rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.badge--warn { background: #FFF3CD; color: #856404; }

.app-btn {
  display: block;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
}

.app-btn--sm { width: auto; padding: 8px 24px; margin: 8px auto 0; }

.form-mock { padding: 8px 0; }
.input-mock {
  height: 28px;
  background: var(--gray-100);
  border-radius: 6px;
  margin-bottom: 8px;
}

.settings-row {
  font-size: 0.7rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.welcome-steps { margin: 16px 0; }
.welcome-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  padding: 8px 0;
  color: var(--gray-500);
}

.welcome-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.welcome-step--done { color: var(--teal); }
.welcome-step--done span { background: var(--teal); }
.welcome-step--active { color: var(--white); font-weight: 600; }
.welcome-step--active span { background: var(--teal); }

/* Feature intro */
.feature-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.feature-intro__text p {
  color: var(--gray-700);
  margin-top: 16px;
}

.phones-angled {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  min-height: 320px;
}

.phones-angled .screenshot--sm:not(:first-child) {
  margin-left: -40px;
}

.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-top: 32px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--teal);
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-icon--inline {
  margin: 0 0 16px;
}

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-700); }

/* Combined highlight blocks */
.highlight-combo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.highlight-combo__content h2 {
  margin-bottom: 16px;
}

.highlight-combo__content h3 {
  margin: 28px 0 8px;
  font-size: 1.35rem;
}

.highlight-combo__content p {
  color: var(--gray-700);
}

.highlight-combo__content .check-list {
  margin-top: 24px;
}

.highlight-combo__screens {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.highlight-combo__screens .screenshot:nth-child(2) {
  transform: translateY(24px);
}

.highlight-combo--reverse .highlight-combo__inner {
  direction: rtl;
}

.highlight-combo--reverse .highlight-combo__inner > * {
  direction: ltr;
}

.highlight-combo--reverse .highlight-combo__screens .screenshot:nth-child(2) {
  transform: translateY(24px);
}

/* Highlights */
.highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.highlight__text p {
  color: var(--gray-700);
  margin-top: 12px;
}

.highlight--reverse .highlight__inner {
  direction: rtl;
}

.highlight--reverse .highlight__inner > * {
  direction: ltr;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.quote-icon {
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.avatar--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.avatar--2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.avatar--3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-500); }

/* Steps */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
}

.step__num {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step h4 { margin-bottom: 4px; }
.step p { font-size: 0.9rem; color: var(--gray-700); }

/* Annotated */
.annotated {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.annotation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.annotation--right {
  flex-direction: row-reverse;
  text-align: right;
}

.annotation__line {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin-top: 10px;
  flex-shrink: 0;
  position: relative;
}

.annotation__line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.annotation--right .annotation__line::after {
  right: auto;
  left: -4px;
}

.annotation strong { display: block; margin-bottom: 4px; }
.annotation p { font-size: 0.85rem; color: var(--gray-700); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card--featured {
  border-color: var(--teal);
  border-top: 4px solid var(--teal);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 16px 0 24px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
}

.team-photo--1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.team-photo--2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.team-photo--3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.team-photo--4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.team-member h4 { margin-bottom: 4px; }
.team-member span { font-size: 0.85rem; color: var(--gray-500); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form p {
  color: var(--gray-700);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--gray-700); }

/* Final CTA */
.cta-final {
  padding: 80px 0;
}

.cta-final h2 {
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: var(--gray-100);
  padding: 48px 0 24px;
  border-top: 1px solid var(--gray-300);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--teal); }

.footer__company {
  max-width: 520px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.footer__company p {
  margin-bottom: 4px;
}

.footer__company a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__company a:hover {
  color: var(--teal);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Legal pages */
.legal-page .header {
  position: sticky;
}

.legal {
  padding: 112px 0 80px;
  background: var(--white);
}

.legal__container {
  max-width: 780px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.legal__lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.legal section {
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.legal h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--dark);
}

.legal p {
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--teal);
}

.legal__contact {
  margin-top: 16px;
  padding: 20px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}

.legal__contact p {
  margin-bottom: 6px;
}

.legal__contact p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__inner,
  .highlight-combo__inner,
  .feature-intro,
  .highlight-combo__inner,
  .highlight__inner,
  .steps-layout,
  .contact-grid,
  .annotated {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__visual { order: -1; }
  .hero__content p { margin: 0 auto 32px; }
  .store-badges { justify-content: center; }

  .feature-intro__text { order: -1; }

  .highlight-combo--reverse .highlight-combo__inner,
  .highlight--reverse .highlight__inner { direction: ltr; }
  .highlight-combo__inner .screenshot,
  .highlight__inner .screenshot,
  .highlight__inner .phone { margin: 0 auto; }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid { grid-template-columns: 1fr; }

  .annotated__left,
  .annotated__right { display: none; }

  .steps-layout .phone { margin: 0 auto; }
  .steps-list { text-align: left; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle { display: flex; }

  .section { padding: 60px 0; }

  .phones-angled {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .highlight-combo__screens .screenshot:nth-child(2),
  .screenshot--tilt-left,
  .screenshot--tilt-right,
  .screenshot--tilt-center,
  .screenshot--center {
    transform: none;
  }

  .screenshot--sm { width: min(100%, 240px); }
  .screenshot--md { width: min(100%, 260px); }
  .screenshot--gallery { width: min(100%, 220px); }

  .phone--tilt-left,
  .phone--tilt-right,
  .phone--tilt-center {
    transform: none;
  }

  .phones-row {
    flex-direction: column;
    align-items: center;
  }

  .phone--center { transform: none; }

  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .store-badge { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}
