/* ═══════════════════════════════════════════════════════
   ResQ Home Page — Complete Style Sheet
   Dark Mode Included | Glass Effect | Responsive
════════════════════════════════════════════════════════ */

/* ===== DARK MODE VARIABLES ===== */
:root {
  --bg-body: linear-gradient(180deg, #99CAFF 0%, #FFFFFF 18%);
  --text-main: #1a1a2e;
  --text-light: #3F3C3C;
  --card-bg: #CCD7E2;
  --card-bg-light: #FBE1E1;
  --nav-bg: rgba(96, 162, 234, 0.85);
  --footer-bg: #252525;
  --btn-primary: #1075C7;
  --btn-primary-hover: #05213F;
  --border-light: rgba(0, 0, 0, 0.1);
}

body.dark-mode {
  --bg-body: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 100%);
  --text-main: #ffffff;
  --text-light: #cccccc;
  --card-bg: #1e2a4a;
  --card-bg-light: #2a1a3a;
  --nav-bg: rgba(15, 30, 60, 0.95);
  --footer-bg: #0a0a15;
  --btn-primary: #ff6b6b;
  --btn-primary-hover: #ee5a24;
  --border-light: rgba(255, 255, 255, 0.1);
}

/* Dark mode button style */
.dark-mode-btn {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.dark-mode-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.3);
}

body.dark-mode .dark-mode-btn {
  background: rgba(255, 255, 255, 0.2);
}

/* Smooth transitions */
body,
.feature-card,
.steps-box,
.stat-pill,
.faq-item,
.navbar,
.footer,
.contact-card {
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ───────────────────────────────────────────────────────
   TYPOGRAPHY & SHARED CLASSES
─────────────────────────────────────────────────────── */
.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 1.8vw, 13px);
  font-weight: 600;
  letter-spacing: 3px;
  color: #e03030;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 40px;
}

.highlight-red {
  color: #e03030;
}

/* ───────────────────────────────────────────────────────
   GLASS EFFECT NAVBAR
─────────────────────────────────────────────────────── */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 80px;
  padding: 10px 24px;
  width: 100%;
  max-width: 1200px;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Potta One', cursive;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.logo-res {
  color: #1a56a0;
}

body.dark-mode .logo-res {
  color: #6ab0ff;
}

.logo-q {
  color: #F90404;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: rgba(116, 180, 249, 0.67);
  transform: translateY(-2px);
}

.nav-links li.active a {
  background: rgba(59, 143, 234, 0.67);
  font-weight: 600;
}

.btn-signin {
  background: #000000;
  color: #FFFFFF;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.dark-mode .btn-signin {
  background: #ff6b6b;
  color: #fff;
}

.btn-signin:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 85%;
    max-width: 300px;
    height: auto;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    transition: left 0.3s ease;
    z-index: 999;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.mobile-active {
    left: 20px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
  }
}

/* ───────────────────────────────────────────────────────
   HERO SECTION
─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(119, 157, 193, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  color: #D44633;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: 'Rammetto One', cursive;
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  color: var(--text-light);
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  background: var(--btn-primary);
  color: #FFFFFF;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: rgba(203, 214, 225, 0.9);
  border: 1.5px solid rgba(30, 50, 100, 0.25);
  color: var(--text-main);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.dark-mode .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 54, 112, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 80px;
  padding: 20px 50px;
  gap: 50px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.stat-num {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.stat-label {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--text-light);
  margin-top: 6px;
}

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

/* ───────────────────────────────────────────────────────
   PROBLEM SECTION
─────────────────────────────────────────────────────── */
.problem-section {
  padding: 70px 20px;
  text-align: center;
}

.problem-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem-desc {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto 35px;
}

.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg-light);
  border-radius: 60px;
  padding: 20px 50px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.stat-pill:hover {
  transform: scale(1.02);
}

.pill-num {
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 700;
  color: #e03030;
  line-height: 1;
}

.pill-text {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-main);
  margin-top: 8px;
  max-width: 450px;
}

.steps-box {
  background: var(--card-bg-light);
  border-radius: 30px;
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.steps-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  text-align: center;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D44633 0%, #F28678 100%);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.step-item:hover .step-circle {
  transform: scale(1.05);
}

.step-item h4 {
  font-size: clamp(18px, 2.8vw, 24px);
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item p {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.5;
}

/* ───────────────────────────────────────────────────────
   FEATURES SECTION
─────────────────────────────────────────────────────── */
.features-section {
  background: var(--card-bg-light);
  padding: 70px 20px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto 50px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--text-main);
}

.sos-icon {
  background: #e03030;
  color: #fff !important;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h4 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-card p {
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--text-light);
  line-height: 1.5;
}

.features-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--card-bg);
  border-radius: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 30px;
  flex-wrap: wrap;
  gap: 25px;
}

.f-stat {
  text-align: center;
}

.f-stat-num {
  display: block;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-main);
}

.f-stat-label {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--text-light);
  margin-top: 5px;
}

/* ───────────────────────────────────────────────────────
   TEAM SECTION
─────────────────────────────────────────────────────── */
.team-section {
  padding: 70px 20px;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.team-grid-row2 {
  margin-top: 35px;
}

.team-card {
  text-align: center;
  width: 200px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 3px solid #e03030;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-main);
}

.team-card p {
  font-size: clamp(12px, 1.8vw, 15px);
  color: #D44633;
  font-weight: 500;
}

/* ───────────────────────────────────────────────────────
   FAQ SECTION
─────────────────────────────────────────────────────── */
.faq-section {
  background: var(--card-bg-light);
  padding: 70px 20px;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 500;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.05);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--text-light);
  line-height: 1.6;
}

/* ───────────────────────────────────────────────────────
   CONTACT SECTION
─────────────────────────────────────────────────────── */
.contact-section {
  background: var(--card-bg-light);
  padding: 70px 20px;
  text-align: center;
}

.contact-card {
  background: rgba(117, 174, 247, 0.85);
  border-radius: 30px;
  padding: 45px 35px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(100, 140, 200, 0.2);
  transition: transform 0.3s ease;
}

body.dark-mode .contact-card {
  background: rgba(30, 42, 74, 0.95);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.contact-card>p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.5;
}

.contact-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-primary);
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-partner svg {
  width: 18px;
  height: 18px;
}

.btn-partner:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-newsletter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(203, 214, 225, 0.9);
  color: var(--text-main);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.dark-mode .btn-newsletter {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-newsletter svg {
  width: 18px;
  height: 18px;
}

.btn-newsletter:hover {
  background: #b8c5d4;
  transform: translateY(-3px);
}

body.dark-mode .btn-newsletter:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ───────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 50px 60px 35px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Potta One', cursive;
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.footer-logo .logo-res {
  color: #ffffff;
}

.footer-logo .logo-q {
  color: #F90404;
}

.footer-tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #AAAAAA;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: clamp(13px, 1.8vw, 16px);
  color: #AAAAAA;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
  display: inline-block;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.footer-copy {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #888;
  text-align: center;
}

/* ───────────────────────────────────────────────────────
   ANIMATIONS
─────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────────────────────────────────
   RESPONSIVE DESIGN
─────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .navbar {
    padding: 8px 20px;
  }

  .hero-stats {
    padding: 18px 40px;
    gap: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-wrapper {
    top: 12px;
    padding: 0 12px;
  }

  .navbar {
    padding: 8px 16px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    padding: 80px 16px 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    border-radius: 40px;
    padding: 18px 25px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .steps-box {
    padding: 25px 18px;
  }

  .features-section,
  .problem-section,
  .team-section,
  .faq-section,
  .contact-section {
    padding: 50px 16px;
  }

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

  .features-stats {
    flex-direction: column;
    gap: 18px;
    border-radius: 35px;
    padding: 25px;
  }

  .team-grid {
    gap: 30px;
  }

  .team-card {
    width: 160px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-partner,
  .btn-newsletter {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .footer {
    padding: 35px 20px 25px;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }
}

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

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

  .section-heading {
    font-size: 22px;
  }

  .problem-heading {
    font-size: 22px;
  }

  .step-circle {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }

  .feature-card {
    padding: 20px 18px;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 13px;
  }

  .contact-card {
    padding: 25px 20px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}