/* ============================================
   HelloHer — Premium Design System
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap");

/* ─── Design Tokens ─── */
:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --brand: #2e7dfc;
  --brand-deep: #1855b6;
  --brand-dark: #0f3a8f;

  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-glass: rgba(255, 255, 255, 0.75);

  --text-primary: #0d1b3e;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;

  --shadow-sm: 0 2px 8px rgba(46, 125, 252, 0.08);
  --shadow-md: 0 8px 32px rgba(46, 125, 252, 0.12);
  --shadow-lg: 0 24px 64px rgba(46, 125, 252, 0.18);
  --shadow-glow: 0 0 60px rgba(46, 125, 252, 0.25);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─── Navbar ─── */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.6rem 5%;
  pointer-events: none;
}

.navbar {
  pointer-events: all;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(
    90deg,
    #2e7dfc 5%,
    rgba(155, 193, 254, 0.7) 14%,
    #edf4ff 27%
  );
  border: 0.3px solid #2e7dfc;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(46, 125, 252, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(
    90deg,
    #2e7dfc 5%,
    rgba(155, 193, 254, 0.7) 14%,
    #edf4ff 27%
  );
  box-shadow: 0 6px 30px rgba(46, 125, 252, 0.18);
}

.nav-logo {
  height: 40px;
}
.nav-logo img {
  height: 100%;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a3f6e;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #134ca8;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--brand);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(46, 125, 252, 0.35);
}
.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 125, 252, 0.45);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 1rem;
  right: 1rem;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(46, 125, 252, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-mobile-menu a:hover {
  background: var(--blue-50);
  color: var(--brand);
}
.nav-mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  background: var(--brand);
  color: white !important;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(46, 125, 252, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 10% 80%,
      rgba(147, 197, 253, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 60%);
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(46, 125, 252, 0.12);
  top: -100px;
  right: -100px;
  animation: float-slow 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(96, 165, 250, 0.1);
  bottom: -50px;
  left: -50px;
  animation: float-slow 16s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 125, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 125, 252, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(46, 125, 252, 0.1);
  border: 1px solid rgba(46, 125, 252, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .accent {
  color: var(--brand);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--brand);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(46, 125, 252, 0.35);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 125, 252, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(46, 125, 252, 0.25);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 252, 0.12);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item {
  text-align: left;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-img-wrap {
  position: relative;
  background: transparent;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: none;
  box-shadow: none;
  animation: float 8s ease-in-out infinite;
}
.hero-img-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem; /* smaller padding */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);

  font-size: 0.72rem; /* smaller text */
  max-width: 180px; /* reduce width */
}

.hero-float-card-1 {
  top: 12%; /* move slightly upward */
  left: -2%;
  animation: float 6s ease-in-out infinite;
}

.hero-float-card-2 {
  bottom: 18%;
  right: -2%;
  animation: float 8s ease-in-out infinite 2s;
}

.hero-float-card strong,
.hero-float-card b {
  font-size: 0.95rem;
}

.hero-float-card p,
.hero-float-card span {
  font-size: 0.72rem;
}

/* ─── Section Commons ─── */
.section {
  padding: 6rem 1.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}
.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin: 0 auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Problem ─── */
.problem-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ebf4ff 100%);
  position: relative;
  overflow: hidden;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.problem-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(46, 125, 252, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.problem-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.problem-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.problem-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.problem-glow {
  display: none;
}
.problem-img-wrap img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 480px;
}

/* ─── How It Works ─── */
.how-section {
  background: white;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.how-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0 1.75rem 1.75rem;
  border: 1px solid rgba(46, 125, 252, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.8) 0%, white 60%);
  z-index: 0;
}
.how-card-content {
  position: relative;
  z-index: 1;
}
.how-step {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(46, 125, 252, 0.12);
  margin-bottom: -1rem;
}
.how-img-wrap {
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.how-img-wrap img {
  max-height: 190px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.how-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.how-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(46, 125, 252, 0.15);
}
.how-ring-1 {
  width: 140px;
  height: 140px;
}
.how-ring-2 {
  width: 190px;
  height: 190px;
  border-color: rgba(46, 125, 252, 0.1);
}
.how-ring-3 {
  width: 240px;
  height: 240px;
  border-color: rgba(46, 125, 252, 0.07);
}
.how-ring-4 {
  width: 290px;
  height: 290px;
  border-color: rgba(46, 125, 252, 0.04);
}
.how-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}
.how-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Why Choose ─── */
.why-section {
  background: linear-gradient(180deg, white 0%, #f0f7ff 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 125, 252, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.why-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.why-card:hover .why-card-img img {
  transform: scale(1.05);
}
.why-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.why-card-body {
  padding: 1.5rem;
}
.why-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.why-card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Languages ─── */
.lang-section {
  background: white;
}
.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.lang-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 252, 0.12);
  box-shadow:
    0 4px 20px rgba(46, 125, 252, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.lang-card:hover {
  border-color: rgba(46, 125, 252, 0.35);
  box-shadow:
    0 8px 32px rgba(46, 125, 252, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.lang-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
}
.lang-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.lang-native {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Testimonials ─── */
.test-section {
  background: linear-gradient(180deg, #f0f7ff 0%, white 100%);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.test-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(46, 125, 252, 0.1);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.test-quote-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand), #60a5fa);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.test-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.test-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.test-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
}
.test-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.test-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CTA ─── */
.cta-section {
  padding: 5rem 1.5rem;
  background: white;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1855b6 0%, #2e7dfc 60%, #4a90e2 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-orb-1,
.cta-orb-2,
.cta-grid-lines {
  display: none;
}
.cta-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  height: 160px;
}
.cta-wave-bg svg {
  width: 100%;
  height: 100%;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-inner p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ─── Download Section ─── */
.download-section {
  padding: 6rem 1.5rem;
  background: white;
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.download-text h2 {
  margin-bottom: 1.25rem;
}
.download-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.store-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1.5px solid rgba(46, 125, 252, 0.2);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.store-btn:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.store-btn img {
  width: 32px;
  height: 32px;
}
.store-btn-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.store-btn-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2.5rem 2.5rem 0;
}
.phone-backdrop {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 75%;
  background: linear-gradient(180deg, #0048bb 0%, #1855b6 100%);
  border-radius: 2rem 2rem 0 0;
  z-index: 0;
}
.phone-container img {
  position: relative;
  z-index: 1;
  max-width: 200px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

/* ─── Footer ─── */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 1.25rem 0 1.75rem;
  max-width: 340px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col ul a:hover {
  color: white;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: linear-gradient(
    90deg,
    #1855b6,
    #2e7dfc,
    #60a5fa,
    #2e7dfc,
    #1855b6
  );
  background-size: 200% 100%;
  padding: 1rem 1.5rem;
  animation: shimmer 8s linear infinite;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg {
  opacity: 0.85;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── Keyframes ─── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes float-slow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -20px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2.5rem;
  }
  .how-grid {
    gap: 1.25rem;
  }
  .why-grid {
    gap: 1.25rem;
  }
  .lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .test-grid {
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar-wrap {
    padding: 0.75rem 1rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 7rem 1.25rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img-wrap {
    padding: 1.5rem;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lang-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .store-btns {
    justify-content: center;
  }
  .download-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .lang-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .trust-bar-inner {
    gap: 1.5rem;
  }
}

/* 
   ADDITIONS — All 10 changes extra CSS
    */

/* ── Why Carousel (Change 5) ── */
.why-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 4rem;
  gap: 1rem;
}
.why-carousel-viewport {
  overflow: hidden;
  flex: 1;
}
.why-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-carousel-track .why-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
}
.why-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(46, 125, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.why-carousel-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 4px 20px rgba(46, 125, 252, 0.15);
}
.why-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46, 125, 252, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.why-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--brand);
}

/* ── Testimonial Carousel (Change 7) ── */
.test-carousel-wrap {
  margin-top: 4rem;
  overflow: hidden;
}
.test-carousel-viewport {
  overflow: hidden;
}
.test-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}
.test-carousel-track:active {
  cursor: grabbing;
}
.test-carousel-track .test-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46, 125, 252, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.test-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--brand);
}

/* ── Download V2 — centered (Change 9) ── */
.download-inner-v2 {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.download-visual-top {
  margin-bottom: 2.5rem;
}
.download-text-center h2 {
  margin-bottom: 1rem;
}
.download-text-center .section-label {
  display: block;
  margin-bottom: 0.75rem;
}
.download-divider {
  width: 5rem;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.store-btns-center {
  justify-content: center;
}

/* ── Footer Light (Change 10) ── */
.footer-light {
  background: white !important;
  color: var(--text-primary) !important;
  border-top: 1px solid rgba(46, 125, 252, 0.1);
  padding-top: 3rem;
}
.footer-grid-light {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
}
.footer-logo-light {
  height: 80px;
  width: auto;
}
.footer-brand-desc-light {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 1.25rem 0 1rem;
  max-width: 340px;
  font-weight: 500;
}
.footer-follow-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.footer-social-light {
  display: flex;
  gap: 0.75rem;
}
.footer-social-light a {
  width: 36px;
  height: 36px;
  background: rgba(46, 125, 252, 0.07);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(46, 125, 252, 0.15);
}
.footer-social-light a:hover {
  background: var(--brand);
  color: white;
}
.footer-social-light a:last-child {
  color: #dc2626;
}
.footer-social-light a:last-child:hover {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}
.footer-col-light h5 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.footer-col-light ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-col-light ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-col-light ul a:hover {
  color: var(--brand);
}
.footer-bottom-light {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .why-carousel-track .why-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
  .test-carousel-track .test-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
  .footer-grid-light {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-grid-light > :first-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .why-carousel-track .why-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .test-carousel-track .test-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .why-carousel-btn {
    display: none;
  }
  .footer-grid-light {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid-light > :first-child {
    grid-column: auto;
  }
  .footer-brand-desc-light {
    max-width: 100%;
  }
  .download-inner-v2 {
    padding: 0 1rem;
  }
}

/* 
   CHANGE 1 — HOW IT WORKS: BIGGER + ZIGZAG CARDS
    */
.how-grid-zz {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
  align-items: start;
}

.how-card-zz {
  position: relative;
  background: white;
  border-radius: 2rem;
  padding: 0 1.75rem 2.25rem;
  border: 1px solid rgba(46, 125, 252, 0.12);
  box-shadow: 0 8px 36px rgba(46, 125, 252, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 500px;
}
.how-card-zz::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.85) 0%, white 55%);
  z-index: 0;
}
.how-card-zz:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(46, 125, 252, 0.2);
  border-color: rgba(46, 125, 252, 0.25);
}

/* Middle card drops down — creates the zigzag */
.how-card-zz--down {
  margin-top: 3.5rem;
}

.how-card-content-zz {
  position: relative;
  z-index: 1;
}

.how-img-wrap-zz {
  height: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
}
.how-img-wrap-zz img {
  max-height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease;
  filter: drop-shadow(0 12px 24px rgba(46, 125, 252, 0.18));
}
.how-card-zz:hover .how-img-wrap-zz img {
  transform: translateY(-10px) scale(1.05);
}
.how-img-wrap-zz .how-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.how-card-text-zz h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.how-card-text-zz p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Connector line between cards (decorative) */
.how-grid-zz::before {
  display: none; /* Clean look */
}

@media (max-width: 900px) {
  .how-grid-zz {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .how-card-zz--down {
    margin-top: 0;
  }
  .how-card-zz {
    min-height: auto;
  }
}

/* 
   CHANGE 2 — WHY CAROUSEL: CENTER-FOCUS STYLE (Image 3)
    */

/* Reset the carousel layout to center-focus */
.why-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 0;
  min-height: 540px;
  overflow: hidden;
}

.why-carousel-viewport {
  overflow: visible !important;
  flex: 1;
}

.why-carousel-track {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  transition: none !important;
  transform: none !important;
  cursor: default;
}

/* All cards default state */
.why-carousel-track .why-card {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  cursor: pointer;
  transition: all 0.55s cubic-bezier(0.34, 1.1, 0.64, 1) !important;
}

/* Side cards — smaller, faded, scaled down */
.why-carousel-track .why-card.wc-side {
  width: 240px !important;
  opacity: 0.4 !important;
  transform: scale(0.87) !important;
  box-shadow: none !important;
  pointer-events: auto;
}
.why-carousel-track .why-card.wc-side .why-card-img {
  height: 175px !important;
}
.why-carousel-track .why-card.wc-side .why-card-body h4 {
  font-size: 0.9rem !important;
}
.why-carousel-track .why-card.wc-side .why-card-body p {
  display: none !important;
}

/* Active / center card — full size */
.why-carousel-track .why-card.wc-active {
  width: 420px !important;
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 24px 64px rgba(46, 125, 252, 0.2) !important;
  z-index: 5 !important;
  pointer-events: auto;
}
.why-carousel-track .why-card.wc-active .why-card-img {
  height: 290px !important;
}
.why-carousel-track .why-card.wc-active .why-card-body {
  padding: 1.75rem !important;
}
.why-carousel-track .why-card.wc-active .why-card-body h4 {
  font-size: 1.3rem !important;
  text-align: center;
  font-weight: 800;
}
.why-carousel-track .why-card.wc-active .why-card-body p {
  font-size: 0.95rem !important;
  text-align: center;
  display: block !important;
  line-height: 1.7;
}

/* Arrow buttons — styled like Image 3 (dark triangles) */
.why-carousel-btn {
  position: absolute !important;
  z-index: 20;
  width: 42px !important;
  height: 42px !important;
  background: rgba(180, 180, 180, 0.85) !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
}
.why-carousel-btn:hover {
  background: rgba(100, 100, 100, 0.95) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}
.why-carousel-btn svg {
  stroke: white !important;
}
.why-carousel-prev {
  left: 4px !important;
}
.why-carousel-next {
  right: 4px !important;
}

@media (max-width: 768px) {
  .why-carousel-track .why-card.wc-side {
    display: none !important;
  }
  .why-carousel-track .why-card.wc-active {
    width: min(90vw, 360px) !important;
  }
  .why-carousel-wrap {
    min-height: auto;
  }
}

.cta-inner {
  padding: 4.5rem 3rem !important;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
  letter-spacing: -0.02em;
  line-height: 1.15 !important;
}
.cta-inner p {
  font-size: 1.05rem !important;
  max-width: 580px !important;
}

/* Store buttons row below the main CTAs */
.cta-store-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}

.cta-store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: white;
  border-radius: 0.75rem;
  border: 2px solid rgba(46, 125, 252, 0.2);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  min-width: 155px;
}
.cta-store-btn svg {
  flex-shrink: 0;
  color: var(--text-primary);
}
.cta-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  border-color: rgba(46, 125, 252, 0.45);
}
.cta-store-sub {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.cta-store-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-display);
}

@media (max-width: 640px) {
  .cta-store-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-store-btn {
    justify-content: center;
    min-width: 200px;
  }
  .cta-inner {
    padding: 3rem 1.5rem !important;
  }
}

/* Value cards hover — about page */
.value-card {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease !important;
}
.value-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(46, 125, 252, 0.18) !important;
}

/* About page images — subtle zoom */
.about-img {
  transition: box-shadow 0.35s ease;
}
.about-img:hover {
  box-shadow: 0 32px 80px rgba(46, 125, 252, 0.2) !important;
}
.about-img img {
  transition: transform 0.5s ease;
}
.about-img:hover img {
  transform: scale(1.03);
}

/* Perk cards — join page */
.perk-card {
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease !important;
}
.perk-card:hover {
  transform: translateX(10px) translateY(-4px) !important;
  box-shadow: 0 16px 44px rgba(46, 125, 252, 0.16) !important;
}

/* Step numbers pulse — join page */
.step-num {
  animation: stepGlow 3s ease-in-out infinite;
}
@keyframes stepGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(46, 125, 252, 0.35);
  }
  50% {
    box-shadow:
      0 6px 32px rgba(46, 125, 252, 0.65),
      0 0 0 8px rgba(46, 125, 252, 0.08);
  }
}

/* Contact items — slide effect */
.contact-item {
  transition: transform 0.25s ease;
  cursor: default;
}
.contact-item:hover {
  transform: translateX(8px);
}
.contact-item-icon {
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.contact-item:hover .contact-item-icon {
  background: linear-gradient(135deg, var(--brand), #60a5fa) !important;
  transform: scale(1.1);
}

/* Form inputs — lift on focus */
.form-group input,
.form-group textarea,
.form-group select {
  transition: all 0.25s ease !important;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  transform: translateY(-1px) !important;
}

/* All primary buttons — spring bounce */
.btn-primary,
.btn-secondary,
.btn-white,
.btn-ghost-white {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Page hero entrance */
.page-hero-inner h1 {
  animation: fadeInUp 0.7s ease both;
}
.page-hero-inner p {
  animation: fadeInUp 0.7s ease 0.15s both;
}

/* ── Custom fixes for requested changes ── */

/* Change 1: Hide why-dots completely */
.why-dots {
  display: none !important;
}

/* Change 2: CTA — second btn-white (Download) styled like Image 2 solid white */
.cta-btns .btn-white:nth-child(2) {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}
.cta-btns .btn-white:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Change 3: Download section — replace works4 with problem.png sizing */
.download-section .phone-container img {
  width: 280px !important;
  max-width: 90vw;
  object-fit: contain;
}
.phone-backdrop {
  width: 300px !important;
  height: 260px !important;
}

/* ── NAVBAR PATCH: taller, wider, bolder store button ── */
.navbar-wrap {
  padding: 0.875rem 3% !important;
}
.navbar {
  padding: 0.875rem 2rem !important;
  min-height: 72px !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 24px rgba(46, 125, 252, 0.18) !important;
}
.nav-logo {
  height: 52px !important;
}
.nav-logo img {
  height: 100% !important;
}
.nav-links a {
  font-size: 1.025rem !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.1rem !important;
}
/* Store button in nav */
.nav-store-btn {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  padding: 0.6rem 1.25rem !important;
  background: #2e7dfc !important;
  border: 2px solid rgba(46, 125, 252, 0.45) !important;
  border-radius: 0.75rem !important;
  text-decoration: none !important;
  color: #0f3a8f !important;
  font-family: var(--font-body) !important;
  box-shadow: 0 3px 14px rgba(46, 125, 252, 0.2) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  min-height: 46px !important;
}
.nav-store-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-store-btn:hover {
  border-color: #2e7dfc !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(46, 125, 252, 0.3) !important;
}
.nav-store-btn svg {
  color: #1a4fc4 !important;
  flex-shrink: 0 !important;
}
.nav-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-store-sub {
  font-size: 0.8rem !important;
  color: #b8d4ff !important;
  font-weight: 500 !important;
}
.nav-store-name {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

/* ── CTA store buttons equal height ── */
.cta-store-btns {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  position: relative;
  z-index: 1;
}
.cta-store-btn {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.875rem 1.625rem !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 0.75rem !important;
  text-decoration: none !important;
  color: #fff !important;
  min-width: 170px !important;
  min-height: 60px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
  backdrop-filter: blur(8px) !important;
}
.cta-store-btn:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
}
.cta-store-btn svg {
  flex-shrink: 0 !important;
}
.cta-store-sub {
  font-size: 0.65rem !important;
  opacity: 0.85;
  line-height: 1.2;
  display: block;
  margin-bottom: 1px;
  color: inherit !important;
}
.cta-store-name {
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1;
  display: block;
  color: inherit !important;
}

/* ── About belief image: no border, soft shadow ── */
.belief-img {
  border: none !important;
  outline: none !important;
  box-shadow:
    0 16px 56px rgba(46, 125, 252, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06) !important;
  border-radius: 2rem !important;
  overflow: hidden !important;
}
.belief-img::before,
.belief-img::after {
  display: none !important;
}
.belief-img img {
  border-radius: 2rem !important;
  box-shadow: none !important;
  border: none !important;
  width: 100% !important;
  outline: none !important;
}

/* ── About 'Ready to Feel Heard' CTA — match index CTA background ── */
.ready-cta {
  background: linear-gradient(
    150deg,
    #2563eb 0%,
    #3b82f6 55%,
    #5b9efa 100%
  ) !important;
  border-radius: 2rem !important;
  padding: 5rem 3rem !important;
  text-align: center !important;
  color: white !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 auto !important;
}
.ready-cta::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -10%;
  width: 120%;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 60% 60% 0 0;
  pointer-events: none;
}
.ready-cta::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -15%;
  width: 130%;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 60% 60% 0 0;
  pointer-events: none;
}
.ready-cta h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
  position: relative;
  z-index: 1;
}
.ready-cta p {
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 580px !important;
  margin: 0 auto 2.5rem !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  position: relative;
  z-index: 1;
}
.ready-cta .ready-btns {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  position: relative;
  z-index: 1;
}
.ready-cta .btn-ready-primary {
  background: white !important;
  color: #0f3a8f !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 1rem 2.25rem !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
  border: none !important;
}
.ready-cta .btn-ready-primary:hover {
  background: #eff6ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22) !important;
}
.ready-cta .btn-ready-secondary {
  background: transparent !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 0.95rem 2.25rem !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  transition: all 0.25s ease !important;
}
.ready-cta .btn-ready-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px) !important;
}

/* ── Join Listener: benefit cards equal uniform image height ── */
.benefit-card {
  background: #fff !important;
  border-radius: 1.5rem !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(46, 125, 252, 0.09) !important;
  border: 1.5px solid rgba(46, 125, 252, 0.1) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
}
.benefit-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(46, 125, 252, 0.16) !important;
}
.benefit-img {
  width: 160px !important;
  min-width: 160px !important;
  height: 160px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  flex-shrink: 0 !important;
}
.benefit-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.benefit-body {
  padding: 1.5rem !important;
  flex: 1 !important;
}
.benefit-body h4 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #0d1b3e !important;
  margin-bottom: 0.625rem !important;
  font-family: var(--font-display) !important;
}
.benefit-body p {
  font-size: 0.95rem !important;
  color: #475569 !important;
  line-height: 1.7 !important;
}
.benefits-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem !important;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }
  .benefit-card {
    flex-direction: column !important;
  }
  .benefit-img {
    width: 100% !important;
    height: 200px !important;
    min-width: 0 !important;
  }
}

/* ── Steps cards: uniform image height ── */
.step-card-img {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
  margin: 1rem 0 !important;
  background: rgba(46, 125, 252, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.step-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* CHANGE 4: Remove dashed border from download visual */
.download-visual-top {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.download-visual-top * {
  border: none !important;
}

.page-hero {
  padding: 9rem 1.5rem 5rem;
  background: linear-gradient(160deg, #eff6ff 0%, #f8fbff 60%, #fff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 125, 252, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  animation: fadeInUp 0.75s ease both;
}
.page-hero-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 1.25rem;
  animation: fadeInUp 0.75s ease 0.15s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Story Section ── */
.story-section {
  padding: 5rem 1.5rem;
  background: white;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.4s ease;
}
.story-img:hover {
  box-shadow: 0 32px 80px rgba(46, 125, 252, 0.2);
}
.story-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-img:hover img {
  transform: scale(1.04);
}
.story-text .section-label {
  display: block;
  margin-bottom: 1rem;
}
.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.story-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── Mission ── */
.mission-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 1rem 0;
  color: var(--text-primary);
  line-height: 1.4;
}
.mission-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Values ── */
.values-section {
  padding: 5rem 1.5rem;
  background: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.value-card {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(46, 125, 252, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 252, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(46, 125, 252, 0.13);
}
.value-card:hover::before {
  opacity: 1;
}
.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}
.value-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Belief Section ── */
.belief-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, white 100%);
}
.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.belief-text .section-label {
  display: block;
  margin-bottom: 1rem;
}
.belief-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.belief-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.belief-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.belief-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── Promise Cards ── */
.promise-section {
  padding: 5rem 1.5rem;
  background: white;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.promise-card {
  background: var(--surface-soft);
  border: 1px solid rgba(46, 125, 252, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(46, 125, 252, 0.12);
}
.promise-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(46, 125, 252, 0.3);
}
.promise-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.promise-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .story-grid,
  .belief-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/*  CTA: orb background (Image 5 style)  */
.cta-inner {
  background: linear-gradient(135deg, #2e7dfc 0%, #1040c0 100%) !important;
  border-radius: 2.5rem !important;
  padding: 5rem 4rem !important;
  position: relative !important;
  overflow: hidden !important;
}
.cta-wave-bg {
  display: none !important;
}
.cta-orb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.cta-orb-1 {
  width: 120%;
  aspect-ratio: 1;
  top: 30%;
  right: -30%;
}
.cta-orb-2 {
  width: 150%;
  aspect-ratio: 1;
  top: 60%;
  left: -40%;
}
.cta-inner h2,
.cta-inner p {
  position: relative;
  z-index: 2;
}
.cta-btns {
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .cta-inner {
    padding: 3rem 1.5rem !important;
    border-radius: 1.5rem !important;
  }
}

/*  Nav store button (Image 3 bluish style)  */
.nav-store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.85rem;
  background: rgba(46, 125, 252, 0.12);
  border: 1.5px solid rgba(46, 125, 252, 0.35);
  border-radius: 12px;
  text-decoration: none;
  color: #1040a0 !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(46, 125, 252, 0.12);
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.nav-store-btn:hover {
  background: rgba(46, 125, 252, 0.22);
  border-color: rgba(46, 125, 252, 0.6);
  box-shadow: 0 4px 18px rgba(46, 125, 252, 0.22);
  transform: translateY(-1px);
}
.nav-store-btn svg {
  flex-shrink: 0;
  color: #1855b6;
}
.nav-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-store-sub {
  font-size: 0.58rem;
  color: #2e7dfc;
  margin-bottom: 2px;
  font-weight: 500;
}
.nav-store-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1040a0;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .nav-store-btn {
    display: none;
  }
}
/* Hide old nav-cta if it still exists */
.nav-cta {
  display: none !important;
}

/*  Remove dashed border around download image  */
.phone-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.phone-container::before,
.phone-container::after {
  display: none !important;
}
.download-visual-top {
  border: none !important;
  outline: none !important;
}
.download-inner-v2 > .download-visual-top {
  border: none !important;
  box-shadow: none !important;
}

.contact-section {
  padding: 8rem 1.5rem 5rem;
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f7ff 0%, #fff 70%);
  position: relative;
}
.contact-bg-img {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.contact-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}
.contact-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(46, 125, 252, 0.14);
  border: 1.5px solid rgba(46, 125, 252, 0.1);
}
@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}
/* Form side */
.contact-form-side {
  padding: 3rem;
}
.contact-form-side h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.contact-form-side h2 span {
  color: #2e7dfc;
}
.contact-form-side .form-sub {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #eff6ff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1a2540;
  background: #f8fbff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-input:focus {
  border-color: #2e7dfc;
  box-shadow: 0 0 0 3px rgba(46, 125, 252, 0.12);
  background: #fff;
}
.form-input::placeholder {
  color: #94a3b8;
}
textarea.form-input {
  resize: none;
}
.form-submit {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.45);
}
/* Info side */
.contact-info-side {
  background: linear-gradient(160deg, #0052cc, #1a6ef5);
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info-side h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.contact-avatar {
  width: 72%;
  margin: 0 auto 1.5rem;
  display: block;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}
.info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 2px;
}
.info-value {
  font-size: 1rem;
  font-weight: 600;
}
.contact-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.contact-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.contact-social:hover {
  background: rgba(255, 255, 255, 0.3);
}
.form-msg {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/*  CTA: orb background (Image 5 style)  */
.cta-inner {
  background: linear-gradient(135deg, #2e7dfc 0%, #1040c0 100%) !important;
  border-radius: 2.5rem !important;
  padding: 5rem 4rem !important;
  position: relative !important;
  overflow: hidden !important;
}
.cta-wave-bg {
  display: none !important;
}
.cta-orb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.cta-orb-1 {
  width: 120%;
  aspect-ratio: 1;
  top: 30%;
  right: -30%;
}
.cta-orb-2 {
  width: 150%;
  aspect-ratio: 1;
  top: 60%;
  left: -40%;
}
.cta-inner h2,
.cta-inner p {
  position: relative;
  z-index: 2;
}
.cta-btns {
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .cta-inner {
    padding: 3rem 1.5rem !important;
    border-radius: 1.5rem !important;
  }
}

/*  Nav store button (Image 3 bluish style)  */
.nav-store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.85rem;
  background: rgba(46, 125, 252, 0.12);
  border: 1.5px solid rgba(46, 125, 252, 0.35);
  border-radius: 12px;
  text-decoration: none;
  color: #1040a0 !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(46, 125, 252, 0.12);
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.nav-store-btn:hover {
  background: rgba(46, 125, 252, 0.22);
  border-color: rgba(46, 125, 252, 0.6);
  box-shadow: 0 4px 18px rgba(46, 125, 252, 0.22);
  transform: translateY(-1px);
}
.nav-store-btn svg {
  flex-shrink: 0;
  color: #1855b6;
}
.nav-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-store-sub {
  font-size: 0.58rem;
  color: #2e7dfc;
  margin-bottom: 2px;
  font-weight: 500;
}
.nav-store-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1040a0;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .nav-store-btn {
    display: none;
  }
}
/* Hide old nav-cta if it still exists */
.nav-cta {
  display: none !important;
}

/*  Remove dashed border around download image  */
.phone-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.phone-container::before,
.phone-container::after {
  display: none !important;
}
.download-visual-top {
  border: none !important;
  outline: none !important;
}
.download-inner-v2 > .download-visual-top {
  border: none !important;
  box-shadow: none !important;
}
.page-hero {
  padding: 9rem 1.5rem 5rem;
  background: linear-gradient(160deg, #eff6ff 0%, #f8fbff 60%, #fff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 125, 252, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  animation: fadeInUp 0.75s ease both;
}
.page-hero-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 1.25rem;
  animation: fadeInUp 0.75s ease 0.15s both;
}
.page-hero-inner .hero-ctas {
  justify-content: center;
  margin-top: 2rem;
  animation: fadeInUp 0.75s ease 0.25s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Who Can Join ── */
.who-section {
  padding: 5rem 1.5rem;
  background: white;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.who-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.who-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.who-text .section-label {
  display: block;
  margin-bottom: 1rem;
}
.who-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.who-criteria {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.who-criterion {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-soft);
  border: 1px solid rgba(46, 125, 252, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.25s;
}
.who-criterion:hover {
  border-color: rgba(46, 125, 252, 0.25);
  box-shadow: 0 6px 20px rgba(46, 125, 252, 0.08);
  transform: translateX(4px);
}
.who-crit-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.who-crit-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.who-crit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Benefits / Why Join ── */
.benefits-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 125, 252, 0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(46, 125, 252, 0.12);
}
.benefit-img {
  width: 130px;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}
.benefit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.benefit-card:hover .benefit-img img {
  transform: scale(1.06);
}
.benefit-body {
  padding: 1.5rem;
}
.benefit-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.benefit-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── How It Works (Steps) ── */
.steps-section {
  padding: 5rem 1.5rem;
  background: white;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    rgba(46, 125, 252, 0.2) 100%
  );
  z-index: 0;
}
.step-card {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(46, 125, 252, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(46, 125, 252, 0.12);
}
.step-num-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(46, 125, 252, 0.3);
}
.step-card-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(46, 125, 252, 0.1);
}
.step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.step-card p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Testimonials ── */
.join-test-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, white 100%);
}

/* ── Apply Form ── */
.apply-section {
  padding: 5rem 1.5rem;
  background: white;
}
.apply-inner {
  max-width: 760px;
  margin: 0 auto;
}
.apply-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(46, 125, 252, 0.12);
  box-shadow: 0 8px 40px rgba(46, 125, 252, 0.08);
}
.apply-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.apply-form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(46, 125, 252, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--surface-soft);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46, 125, 252, 0.12);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    flex-direction: column;
  }
  .benefit-img {
    width: 100%;
    height: 180px;
  }
}

/*  CTA: orb background (Image 5 style)  */
.cta-inner {
  background: linear-gradient(135deg, #2e7dfc 0%, #1040c0 100%) !important;
  border-radius: 2.5rem !important;
  padding: 5rem 4rem !important;
  position: relative !important;
  overflow: hidden !important;
}
.cta-wave-bg {
  display: none !important;
}
.cta-orb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.cta-orb-1 {
  width: 120%;
  aspect-ratio: 1;
  top: 30%;
  right: -30%;
}
.cta-orb-2 {
  width: 150%;
  aspect-ratio: 1;
  top: 60%;
  left: -40%;
}
.cta-inner h2,
.cta-inner p {
  position: relative;
  z-index: 2;
}
.cta-btns {
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .cta-inner {
    padding: 3rem 1.5rem !important;
    border-radius: 1.5rem !important;
  }
}

/*  Nav store button (Image 3 bluish style)  */
.nav-store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.85rem;
  background: rgba(46, 125, 252, 0.12);
  border: 1.5px solid rgba(46, 125, 252, 0.35);
  border-radius: 12px;
  text-decoration: none;
  color: #1040a0 !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(46, 125, 252, 0.12);
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.nav-store-btn:hover {
  background: rgba(46, 125, 252, 0.22);
  border-color: rgba(46, 125, 252, 0.6);
  box-shadow: 0 4px 18px rgba(46, 125, 252, 0.22);
  transform: translateY(-1px);
}
.nav-store-btn svg {
  flex-shrink: 0;
  color: #1855b6;
}
.nav-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-store-sub {
  font-size: 0.58rem;
  color: #2e7dfc;
  margin-bottom: 2px;
  font-weight: 500;
}
.nav-store-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1040a0;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .nav-store-btn {
    display: none;
  }
}
/* Hide old nav-cta if it still exists */
.nav-cta {
  display: none !important;
}

/*  Remove dashed border around download image  */
.phone-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.phone-container::before,
.phone-container::after {
  display: none !important;
}
.download-visual-top {
  border: none !important;
  outline: none !important;
}
.download-inner-v2 > .download-visual-top {
  border: none !important;
  box-shadow: none !important;
}
