/* ==========================================================================
   KunakFood — Podval Digital Premium Light Theme Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Unbounded:wght@500;600;700&display=swap');

:root {
  /* Studio Light Color Palette */
  --bg-dark: #FFFFFF;
  --bg-section: #F8F9FB;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --border-color: #E5E8EF;
  --border-color-hover: rgba(255, 77, 0, 0.4);
  
  --accent-orange: #FF4D00;
  --accent-orange-hover: #FF661A;
  --accent-orange-bg: rgba(255, 77, 0, 0.08);

  --text-main: #0F1117;
  --text-muted: #4B5262;
  --text-dim: #808797;

  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-sm: 12px;

  --shadow-card: 0 6px 24px rgba(15, 17, 23, 0.06);
  --shadow-hover: 0 14px 36px rgba(15, 17, 23, 0.12);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0; /* Prevents flex/grid children from overflowing */
}

img, video, svg {
  max-width: 100%;
  display: block;
}

section, nav, footer, header, main {
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* TYPOGRAPHY - CALM & PROFESSIONAL */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.heading-lg {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.heading-md {
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.text-orange {
  color: var(--accent-orange);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.25);
}

.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 77, 0, 0.35);
}

.btn-outline {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-orange);
  color: #FFFFFF;
  background: var(--accent-orange);
}

.btn-glass {
  background: #F0F2F6;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-glass:hover {
  background: #E4E7EE;
  border-color: #D1D5E0;
}

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

.btn-block {
  width: 100%;
}

/* PILL BADGES */
.badge-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-orange-bg);
  border: 1px solid rgba(255, 77, 0, 0.2);
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-orange);
}

/* TOP NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

.logo-orange {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-orange);
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-orange);
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* PHONE MOCKUP FRAME */
.phone-mockup-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -120px;
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #0F1117;
  border-radius: 40px;
  padding: 8px;
  border: 2px solid #1F2432;
  box-shadow: 0 25px 60px rgba(15, 17, 23, 0.18), 0 0 40px rgba(255, 77, 0, 0.12);
  position: relative;
  transition: var(--transition);
}

.phone-frame:hover {
  border-color: var(--accent-orange);
}

.phone-notch {
  width: 120px;
  height: 22px;
  background: #0F1117;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F4F6F9;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.screenshot-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  color: var(--text-main);
}

.screenshot-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.screenshot-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.screenshot-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.upload-hint-tag {
  font-size: 11px;
  padding: 6px 14px;
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* CARDS GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-orange-bg);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

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

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

/* CALCULATOR CARD */
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.calc-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-orange);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E5E8EF;
  outline: none;
  accent-color: var(--accent-orange);
  cursor: pointer;
  margin-bottom: 12px;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.calc-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-box {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-section);
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.metric-box.good .metric-num {
  color: var(--accent-orange);
}

.calc-results {
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: center;
}

.result-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.result-total {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.result-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.year-savings-box {
  padding: 16px;
  background: var(--accent-orange-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 77, 0, 0.2);
  margin-bottom: 24px;
  font-size: 14px;
}

/* PRICING */
.pricing-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card-featured {
  background: var(--bg-card);
  border: 2px solid var(--accent-orange);
  border-radius: var(--radius-card);
  padding: 44px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.1);
}

.pricing-badge-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
}

.pricing-price-box {
  display: flex;
  justify-content: space-around;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.price-item-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.price-item-val {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
}

.price-item-val small {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features-list li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--accent-orange);
  font-weight: 700;
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 17, 23, 0.04);
  transition: var(--transition);
}

.faq-question {
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle-icon {
  font-size: 20px;
  color: var(--accent-orange);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* FOOTER (EXACT PODVAL DIGITAL STYLE & CREDIT) */
.footer {
  background: #F4F6F9;
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal-tag {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

.footer-credit {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: var(--transition);
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 17, 23, 0.6);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 17, 23, 0.15);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #F8F9FB;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-orange);
  background: #FFFFFF;
}

/* =============================================
   MOBILE HAMBURGER MENU
   ============================================= */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: var(--transition);
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer menu */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-drawer a:hover {
  color: var(--accent-orange);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-muted);
}

/* =============================================
   TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .calc-card {
    padding: 32px;
  }

  .pricing-card-featured {
    padding: 36px;
  }
}

/* =============================================
   TABLET PORTRAIT (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .phone-mockup-container {
    order: 2;
    margin-top: 0;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .calc-metrics-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .btn-outline {
    display: none;
  }

  /* Hero */
  .hero-section {
    padding: 48px 0 60px;
  }

  .hero-grid {
    gap: 40px;
  }

  .heading-lg {
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: -0.01em;
  }

  .heading-md {
    font-size: clamp(18px, 4.5vw, 26px);
  }

  .hero-subtitle {
    font-size: 15px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-group .btn {
    text-align: center;
    width: 100%;
    justify-content: center;
    white-space: normal;
    word-break: break-word;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    min-width: 0;
    width: 100%;
    padding: 12px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
  }

  .stat-num {
    font-size: 18px;
  }

  /* Phone mockup — уменьшаем */
  .phone-mockup-container {
    margin-top: 0;
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

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

  /* Feature cards — 1 колонка на мобиле */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  /* Calculator */
  .calc-card {
    padding: 24px;
  }

  .calc-metrics-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc-results {
    padding: 24px;
  }

  .result-total {
    font-size: 30px;
  }

  /* Pricing */
  .pricing-card-featured {
    padding: 28px 20px 32px;
  }

  .pricing-price-box {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .price-item-val {
    font-size: 22px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 18px 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 16px 18px;
  }

  /* Contact form */
  .modal-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* =============================================
   SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .badge-pill {
    font-size: 12px;
    padding: 6px 14px;
  }

  .heading-lg {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .heading-md {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .hero-section {
    padding: 36px 0 48px;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .btn-lg {
    padding: 16px 24px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 12px 16px;
  }

  .stat-num {
    font-size: 18px;
  }

  .stat-desc {
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .calc-card {
    padding: 20px;
  }

  .calc-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .result-total {
    font-size: 26px;
  }

  .pricing-card-featured {
    padding: 24px 16px 28px;
  }

  .pricing-features-list li {
    font-size: 14px;
  }

  .faq-question {
    font-size: 13px;
    line-height: 1.4;
  }

  .mobile-nav-drawer a {
    font-size: 18px;
  }
}
