/* ===== Variables ===== */
:root {
  --navy: #0a1628;
  --navy-dark: #060e1a;
  --navy-light: #111f35;
  --teal: #00c9a7;
  --teal-dark: #00a88a;
  --teal-light: #33d4b8;
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f7;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Poppins", sans-serif;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal {
  color: var(--teal);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #01254d;
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1rem;
}

.center {
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.35);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-text small {
  color: var(--teal);
  font-size: 0.6rem;
  letter-spacing: 3px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  color: #01254d;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #01254d;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== Hero ===== */

.hero {
  position: relative;
  background: var(--navy);
  background-image: url(../../public/assets/images/hero-background.png);
  padding: 140px 0 100px;
  background-size: cover;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: bottom;
}

.hero-waves {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 80% 30%,
      rgba(0, 201, 167, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 70%,
      rgba(0, 201, 167, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-waves::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(0, 201, 167, 0.12);
  border-radius: 50%;
}

.hero-waves::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(0, 201, 167, 0.08);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero-content {
  max-width: 550px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat i {
  color: var(--teal);
  font-size: 28px;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.stat span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-wrap: nowrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-wrap {
  position: relative;
  width: 100%;
  height: 458px;
}

.phone-mockup {
  position: absolute;
  /* top: 20px; */
  left: 50%;
  transform: translateX(-50%);

  /* background: linear-gradient(145deg, #e8ecf0, #ffffff); */
  border-radius: 32px;
  padding: 12px;
  /* box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.5); */
  z-index: 2;
  width: 100%;
}
.phone-mockup img {
  width: auto;
  height: 545px;
  margin-left: auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  padding: 16px 12px;
}

.app-header {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.app-search {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-item {
  height: 70px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: 8px;
}

.floating-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.icon-1 {
  top: 0;
  left: 20px;
  animation-delay: 0s;
}
.icon-2 {
  top: 60px;
  right: 10px;
  animation-delay: 0.5s;
}
.icon-3 {
  bottom: 120px;
  left: 0;
  animation-delay: 1s;
}
.icon-4 {
  bottom: 80px;
  right: 0;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-cart {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: var(--teal);
  font-size: 2.5rem;
  z-index: 1;
}

.cart-boxes {
  display: flex;
  gap: 4px;
  margin-top: -8px;
  margin-left: 8px;
}

.cart-boxes span {
  width: 20px;
  height: 20px;
  background: #c4a35a;
  border-radius: 3px;
  display: block;
}

.hero-bag {
  position: absolute;
  bottom: 10px;
  right: 40px;
  width: 70px;
  height: 80px;
  background: var(--teal);
  border-radius: 12px 12px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.hero-bag span {
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== About ===== */
.about {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.about-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(0, 201, 167, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(0, 201, 167, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.about-img-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.badge-circle {
  position: absolute;
  right: 35%;
  bottom: 7%;
  width: 125px;
  height: 125px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #222;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.4);
  z-index: 2;
}

.badge-circle strong {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-circle span {
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px;
  padding: 0 8px;
}

.about-img-small {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.3rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ===== Why Choose ===== */
.why {
  background: var(--gray-50);
  background-image: url(../../public/assets/images/why-bg.png);
  background-size: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq {
  background-image: url(../../public/assets/images/faq-bg.png);
  background-size: cover;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  background: #ffffffc4;
  padding-top: 15px;
}

/* FAQ Visual */
.faq-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.storefront-phone {
  position: relative;
  width: 100%;
  height: auto;
}
.weblogo {
  height: 70%;
  max-height: 70%;
}
.weblogo img {
  height: 100%;
  max-height: 100%;
}
.foot-logo img {
  height: 100%;
  max-height: 75px;
}

.awning {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0px,
    var(--teal) 20px,
    var(--white) 20px,
    var(--white) 40px
  );
  border-radius: 8px 8px 0 0;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-screen {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 280px;
  background: linear-gradient(145deg, #e8ecf0, #fff);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.store-header {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.store-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-items span {
  height: 50px;
  background: var(--gray-100);
  border-radius: 8px;
}

.store-cart {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 2rem;
  color: var(--teal);
}

.store-plant {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 1.5rem;
  color: #22c55e;
}

/* ===== Contact ===== */
.contact {
  background-image: url(../../public/assets/images/contact-bg.png);
  background-size: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-intro {
  color: black;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgb(255 255 255 / 28%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.contact-list span {
  color: #fff;
  font-size: 0.85rem;
}

.contact-icon i {
  font-size: 22px;
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact-field-error {
  display: block;
  min-height: 18px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #dc2626;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-form-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-alert.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.contact-form-alert.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.contact-form.is-submitting {
  opacity: 0.75;
  pointer-events: none;
}

/* Contact Visual */
.contact-visual {
  height: 100%;
  position: relative;
  display: flex;
}

.contact-graphic {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.graphic-headset {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.9;
}

.graphic-bubble {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.graphic-bubble.b1 {
  top: 60px;
  left: 18%;
}
.graphic-bubble.b2 {
  top: 40px;
  right: 10px;
}

.graphic-envelope {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  color: var(--gray-200);
}

/* ===== Download ===== */
.download {
  position: relative;
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
  background-image: url(../../public/assets/images/app-bg.png);
  background-size: cover;
}

.download-bg-bag {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 450px;
  border: 3px solid rgba(0, 201, 167, 0.08);
  border-radius: 30% 30% 50% 50%;
  pointer-events: none;
}

.download-bg-bag::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  border: 3px solid rgba(0, 201, 167, 0.08);
  border-radius: 60px 60px 0 0;
  border-bottom: none;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-phones {
  position: relative;
  height: 380px;
}

.dl-phone {
  position: absolute;
  width: 175px;
  height: auto;
  background: linear-gradient(145deg, #e8ecf0, #fff);
  border-radius: 28px;
  /* padding: 10px; */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dl-phone-1 {
  left: 12%;
  top: 40px;
  transform: rotate(-8deg);
  z-index: 1;
}

.dl-phone-2 {
  right: 5%;
  top: 0;
  transform: rotate(8deg);
  z-index: 2;
}

.dl-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 14px 10px;
}

.dl-app-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.dl-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dl-cards span,
.dl-list span {
  height: 50px;
  background: var(--gray-100);
  border-radius: 8px;
  display: block;
}

.dl-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.download-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.dl-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.dl-feature i {
  color: var(--teal);
  font-size: 1rem;
}

.google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--gray-800);
  padding: 10px 24px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.google-play-btn:hover {
  transform: translateY(-2px);
}

.google-play-btn i {
  font-size: 2rem;
  color: var(--teal);
}

.google-play-btn small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.google-play-btn strong {
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.logo-footer .logo-text strong {
  color: var(--white);
}

.footer-brand p {
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact i {
  color: var(--teal);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}

.back-to-top:hover {
  background: var(--teal-dark);
}

.how-it-works {
  width: 100%;
  padding: 80px 0;
  background: #f7fbff;
  background-image: url(../../public/assets/images/how-bg.png);
  background-size: cover;
  background-position: bottom;
}

.how-it-works .how-container {
  width: 90%;
  /* max-width: 1320px; */
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.left-content {
  width: 60%;
}

.right-content {
  width: 40%;
  display: flex;
  justify-content: center;
}

.right-content img {
  width: 100%;
  max-width: 520px;
}

.sub-title {
  font-size: 13px;
  color: #10c7b5;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.left-content h2 {
  font-size: 42px;
  color: #0a2745;
  margin-bottom: 50px;
  font-weight: 700;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step {
  /* width: 180px; */
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.step-count {
  display: flex;
}

.number {
  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #10c7b5;
  color: #fff;

  font-size: 13px;
  font-weight: bold;

  display: flex;
  justify-content: center;
  align-items: center;

  /* margin: auto; */
  margin-bottom: 20px;
}

.icon {
  width: 72px;
  height: 72px;

  background: #fff;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: auto;
  margin-bottom: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon i {
  font-size: 30px;
  color: #5877ff;
}

.step h4 {
  font-size: 18px;
  color: #0d2440;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #7c8796;
  line-height: 24px;
}

.line {
  width: 40px;
  height: 2px;

  background: #12c9b5;

  margin-top: 12px;

  position: relative;
}

/* .line::after {
  content: "";

  position: absolute;

  top: -3px;
  right: -2px;

  width: 8px;
  height: 8px;

  background: #12c9b5;
  border-radius: 50%;
} */

/* ===== Responsive ===== */

@media (max-width: 1356px) {
  .hero-grid {
    margin: 0 60px;
  }

  .phone-mockup img {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-content {
    max-width: 480px;
  }
  .right-content {
    width: unset;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    z-index: 1;
  }
  .left-content {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .how-it-works {
    position: relative;
  }
  .step p {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 24px;
    font-weight: 500;
  }
}
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .download-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form {
    order: 2;
  }

  .contact-info {
    order: 1;
  }

  .hero-visual,
  .faq-visual,
  .contact-visual {
    order: -1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .download-phones {
    height: 300px;
    margin: 0 auto;
    max-width: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }
  .number {
    display: none;
  }

  .left-content,
  .right-content {
    width: 100%;
  }

  .left-content h2 {
    font-size: 34px;
  }

  .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .line {
    display: none;
  }

  .step {
    width: 220px;
  }
  .dl-phone {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .nav,
  .header .btn-primary {
    display: none;
  }
  .phone-mockup img {
    height: 100%;
  }
  .hero-grid {
    margin: 0 25px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-phone-wrap {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .phone-mockup {
    width: 100%;
    height: 320px;
  }
}

/* Static pages (Privacy Policy, Terms, etc.) */

.static-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #f8fafb;
  min-height: 60vh;
}

.static-page-header {
  margin-bottom: 32px;
  max-width: 800px;
}

.static-page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d9488;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.static-page-back:hover {
  color: #0f766e;
}

.static-page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 8px;
}

.static-page-meta {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.static-page-content {
  max-width: 800px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}

.static-page-content > *:first-child {
  margin-top: 0;
}

.static-page-content > *:last-child {
  margin-bottom: 0;
}

.static-page-content h2,
.static-page-content h3,
.static-page-content h4 {
  color: #0f172a;
  font-weight: 600;
  margin: 1.6em 0 0.6em;
  line-height: 1.35;
}

.static-page-content h2 {
  font-size: 1.35rem;
}

.static-page-content h3 {
  font-size: 1.15rem;
}

.static-page-content p {
  margin: 0 0 1em;
}

.static-page-content ul,
.static-page-content ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.static-page-content li {
  margin-bottom: 0.4em;
}

.static-page-content a {
  color: #0d9488;
  text-decoration: underline;
}

.static-page-content a:hover {
  color: #0f766e;
}

.static-page-content strong {
  color: #0f172a;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* Mobile */

@media (max-width: 576px) {
  .how-it-works {
    padding: 60px 0;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 280px;

    margin-bottom: 35px;
  }

  .right-content img {
    max-width: 320px;
  }
  .dl-phone {
    width: 122px;
  }
  .download-content h2 {
    font-size: 30px;
  }
  .download-content > p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .static-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .static-page-header h1 {
    font-size: 1.75rem;
  }

  .static-page-content {
    padding: 24px 20px;
  }
}
