/* ============================================================
   DHODIA JEEVAN SAATHI — Pixel-Perfect Clone Stylesheet
   Font: Inter | Layout: Flexbox + Grid | No frameworks
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand colors */
  --brown-dark: #372315;
  --brown-mid: #5c2323;
  --coral-600: #e94a49;
  --coral-500: #e63f33;
  --coral-400: #f47862;
  --coral-300: #f995a6;
  --amber-400: #fccd40;
  --amber-500: #f59f0a;
  --orange-400: #fa8938;
  --red-600: #cc2519;
  --red-500: #dc2626;

  /* Neutrals */
  --text-primary: #372315;
  --text-body: #374151;
  --text-muted: #4b5563;
  --text-light: #737373;
  --white: #ffffff;
  --bg-warm: #faf8f4;
  --bg-pink-warm: linear-gradient(to right bottom, #faf8f4, #fce8ed, #fff7ed);

  /* Typography */
  --font-family: 'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 80px 32px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.1;
}

/* ---------- App Shell ---------- */
.app {
  min-height: 100vh;
  overflow-x: hidden;
}

.app-inner {
  width: 100%;
}

/* ---------- Utility Classes ---------- */
.text-gradient {
  background: linear-gradient(to right bottom, #e94a49, #f59f0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

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

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

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Icon Gradient Backgrounds ---------- */
.icon-gradient-1 {
  background: linear-gradient(to right bottom, #e94a49, #ef4444);
  color: white;
}
.icon-gradient-2 {
  background: linear-gradient(to right bottom, #fccd40, #fa8938);
  color: white;
}
.icon-gradient-3 {
  background: linear-gradient(to right bottom, #f47862, #f995a6);
  color: white;
}
.icon-gradient-4 {
  background: linear-gradient(to right bottom, #fa8938, #dc2626);
  color: white;
}
.icon-gradient-5 {
  background: linear-gradient(to right bottom, #f472b6, #f43f5e);
  color: white;
}
.icon-gradient-6 {
  background: linear-gradient(to right bottom, #e94a49, #f59f0a);
  color: white;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  height: 56px;
}

.header-logo {
  width: 56px;
  height: 56px;
  cursor: pointer;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--brown-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(233, 74, 73, 0.08);
  color: var(--coral-600);
}

.mobile-menu-btn {
  display: none;
  color: var(--brown-mid);
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(to right bottom, #faf8f4, #fce8ed, #fff7ed);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right bottom, rgba(237, 228, 212, 0.5), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 96px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-600);
  background: rgba(233, 84, 73, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--coral-600);
}

.hero-badge-item svg {
  color: var(--coral-600);
}

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

.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-appstore {
  background: var(--brown-dark);
  color: white;
}

.btn-playstore {
  background: white;
  color: var(--brown-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.store-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 11px;
  opacity: 0.8;
  line-height: 1.2;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* Hero Card (right side) */
.hero-card {
  background: linear-gradient(to right bottom, #ac3939, #5c2323);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 60px rgba(92, 35, 35, 0.3);
}

.hero-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hero-card-text h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 32px;
}

.hero-card-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  min-width: 90px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: linear-gradient(#faf8f4, #fff);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: rgba(233, 84, 73, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.about-stat-card:nth-child(2) {
  background: rgba(252, 205, 64, 0.15);
}

.about-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--coral-600);
  margin-bottom: 4px;
}

.about-stat-card:nth-child(2) .about-stat-value {
  color: var(--amber-500);
}

.about-stat-card:nth-child(3) .about-stat-value {
  color: var(--coral-600);
}

.about-stat-card:nth-child(4) .about-stat-value {
  color: var(--orange-400);
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.about-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  background: linear-gradient(#fff, #faf8f4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features CTA Banner */
.features-cta {
  background: linear-gradient(to right bottom, #faf8f4, #fce8ed);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.features-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features-cta p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-dark);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(55, 35, 21, 0.3);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: linear-gradient(to right bottom, #faf8f4, #fff);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral-600);
  background: rgba(233, 84, 73, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Steps CTA Banner */
.steps-cta {
  background: linear-gradient(to right bottom, #e94a49, #f59f0a);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: white;
}

.steps-cta h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.steps-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--brown-dark);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SUPPORT / FAQ SECTION
   ============================================================ */
.support {
  background: linear-gradient(#fff, #faf8f4);
}

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

.support-faq,
.support-contact {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.support-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-card-header h3 {
  font-size: 20px;
  font-weight: 700;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
}

.accordion-trigger:hover {
  color: var(--coral-600);
}

.chevron {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Support Contact Cards */
.support-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(246, 242, 234, 0.5);
  border-radius: var(--radius-md);
}

.support-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-contact-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.support-contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.link-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.link-btn:hover {
  gap: 8px;
}

.support-immediate {
  background: rgba(233, 84, 73, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
}

.support-immediate h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-immediate p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.support-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.support-badge svg {
  color: var(--coral-600);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: linear-gradient(#faf8f4, #fff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-link-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-text {
  flex: 1;
}

.contact-link-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-link-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-arrow {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.2s;
}

.contact-link-card:hover .contact-arrow {
  transform: translateX(4px);
}

.contact-community {
  cursor: default;
}

.contact-community:hover {
  transform: none;
}

.contact-community .contact-link-text p {
  font-size: 13px;
  line-height: 1.5;
}

/* Contact CTA Card */
.contact-cta-card {
  background: linear-gradient(to right bottom, #e94a49, #f59f0a);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: white;
}

.contact-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-cta-icon svg {
  color: white;
}

.contact-cta-card h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-cta-card > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-cta-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}

.contact-cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.contact-cta-badge svg {
  flex-shrink: 0;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 2px;
}

.btn-white-outline {
  display: inline-block;
  background: white;
  color: var(--brown-dark);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(to right bottom, #372315, #5c2323);
  color: white;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 32px 32px;
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline svg {
  color: var(--coral-300);
}

.footer-links-group h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group li a,
.footer-links-group li button {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  text-align: left;
}

.footer-links-group li a:hover,
.footer-links-group li button:hover {
  color: white;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom svg {
  color: var(--coral-400);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section-title {
    font-size: 36px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 24px 48px;
  }

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

  .hero-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 48px 16px;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    text-align: left;
    border-radius: var(--radius-sm);
  }

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

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

  .section-desc {
    font-size: 16px;
  }

  .hero-inner {
    padding: 48px 16px 32px;
    gap: 32px;
  }

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

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

  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-store {
    justify-content: center;
  }

  .hero-card-stats {
    flex-direction: column;
    gap: 12px;
  }

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

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

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

  .features-cta,
  .steps-cta {
    padding: 32px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================================
   MOBILE SMALL (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 12px 16px;
  }
}
