/* ==========================================================================
   Fluffyn — Production CSS
   Brand: #2196F3 (primary blue), #1565C0 (dark blue), #4CAF50 (green),
          #FF9800 (orange), #FAFAFA (bg), #212121 (text)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Box-Sizing
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #FAFAFA;
  color: #212121;
  line-height: 1.6;
  min-height: 100vh;
}

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

ul, ol {
  list-style: none;
}

a {
  color: #2196F3;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #1565C0;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   2. Typography Scale
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #212121;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p {
  margin-bottom: 1rem;
  color: #424242;
  line-height: 1.7;
}

li {
  line-height: 1.6;
  color: #424242;
}

strong { font-weight: 600; color: #212121; }

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #E3F2FD;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #2196F3;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #2196F3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links li a {
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #424242;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links li a:hover {
  background: #E3F2FD;
  color: #2196F3;
  text-decoration: none;
}

.nav-cta {
  background: #2196F3;
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: #1565C0 !important;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding: 0.75rem 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: #757575;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #757575;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: #BDBDBD;
  margin-left: 0.25rem;
}

.breadcrumb a {
  color: #2196F3;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   5. Section Containers
   -------------------------------------------------------------------------- */
.section {
  padding: 4rem 1.25rem;
}

.section-sm {
  padding: 2.5rem 1.25rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header p {
  font-size: 1.05rem;
  color: #616161;
  max-width: 640px;
  margin: 0.5rem auto 0;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  color: #fff;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #1565C0;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: #1565C0;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   7. Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #E3F2FD;
  padding: 1.5rem 1.25rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 0.75rem;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #2196F3;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.82rem;
  color: #757575;
  margin-top: 0.25rem;
  display: block;
}

/* --------------------------------------------------------------------------
   8. Card Grid
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #F0F0F0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(33,150,243,0.12);
}

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #212121;
}

.card p {
  font-size: 0.9rem;
  color: #616161;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Trust Stats / Counters
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1.5rem 1rem;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2196F3;
  display: block;
  line-height: 1;
}

.trust-label {
  font-size: 0.875rem;
  color: #757575;
  margin-top: 0.35rem;
  display: block;
}

/* --------------------------------------------------------------------------
   10. Price Table
   -------------------------------------------------------------------------- */
.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}

thead {
  background: #2196F3;
  color: #fff;
}

thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background: #F3F8FF;
}

tbody tr:hover {
  background: #E3F2FD;
}

tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F0F0F0;
  color: #424242;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   11. FAQ Accordion (details/summary)
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #E3F2FD;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(33,150,243,0.1);
  border-color: #90CAF9;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #2196F3;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: #F3F8FF;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #424242;
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid #E3F2FD;
}

.faq-answer p { margin: 0.75rem 0 0; }

.faq-answer ul, .faq-answer ol {
  margin: 0.5rem 0 0 1.25rem;
}

.faq-answer li {
  list-style: disc;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   12. CTA Block
   -------------------------------------------------------------------------- */
.cta-block {
  background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
  padding: 4rem 1.25rem;
  text-align: center;
}

.cta-container {
  max-width: 680px;
  margin: 0 auto;
}

.cta-block h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-block p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-store {
  background: #fff;
  color: #1565C0;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: #1565C0;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   13. Store Badge Buttons
   -------------------------------------------------------------------------- */
.store-badge {
  display: inline-block;
  border: 2px solid #2196F3;
  color: #2196F3;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.35rem 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.store-badge:hover {
  background: #2196F3;
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   14. Summary Box
   -------------------------------------------------------------------------- */
.summary-box {
  background: #E3F2FD;
  border-left: 4px solid #2196F3;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.summary-box h3 {
  color: #1565C0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.summary-box ul {
  margin-left: 1.1rem;
}

.summary-box li {
  list-style: disc;
  font-size: 0.9rem;
  color: #424242;
  margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   15. Last Updated Badge
   -------------------------------------------------------------------------- */
.last-updated {
  display: inline-block;
  font-size: 0.78rem;
  color: #9E9E9E;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   16. Coming Soon
   -------------------------------------------------------------------------- */
.coming-soon {
  color: #9E9E9E;
  font-style: italic;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   17. Star Ratings
   -------------------------------------------------------------------------- */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.rating-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.rating-stars {
  font-size: 1.4rem;
  color: #FF9800;
  display: block;
  margin-bottom: 0.4rem;
}

.rating-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #212121;
  display: block;
}

.rating-desc {
  font-size: 0.8rem;
  color: #757575;
  margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   18. Step / Process Cards
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  width: 52px;
  height: 52px;
  background: #2196F3;
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: #616161;
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. Trust Points / Feature List
   -------------------------------------------------------------------------- */
.trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #F0F0F0;
}

.trust-point-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-point h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.trust-point p {
  font-size: 0.85rem;
  color: #616161;
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. Content Area Helpers
   -------------------------------------------------------------------------- */
.content-article {
  max-width: 860px;
  margin: 0 auto;
}

.content-article h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid #E3F2FD;
}

.content-article h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.content-article h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #1565C0;
}

.content-article ul, .content-article ol {
  margin: 0.75rem 0 1rem 1.5rem;
}

.content-article li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #424242;
}

.content-article ol li {
  list-style: decimal;
}

.content-article p { font-size: 0.95rem; }

.highlight-box {
  background: #FFF9C4;
  border-left: 4px solid #FF9800;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; font-size: 0.9rem; color: #5D4037; }

/* --------------------------------------------------------------------------
   21. Page Header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  padding: 3rem 1.25rem 2.5rem;
  color: #fff;
}

.page-header-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #1A237E;
  color: #E8EAF6;
  padding: 4rem 1.25rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #9FA8DA;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: #9FA8DA;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  padding: 0.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #9FA8DA;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-col .coming-soon {
  color: #7986CB;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #7986CB;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: #7986CB;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   23. App Rating Badge
   -------------------------------------------------------------------------- */
.app-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #fff;
}

.app-rating-stars { color: #FFD54F; }

/* --------------------------------------------------------------------------
   23b. Feature List (download page)
   -------------------------------------------------------------------------- */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #424242;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #E3F2FD;
}

.feature-list li::before {
  content: '✓';
  color: #4CAF50;
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   24. Misc Utilities
   -------------------------------------------------------------------------- */
.bg-white { background: #fff; }
.bg-light { background: #F3F8FF; }
.bg-blue-light { background: #E3F2FD; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }

.badge {
  display: inline-block;
  background: #E3F2FD;
  color: #1565C0;
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-orange {
  background: #FFF3E0;
  color: #E65100;
}

.divider {
  border: none;
  border-top: 2px solid #E3F2FD;
  margin: 2.5rem 0;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.city-links a {
  background: #E3F2FD;
  color: #1565C0;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.city-links a:hover {
  background: #2196F3;
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   25. Services Section Styles
   -------------------------------------------------------------------------- */
.service-section {
  padding: 3rem 0;
  border-bottom: 1px solid #F0F0F0;
}

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

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.coming-soon-card {
  background: #F9F9F9;
  border: 1px dashed #BDBDBD;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  opacity: 0.75;
}

.coming-soon-card .card-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.coming-soon-card h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.coming-soon-card p { font-size: 0.8rem; margin: 0; }

/* --------------------------------------------------------------------------
   26. Responsive Breakpoints — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    gap: 0.1rem;
  }

  .nav-links li a {
    padding: 0.35rem 0.5rem;
    font-size: 0.82rem;
  }

  .nav-container {
    justify-content: space-between;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .footer-social {
    justify-content: center;
  }

  .hero { padding: 3.5rem 1.25rem 3rem; }

  .section { padding: 2.5rem 1.25rem; }

  .cta-block { padding: 2.5rem 1.25rem; }

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

/* --------------------------------------------------------------------------
   27. Responsive Breakpoints — 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-store {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

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

  .trust-points {
    grid-template-columns: 1fr;
  }

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

  table { font-size: 0.78rem; }
  thead th, tbody td { padding: 0.55rem 0.65rem; }

  .nav-logo-text { display: none; }
}

/* --------------------------------------------------------------------------
   28. Responsive Breakpoints — 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links li a { padding: 0.4rem 0.55rem; font-size: 0.85rem; }

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

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

  .footer-social {
    justify-content: center;
  }
}
