/* ============================================
   HeyMenu - Landing Page Styles
   Colors matched from Flutter WebColors theme
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #0F1117;
  overflow-x: hidden;
  overflow-y: auto;
}

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

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

ul {
  list-style: none;
}

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn .material-icons-outlined {
  font-size: 20px;
}

.btn-primary {
  background: #2549EB;
  color: #fff;
}

.btn-primary:hover {
  background: #1A35C4;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #E2E8F0;
  color: #0F172A;
}

.btn-outline:hover {
  background: #F1F5F9;
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(148, 163, 184, 0.4);
  color: #CBD5E1;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.05);
}

.btn-lg {
  padding: 18px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-text {
  background: none;
  color: #2549EB;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* === SECTION BASE === */
.section {
  padding: 100px 0;
}

.section-light {
  background: #F8FAFC;
}

.section-white {
  background: #FFFFFF;
}

.section-muted {
  background: #F1F5F9;
}

.section-dark-gradient {
  background: linear-gradient(180deg, #0F1117 0%, #131628 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
}

.text-white { color: #FFFFFF !important; }
.text-light { color: #CBD5E1 !important; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.2s ease;
}

.navbar.scrolled {
  background: rgba(15, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

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

.navbar-logo img {
  height: 40px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  padding: 8px 12px;
  color: #CBD5E1;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-cta {
  margin-left: 24px;
}

.navbar-toggle {
  display: none;
  color: #FFFFFF;
  font-size: 24px;
}

.navbar-toggle .material-icons-outlined {
  font-size: 28px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(15, 17, 23, 0.98);
  padding: 16px 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu .nav-link {
  padding: 12px 0;
  font-size: 16px;
}

.mobile-menu .nav-cta {
  margin: 16px 0 0;
  text-align: center;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0F1117 0%, #1A1F2E 100%);
  padding-top: 80px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 73, 235, 0.15);
  border: 1px solid rgba(37, 73, 235, 0.3);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #4A6AFF;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-price-hint {
  font-size: 14px;
  color: #94A3B8;
  margin-top: 16px;
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 480px;
}

.hero-web-screenshot {
  position: absolute;
  border-radius: 12px;
  border: 2px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-web-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-web-back {
  right: 0;
  top: 20px;
  width: 360px;
  height: 260px;
}

.hero-web-front {
  left: 0;
  bottom: 10px;
  width: 320px;
  height: 220px;
}

.hero-phone {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  height: 420px;
  background: #0F1117;
  border-radius: 28px;
  border: 3px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(37, 73, 235, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-phone-notch {
  height: 28px;
  background: #1A1A2E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-notch::after {
  content: '';
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.hero-phone img {
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 73, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon .material-icons-outlined {
  font-size: 24px;
  color: #2549EB;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(37, 73, 235, 0.08);
  color: #2549EB;
  margin-bottom: 12px;
}

.feature-tag.tag-plus {
  background: rgba(37, 73, 235, 0.08);
  color: #2549EB;
}

.feature-tag.tag-premium {
  background: rgba(124, 58, 237, 0.08);
  color: #7C3AED;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Video */
.video-section {
  text-align: center;
  margin-bottom: 56px;
}

.video-title {
  font-size: 24px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 24px;
}

.video-wrapper {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Example site */
.example-site {
  text-align: center;
}

.example-qr-card {
  display: inline-block;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.example-qr-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* === PRICING === */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-toggle .toggle-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #94A3B8;
  background: transparent;
  border-radius: 8px;
  transition: all 0.2s;
}

.pricing-toggle .toggle-btn.active {
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.plan-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-popular {
  border-color: #2549EB;
  box-shadow: 0 8px 24px rgba(37, 73, 235, 0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2549EB;
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.plan-badge.badge-premium {
  background: #7C3AED;
}

.plan-header {
  padding-top: 8px;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: #475569;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: #475569;
}

.price-period {
  font-size: 14px;
  color: #94A3B8;
}

.plan-features {
  margin-bottom: 24px;
}

.plan-features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  font-family: 'Material Icons Outlined';
  font-size: 18px;
}

.plan-features li.included {
  color: #0F172A;
}

.plan-features li.included::before {
  content: 'check_circle';
  color: #22C55E;
}

.plan-features li.excluded {
  color: #94A3B8;
}

.plan-features li.excluded::before {
  content: 'cancel';
  color: #CBD5E1;
}

.plan-cta {
  width: 100%;
  display: block;
  text-align: center;
}

/* === TESTIMONIALS === */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: calc(100% * 0.85 - 16px);
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars .star {
  color: #F59E0B;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 73, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2549EB;
  font-size: 16px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.author-business {
  font-size: 12px;
  color: #94A3B8;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
  width: 24px;
  background: #2549EB;
}

/* === QR DOWNLOAD === */
.qr-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.qr-card {
  width: 260px;
  padding: 28px;
  background: #1A1D2E;
  border-radius: 20px;
  border: 1px solid rgba(var(--card-color-rgb, 37, 73, 235), 0.2);
  text-align: center;
  box-shadow: 0 10px 30px rgba(var(--card-color-rgb, 37, 73, 235), 0.08);
}

.qr-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.qr-card-header .material-icons-outlined {
  font-size: 22px;
  color: var(--card-color, #2549EB);
}

.qr-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.qr-card-subtitle {
  font-size: 13px;
  color: #CBD5E1;
  margin-bottom: 20px;
}

.qr-code-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 16px;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(var(--card-color-rgb, 37, 73, 235), 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--card-color, #2549EB);
  transition: background 0.2s;
}

.qr-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.qr-link .material-icons-outlined {
  font-size: 16px;
}

/* === FAQ === */
.faq-list {
  margin-top: 48px;
}

.faq-item {
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(37, 73, 235, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  text-align: left;
  transition: color 0.2s;
}

.faq-item.open .faq-question {
  color: #2549EB;
}

.faq-icon {
  font-size: 24px;
  color: #94A3B8;
  transition: transform 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #2549EB;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* === CONTACT === */
.contact-form {
  position: relative;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #F1F5F9;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  color: #0F172A;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2549EB;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.contact-success {
  text-align: center;
  padding: 40px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
}

.success-icon {
  font-size: 56px;
  color: #22C55E;
}

.contact-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 20px;
}

.contact-success p {
  font-size: 16px;
  color: #475569;
  margin-top: 8px;
}

/* === FOOTER === */
.footer {
  background: #0F1117;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.store-badges {
  display: flex;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(203, 213, 225, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  transition: background 0.2s;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.05);
}

.store-badge .material-icons-outlined {
  font-size: 18px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #CBD5E1;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.email-toggle {
  padding: 10px;
  border: 1px solid rgba(203, 213, 225, 0.3);
  border-radius: 8px;
  color: #FFFFFF;
  transition: color 0.2s;
}

.email-toggle.active {
  color: #2549EB;
}

.email-toggle .material-icons-outlined {
  font-size: 20px;
}

.email-address {
  font-size: 14px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-copy {
  color: #CBD5E1;
  transition: color 0.2s;
}

.email-copy.copied .material-icons-outlined::before {
  content: 'check';
}

.email-copy .material-icons-outlined {
  font-size: 18px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #94A3B8;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F1117;
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-default,
.cookie-settings {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-default p {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-settings-link {
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings h4 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-option-title {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

.cookie-option-desc {
  font-size: 12px;
  color: #94A3B8;
}

.cookie-settings-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #475569;
  border-radius: 24px;
  transition: 0.2s;
}

.slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: #2549EB;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: -60px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #2549EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 73, 235, 0.3);
  transition: bottom 0.3s ease;
  z-index: 900;
}

.scroll-top.visible {
  bottom: 24px;
}

.scroll-top .material-icons-outlined {
  font-size: 28px;
}

/* === LEGAL MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 24px;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 28px;
}

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

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
}

.modal-close {
  color: #94A3B8;
}

.modal-body {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.modal-footer {
  text-align: right;
  margin-top: 24px;
}

/* === SCROLL REVEAL ANIMATION === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === LOADING SPINNER (for contact form) === */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 360px;
    width: 100%;
  }

  .hero-web-back {
    width: 240px;
    height: 180px;
    right: 10px;
    top: 30px;
  }

  .hero-web-front {
    display: none;
  }

  .hero-phone {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .plan-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-subtitle br {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .plan-card:last-child {
    max-width: none;
  }

  .qr-grid {
    flex-direction: column;
    align-items: center;
  }

  .qr-card {
    width: 100%;
    max-width: 320px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .testimonial-card {
    min-width: calc(100% - 16px);
  }

  .video-title {
    font-size: 20px;
  }

  .price-amount {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
