/* styles.css */

:root {
  --primary: #4400b5;
  --primary-hover: #4338ca;
  --bg-light: #f9fafb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  user-select: none;
}

body {
  background-color: #ffffff;
  color: #111827;
  line-height: 1.6;
}

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

/* Navbar */
.navbar {
  height: 70px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
    background: url('/LogoSmall.svg') center/cover no-repeat;
    width: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #1e1b4b;
  font-style: italic;
}

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

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
  color: #111827;
  font-weight: 600;
  border-bottom: 2px solid #7c3aed;;
  padding-bottom: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-link {
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  text-decoration: none;
  background: linear-gradient(130deg, #7a28ce 20%, #d02881, #f46725 90%);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    transition: all 0.3s ease-in-out;
    background: linear-gradient(130deg, #7a28cee3 20%, #d02881db, #f46725e3 90%);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background-color: #fcfcfd;
}

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

.badge {
  padding: 2px;
  background: linear-gradient(130deg, #7a28ce 20%, #d02881, #f46725 90%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.badge::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  margin-right: 6px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #111827;
}

.hero-text p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}

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

.btn-purple {
  background-color: #6d28d9;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-features {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.floating-card strong {
  display: block;
  font-size: 14px;
  color: #111827;
}

.floating-card p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Section Headings */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
  margin-bottom: 48px;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: #f3e8ff;
  color: #4400b5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}

.icon-box.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

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

.step-card p {
  font-size: 13px;
  color: #6b7280;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #fdfbfb;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 800;
}

.section-header p {
  font-size: 14px;
  color: #6b7280;
}

.view-all {
  color: #6d28d9;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}

.cat-icon.bg-purple { background: linear-gradient(135deg, #7928ce, #c6278a); }
.cat-icon.bg-rose { background: linear-gradient(135deg, #e03367, #f46627); }
.cat-icon.bg-amber { background: linear-gradient(135deg, #ff7100, #fbb122 90%); }
.cat-icon.bg-violet { background: linear-gradient(135deg, #8028c8, #c5288b); }


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

.service-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.btn-purple-sm {
  display: inline-block;
  background-color: #6d28d9;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6b34bc 20%, #cd2783 50%, #f56921 100%);
  color: white;
}

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

.badge-light {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.trust-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0;
  line-height: 1.2;
}

.trust-text p {
  color: #f3e8ff;
  margin-bottom: 24px;
}

.trust-list {
  list-style: none;
}

.trust-list li {
  margin-bottom: 12px;
  font-size: 14px;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  padding: 24px;
  border-radius: 12px;
}

.stat-wide {
  grid-column: span 2;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #6d28d9;
}

.stat-card p {
  font-size: 13px;
  color: #4b5563;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.testimonial-card {
  background: #f9fafb;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.stars {
  color: #f59e0b;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 13px;
  color: #374151;
  margin-bottom: 20px;
  font-style: italic;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #374151;
  overflow: hidden;
}

.user-info strong {
  display: block;
  font-size: 13px;
}

.user-info p {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
  font-style: normal;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  height: 280px;
  background: url('/img/CTA-Banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 24px;
}

.btn-cta {
    display: grid;
    background: linear-gradient(#0009, #0009);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    grid-auto-flow: column;
    justify-content: center;
    border: 1px solid #fffc;
    transition: 0.25s ease-in-out;
}

.btn-cta:hover {
    transform: scale(1.04);
    transition: 0.25s ease-in-out;
    text-shadow: 0 0 8px #fffa;
}

.btn-cta .arrow-right { margin: 3px 10px; }

.arrow-right {
    display: block;
    width: 18px;
    height: 18px;
    background: url(/IconsSVG/arrow-right.svg) center/contain no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Footer */
.footer {
  background-color: #ff6b00;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand p {
  font-size: 13px;
  color: #fff0e6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-column h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff0e6;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 11px;
  color: #fff0e6;
}

/* =========================================================
   RESPONSIVE DESIGN
   Phones • Tablets • Laptops • Large Screens
   ========================================================= */


/* ---------------------------------------------------------
   LARGE SCREENS
   1440px and above
   --------------------------------------------------------- */

@media (min-width: 1440px) {
  .container,
  .nav-container {
    max-width: 1320px;
  }

  .hero-section {
    padding: 100px 0;
  }

  .hero-text h1 {
    font-size: 56px;
  }

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

  .hero-grid,
  .trust-grid {
    gap: 72px;
  }

  .services-grid {
    gap: 28px;
  }
}


/* ---------------------------------------------------------
   LAPTOP / DESKTOP
   1025px - 1439px
   --------------------------------------------------------- */

@media (min-width: 1025px) and (max-width: 1439px) {
  .container,
  .nav-container {
    max-width: 1200px;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .hero-grid,
  .trust-grid {
    gap: 40px;
  }
}


/* ---------------------------------------------------------
   TABLETS / SMALL LAPTOPS
   769px - 1024px
   --------------------------------------------------------- */

@media (min-width: 769px) and (max-width: 1024px) {

  .container,
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Navbar */
  .navbar {
    height: 68px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-actions {
    gap: 12px;
  }

  .btn-primary {
    padding: 9px 14px;
  }

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

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

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-purple,
  .btn-outline {
    padding: 11px 18px;
  }

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

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }

  /* General sections */
  .how-it-works,
  .services-section,
  .trust-section,
  .testimonials-section {
    padding: 64px 0;
  }

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

  /* Steps */
  .steps-grid {
    gap: 20px;
  }

  .step-card {
    padding: 26px 16px;
  }

  /* Services */
  .services-grid {
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  /* Trust */
  .trust-grid {
    gap: 32px;
  }

  .trust-text h2 {
    font-size: 32px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card h3 {
    font-size: 28px;
  }

  /* Testimonials */
  .testimonials-grid {
    gap: 18px;
  }

  .testimonial-card {
    padding: 22px;
  }

  /* CTA */
  .cta-banner {
    height: 260px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  /* Footer */
  .footer {
    padding-top: 50px;
  }

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

  .footer-brand {
    grid-column: span 3;
  }
}


/* ---------------------------------------------------------
   MOBILE LANDSCAPE / LARGE PHONES
   481px - 768px
   --------------------------------------------------------- */

@media (min-width: 481px) and (max-width: 768px) {

  .container,
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Navbar */
  .navbar {
    height: auto;
    min-height: 64px;
    padding: 10px 0;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0;
  }

  .nav-links a {
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-link {
    font-size: 13px;
  }

  .btn-primary {
    padding: 8px 13px;
    font-size: 13px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-wrapper {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  /* Sections */
  .how-it-works,
  .services-section,
  .trust-section,
  .testimonials-section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    margin-bottom: 36px;
    padding: 0 10px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card {
    padding: 28px 24px;
  }

  /* Services */
  .section-header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-text {
    text-align: center;
  }

  .trust-text h2 {
    font-size: 32px;
  }

  .trust-list {
    text-align: left;
    display: inline-block;
  }

  .trust-stats {
    width: 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* CTA */
  .cta-banner {
    min-height: 260px;
    height: auto;
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

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


/* ---------------------------------------------------------
   SMALL PHONES
   320px - 480px
   --------------------------------------------------------- */

@media (max-width: 480px) {

  /* Global */
  .container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Navbar */
  .navbar {
    height: auto;
    min-height: 60px;
    padding: 10px 0;
  }

  .nav-container {
    gap: 10px;
  }

  .logo-icon {
    width: 82px;
    height: 34px;
  }

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

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-link {
    font-size: 12px;
  }

  .btn-primary {
    padding: 8px 11px;
    font-size: 12px;
    border-radius: 7px;
  }

  /* Hero */
  .hero-section {
    padding: 45px 0 50px;
  }

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

  .hero-text {
    text-align: center;
  }

  .badge {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .badge::before {
    width: 7px;
    height: 7px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .btn-purple,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 11px 18px;
    font-size: 14px;
  }

  .hero-features {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .hero-image-wrapper img {
    border-radius: 12px;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -45px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 12px;
    z-index: 2;
  }

  .floating-card strong {
    font-size: 13px;
  }

  .floating-card p {
    font-size: 11px;
  }

  /* Section headings */
  .section-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 30px;
    padding: 0 8px;
  }

  /* General sections */
  .how-it-works,
  .services-section,
  .trust-section,
  .testimonials-section {
    padding: 50px 0;
  }

  /* How it works */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    padding: 24px 18px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 12px;
  }

  /* Services */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .section-header p {
    font-size: 13px;
  }

  .view-all {
    font-size: 13px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 18px;
    border-radius: 12px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .btn-purple-sm {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Trust section */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-text {
    text-align: center;
  }

  .badge-light {
    font-size: 10px;
    padding: 4px 10px;
  }

  .trust-text h2 {
    font-size: 28px;
    margin: 14px 0;
  }

  .trust-text p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .trust-list {
    text-align: left;
    display: inline-block;
  }

  .trust-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 16px;
    border-radius: 10px;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .stat-card p {
    font-size: 11px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 12px;
  }

  /* CTA */
  .cta-banner {
    min-height: 280px;
    height: auto;
    padding: 55px 16px;
  }

  .cta-content h2 {
    font-size: 27px;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .btn-cta {
    padding: 11px 24px;
    font-size: 13px;
  }

  /* Footer */
  .footer {
    padding: 45px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    margin-bottom: 35px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand p {
    font-size: 12px;
    max-width: 100%;
  }

  .footer-column h5 {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-column a {
    font-size: 12px;
  }

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


/* ---------------------------------------------------------
   VERY SMALL PHONES
   Below 360px
   --------------------------------------------------------- */

@media (max-width: 359px) {

  .container,
  .nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo-icon {
    width: 72px;
    height: 30px;
  }

  .btn-link {
    display: none;
  }

  .btn-primary {
    padding: 7px 10px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 13px;
  }

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

  .trust-text h2 {
    font-size: 25px;
  }

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

  .stat-wide {
    grid-column: span 1;
  }

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

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


/* ---------------------------------------------------------
   ACCESSIBILITY / TOUCH IMPROVEMENTS
   --------------------------------------------------------- */

@media (hover: none) and (pointer: coarse) {

  .nav-links a,
  .btn-link,
  .btn-primary,
  .btn-purple,
  .btn-outline,
  .btn-purple-sm,
  .btn-cta,
  .view-all {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    min-height: 40px;
  }
}


/* ---------------------------------------------------------
   PREVENT HORIZONTAL OVERFLOW
   --------------------------------------------------------- */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


/* ---------------------------------------------------------
   RESPONSIVE IMAGE SAFETY
   --------------------------------------------------------- */

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


/* ---------------------------------------------------------
   REDUCE MOTION FOR USERS WHO PREFER IT
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
