/* ============================================= */
/* RESET & BASE                                  */
/* ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============================================= */
/* COLOR SYSTEM                                  */
/* ============================================= */
:root {
  --pw-deep: #32007c;
  --pw-dark: #3e2c66;
  --pw-mid: #5a3d8a;
  --pw-accent: #913afb;
  --pw-accent-hover: #7b2ee0;
  --pw-accent-light: rgba(145, 58, 251, 0.08);
  --pw-light-bg: #f7f5fb;
  --pw-lighter-bg: #faf9fd;
  --pw-border: #e8e2f2;
  --pw-text: #3a3a4a;
  --pw-text-light: #6e6e7e;
  --pw-success: #2ecc71;
  --pw-white: #ffffff;
  --pw-shadow-sm: 0 1px 3px rgba(62,44,102,0.06);
  --pw-shadow-md: 0 4px 16px rgba(62,44,102,0.08);
  --pw-shadow-lg: 0 8px 32px rgba(62,44,102,0.12);
  --pw-radius: 12px;
  --pw-radius-sm: 8px;
}

/* ============================================= */
/* NAVIGATION                                    */
/* ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(50, 0, 124, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
  font-family: 'Quicksand', sans-serif; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--pw-accent); color: #fff !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 700;
  font-size: 14px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--pw-accent-hover); }

/* ============================================= */
/* HERO                                          */
/* ============================================= */
.hero {
  background: linear-gradient(165deg, #32007c 0%, #2a0068 40%, #1e004d 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(145,58,251,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,58,251,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  color: #fff; font-size: 42px; max-width: 700px; margin: 0 auto 16px;
  font-weight: 700; letter-spacing: -0.5px;
}
.hero-sub {
  color: rgba(255,255,255,0.78); font-size: 18px; max-width: 600px;
  margin: 0 auto 28px; line-height: 1.65;
}

/* Social proof bar */
.hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 32px; flex-wrap: wrap;
}
.hero-proof-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 15px;
}
.hero-proof-item strong { color: #fff; font-size: 17px; font-weight: 700; }
.hero-proof-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* CTA group */
.hero-ctas {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pw-accent); color: #fff;
  padding: 14px 32px; border-radius: var(--pw-radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 17px;
  transition: all 0.25s ease; border: 2px solid var(--pw-accent);
  box-shadow: 0 4px 16px rgba(145,58,251,0.3);
  line-height: 1.2;
}
.btn-primary:hover {
  background: var(--pw-accent-hover); border-color: var(--pw-accent-hover);
  transform: translateY(-1px); box-shadow: 0 6px 24px rgba(145,58,251,0.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 32px; border-radius: var(--pw-radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 17px;
  transition: all 0.25s ease; border: 2px solid rgba(255,255,255,0.4);
  line-height: 1.2;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08);
}
.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--pw-accent); border: 2px solid var(--pw-accent);
  background: transparent;
  padding: 14px 32px; border-radius: var(--pw-radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 17px;
  transition: all 0.25s ease;
  line-height: 1.2;
}
.btn-ghost-dark:hover {
  background: var(--pw-accent-light);
}

.hero-micro {
  color: rgba(255,255,255,0.5); font-size: 14px;
}

/* ============================================= */
/* SECTIONS                                      */
/* ============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--pw-light-bg); }
.section-dark { background: var(--pw-deep); color: #fff; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  color: var(--pw-dark); font-size: 32px; margin-bottom: 12px;
}
.section-header p {
  color: var(--pw-text-light); font-size: 17px; max-width: 600px; margin: 0 auto;
}
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================= */
/* PROBLEM / SOLUTION                            */
/* ============================================= */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.problem-col h3 {
  font-size: 22px; color: var(--pw-dark); margin-bottom: 20px;
}
.problem-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px; font-size: 16px; color: var(--pw-text);
}
.problem-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-top: 1px;
}
.problem-icon.negative { background: #fce4ec; color: #c62828; }
.problem-icon.positive { background: #e8f5e9; color: #2e7d32; }

/* ============================================= */
/* TESTIMONIALS                                  */
/* ============================================= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--pw-deep);
  border-radius: var(--pw-radius);
  padding: 32px 28px;
  color: #fff;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card h4 {
  font-size: 19px; font-weight: 700; margin-bottom: 14px;
  color: #fff; line-height: 1.35;
}
.testimonial-card p {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.82);
  flex-grow: 1; margin-bottom: 18px; font-style: italic;
}
.testimonial-author {
  font-size: 14px; color: rgba(255,255,255,0.6);
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-author strong {
  display: block; color: rgba(255,255,255,0.9); font-style: normal;
  margin-bottom: 2px;
}

/* ============================================= */
/* DEMO SECTION                                  */
/* ============================================= */
.demo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.demo-text h2 { font-size: 30px; color: var(--pw-dark); margin-bottom: 14px; }
.demo-text > p { color: var(--pw-text-light); font-size: 16px; margin-bottom: 20px; line-height: 1.65; }
.demo-features { margin-bottom: 24px; }
.demo-features li {
  list-style: none; font-size: 16px; color: var(--pw-text);
  padding: 6px 0; padding-left: 24px; position: relative;
}
.demo-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--pw-accent); font-weight: 700;
}
.demo-video {
  border-radius: var(--pw-radius); overflow: hidden;
  box-shadow: var(--pw-shadow-lg);
  background: #1a0040;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.demo-video-placeholder {
  color: rgba(255,255,255,0.5); font-size: 15px;
  text-align: center;
}
.demo-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pw-accent); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 12px; cursor: pointer;
  transition: transform 0.2s;
}
.demo-play-btn:hover { transform: scale(1.1); }
.demo-play-btn svg { fill: #fff; width: 24px; height: 24px; margin-left: 3px; }

/* ============================================= */
/* BRANCHES                                      */
/* ============================================= */
.branches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.branch-card {
  padding: 28px 24px;
  border-bottom: 2px solid var(--pw-border);
  transition: border-color 0.3s;
}
.branch-card:hover { border-color: var(--pw-accent); }
.branch-number {
  font-family: 'Quicksand', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--pw-accent); margin-bottom: 6px;
}
.branch-card h3 {
  font-size: 20px; color: var(--pw-dark); margin-bottom: 8px;
}
.branch-card p {
  font-size: 15px; color: var(--pw-text-light); line-height: 1.55;
}

/* ============================================= */
/* STEPS                                         */
/* ============================================= */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px; background: var(--pw-border);
}
.step { text-align: center; position: relative; }
.step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--pw-light-bg); border: 2px solid var(--pw-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step-icon svg { width: 28px; height: 28px; stroke: var(--pw-accent); fill: none; stroke-width: 1.5; }
.step h3 {
  font-size: 20px; color: var(--pw-dark); margin-bottom: 8px;
}
.step p {
  font-size: 15px; color: var(--pw-text-light); line-height: 1.55; max-width: 280px; margin: 0 auto;
}
.steps-ctas {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; margin-top: 40px; flex-wrap: wrap;
}

/* ============================================= */
/* PRICING                                       */
/* ============================================= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--pw-white);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 32px 24px 28px;
  text-align: center;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pw-shadow-lg);
}
.pricing-card.recommended {
  border: 2px solid var(--pw-accent);
  box-shadow: 0 4px 24px rgba(145,58,251,0.12);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pw-accent); color: #fff;
  font-size: 13px; font-weight: 700; padding: 4px 18px;
  border-radius: 20px; font-family: 'Quicksand', sans-serif; white-space: nowrap;
}
.pricing-card h3 { font-size: 22px; color: var(--pw-dark); margin-bottom: 4px; }
.pricing-subtitle { font-size: 14px; color: var(--pw-text-light); margin-bottom: 16px; }
.pricing-amount {
  font-family: 'Quicksand', sans-serif; font-size: 42px; font-weight: 700;
  color: var(--pw-dark); line-height: 1;
}
.pricing-amount span { font-size: 17px; font-weight: 500; color: var(--pw-text-light); }
.pricing-gross { font-size: 13px; color: var(--pw-text-light); margin-top: 4px; }
.pricing-yearly { font-size: 13px; color: var(--pw-success); font-weight: 600; margin-top: 6px; }
.pricing-divider { height: 1px; background: var(--pw-border); margin: 18px 0; }
.pricing-features {
  text-align: left; flex-grow: 1; margin-bottom: 20px;
}
.pricing-features li {
  list-style: none; font-size: 15px; color: var(--pw-text);
  padding: 5px 0 5px 22px; position: relative;
}
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--pw-accent); font-weight: 700; font-size: 14px;
}
.pricing-btn {
  display: block; width: 100%; padding: 12px;
  border-radius: var(--pw-radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 700;
  font-size: 16px; text-align: center; transition: all 0.2s;
  cursor: pointer;
}
.pricing-btn.outline {
  background: var(--pw-accent-light); color: var(--pw-accent);
  border: 1px solid transparent;
}
.pricing-btn.outline:hover { background: rgba(145,58,251,0.14); }
.pricing-btn.filled {
  background: var(--pw-accent); color: #fff; border: none;
  box-shadow: 0 4px 12px rgba(145,58,251,0.25);
}
.pricing-btn.filled:hover {
  background: var(--pw-accent-hover);
  box-shadow: 0 6px 20px rgba(145,58,251,0.35);
}
.pricing-trust {
  text-align: center; margin-top: 24px;
  font-size: 15px; font-weight: 600; color: var(--pw-success);
}
.pricing-note {
  text-align: center; margin-top: 12px;
  font-size: 13px; color: #999; max-width: 760px; margin-left: auto; margin-right: auto;
}
.pricing-note a { color: var(--pw-accent); }

/* ============================================= */
/* FAQ                                           */
/* ============================================= */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.faq-item {
  background: var(--pw-white); border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius-sm); overflow: hidden;
}
.faq-question {
  padding: 18px 20px; font-weight: 600; font-size: 16px;
  color: var(--pw-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--pw-lighter-bg); }
.faq-question::after { content: '+'; font-size: 21px; color: var(--pw-accent); font-weight: 400; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px; color: var(--pw-text-light); line-height: 1.65;
}
.faq-item.open .faq-answer {
  padding: 0 20px 18px; max-height: 300px;
}

/* ============================================= */
/* STATS BAR                                     */
/* ============================================= */
.stats-section { background: var(--pw-deep); padding: 60px 0; }
.stats-section .section-header h2 { color: #fff; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: center;
}
.stat-number {
  font-family: 'Quicksand', sans-serif; font-size: 54px; font-weight: 700;
  color: #fff; line-height: 1;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 4px; max-width: 200px; margin-left: auto; margin-right: auto; }

/* ============================================= */
/* PARTNER SECTION                               */
/* ============================================= */
.partner-grid {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.partner-item {
  margin-bottom: 32px;
}
.partner-item:last-child { margin-bottom: 0; }
.partner-item h3 {
  font-size: 20px; color: var(--pw-dark); margin-bottom: 6px;
}
.partner-item p {
  font-size: 15px; color: var(--pw-text-light); line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

/* ============================================= */
/* FINAL CTA                                     */
/* ============================================= */
.final-cta {
  background: linear-gradient(165deg, #32007c 0%, #1e004d 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -40%; right: -15%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,58,251,0.1) 0%, transparent 70%);
}
.final-cta h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }
.final-cta > .container > p {
  color: rgba(255,255,255,0.7); font-size: 17px;
  max-width: 600px; margin: 0 auto 28px;
}
.final-cta .hero-ctas { margin-bottom: 14px; }
.final-cta .hero-micro { color: rgba(255,255,255,0.4); }

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.footer {
  background: #f5f3f9;
  font-size: 14px;
  color: var(--pw-text-light);
}
.footer-logos {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--pw-border);
}
.footer-logos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.footer-logo-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}
.footer-logo-card img {
  height: 72px; width: auto; object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.9;
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.footer-logo-card:hover img {
  opacity: 1; filter: grayscale(0);
  transform: translateY(-2px);
}
.footer-logo-card p {
  font-size: 13px; line-height: 1.5; color: var(--pw-text-light);
  max-width: 200px;
}

.footer-socket {
  padding: 20px 0;
  background: #efecf5;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.footer-copy { font-size: 14px; color: var(--pw-text-light); }
.footer-copy a { color: var(--pw-dark); font-weight: 600; }
.footer-copy a:hover { color: var(--pw-accent); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--pw-text-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--pw-dark); }
.footer-social {
  display: flex; gap: 10px; align-items: center; list-style: none; padding: 0; margin: 0;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pw-white); color: var(--pw-dark);
  border: 1px solid var(--pw-border);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: var(--pw-accent); color: #fff; border-color: var(--pw-accent);
  transform: translateY(-1px);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 900px) {
  .footer-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 520px) {
  .footer-logos-grid { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ============================================= */
/* SUBPAGE HEADER                                */
/* ============================================= */
.subhero {
  background: linear-gradient(165deg, #32007c 0%, #2a0068 40%, #1e004d 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.subhero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(145,58,251,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.subhero h1 {
  color: #fff; font-size: 38px; max-width: 760px; margin: 0 auto 14px;
  font-weight: 700; letter-spacing: -0.5px;
  position: relative;
}
.subhero p {
  color: rgba(255,255,255,0.78); font-size: 18px; max-width: 640px;
  margin: 0 auto; line-height: 1.65;
  position: relative;
}

/* Contact layout */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px; color: var(--pw-dark); margin-bottom: 14px;
}
.contact-info p {
  color: var(--pw-text-light); font-size: 16px; line-height: 1.65;
  margin-bottom: 18px;
}
.contact-meta {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.contact-meta li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--pw-text);
  padding: 8px 0;
}
.contact-meta li strong {
  color: var(--pw-dark); min-width: 110px; display: inline-block;
}
.contact-meta a { color: var(--pw-accent); }
.contact-meta a:hover { text-decoration: underline; }

.contact-card {
  background: var(--pw-white);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 32px;
  box-shadow: var(--pw-shadow-md);
}
.contact-card h3 {
  font-size: 22px; color: var(--pw-dark); margin-bottom: 6px;
}
.contact-card > p {
  font-size: 15px; color: var(--pw-text-light); margin-bottom: 20px;
}
.form-row { margin-bottom: 16px; }
.form-row.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--pw-dark); margin-bottom: 6px;
  font-family: 'Quicksand', sans-serif;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius-sm);
  font-family: 'Open Sans', sans-serif; font-size: 15px;
  color: var(--pw-text); background: var(--pw-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--pw-accent);
  box-shadow: 0 0 0 3px rgba(145,58,251,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--pw-text-light); line-height: 1.5;
}
.form-check input[type=checkbox] { margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--pw-accent); }
.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pw-accent); color: #fff;
  padding: 14px 28px; border-radius: var(--pw-radius-sm);
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 16px;
  transition: all 0.2s; border: 0; cursor: pointer;
  box-shadow: 0 4px 12px rgba(145,58,251,0.25);
}
.form-submit:hover {
  background: var(--pw-accent-hover);
  box-shadow: 0 6px 20px rgba(145,58,251,0.35);
}

/* ============================================= */
/* MOBILE                                        */
/* ============================================= */
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .hero-proof { flex-direction: column; gap: 8px; }
  .hero-proof-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost, .btn-ghost-dark { width: 260px; }
  .problem-grid, .demo-grid, .testimonials-grid,
  .branches-grid, .steps-grid, .pricing-grid, .faq-grid,
  .stats-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 26px; }
  .subhero h1 { font-size: 30px; }
  .nav-links { display: none; }
  .form-row.split { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* ANIMATIONS                                    */
/* ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
