@font-face {
  font-family: 'SF Pro';
  src: url('fonts/SF-Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.hero-buttons a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 55px;
  height: 55px;
}
@media (max-width: 700px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
    flex: none;
    text-align: center;
    height: 55px;
    min-height: 55px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro', sans-serif;
  color: white;
  background: linear-gradient(to bottom right, #080808, #080808);
  background-color: #000;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f0f0f00;
  z-index: 10;
  transform: translateZ(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0);
}

/* --- Left side --- */
.nav-left {
  display: flex;
  align-items: left;
  padding-inline: 5%;
  gap: 2rem;
}

@media (max-width: 700px) {
  .nav-right {
    display: none !important;
  }
  .footer-background {
    display: none;
  }
}
.nav-right {
  display: flex;
  align-items: right;
  padding-inline: 5%;
  gap: 2rem;
}


.language-container {
  position: relative;
  display: inline-block;
}

.language-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.language-dropdown.show {
  display: flex;
}

.language-dropdown a {
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.language-dropdown a:hover {
  background: rgba(255,255,255,0.15);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.1rem;
  padding: 0rem 0.4rem;
  backdrop-filter: blur(2px);
  border-radius: 25px;
}

.logo-icon {
  margin-right: 10px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* --- Grouped nav buttons --- */
.nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.603);
  border: 1px solid rgba(175, 175, 175, 0.253);
  position: relative;
  height: 50px;
  padding: 0;
  backdrop-filter: blur(7px);
}

.nav-group a {
  flex: 0;
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Remove their individual glass edges */
.nav-group a::before {
  content: none !important;
}

/* Subtle highlight when hovered */
.nav-group a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Optional: remove divider lines for perfect unity */
.nav-group a::after {
  display: none;
}

/* --- Right side --- */
.nav-right {
  display: flex;
  align-items: right;
  gap: 1rem;
  height: 50px; /* match nav-group height */
}

/* Language button */
.lang-btn {
  height: 100%;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.473);
}

/* App Store button */
.download-btn {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  text-align: left;
  box-shadow: inset 0 3px 8px rgba(177, 84, 47, 0.726);
  min-width: 170px;
  text-decoration: none;
}

.orange-btn {
  margin-top: 0.8rem;
  padding: 1rem;
  min-width: 220px;
  border: 1px solid rgba(255, 181, 90, 0.11);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: inset 0 2px 6px rgba(150, 73, 50, 0.726);
}

.download-btn:hover {
  background: rgba(255, 130, 0, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 130, 0, 0.4);
}

.apple-icon {
  width: 22px;
  height: 26px;
  filter: invert(1);
}

.download-text .small-text {
  font-size: 0.7rem;
  opacity: 0.85;
}

.download-text .bold-text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Interaction cleanup --- */
button, a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}

/* ===== MENU TOGGLE (hamburger) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  transition: transform 0.3s ease;
}

.menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 9;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu a {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  transition: background 0.3s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Menu visible state */
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE RULES ===== */
@media (max-width: 1010px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-right {
    gap: 0.6rem;
  }
}

.stars,
.stars2 {
  position: fixed;
  top: -300vh;
  left: 0%;
  transform: translateX(-50%);  /* centers without overflow */
  
  width: 200vw;   /* safely wide but no overflow */
  height: 400vh;
  
  background-position: center top;
  background-repeat: repeat;
  background-size: auto;
  z-index: -2;
  will-change: transform;
  pointer-events: none; /* optional safety */
  overflow: hidden;
}

.stars {
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.25;
}

.stars2 {
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.45;
  z-index: -3;
}

/* Ensure content sits above the star layers */
body {
  position: relative;
  /* background: radial-gradient(ellipse at bottom, #0b0b0b, #0b0b0b); */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  overflow: hidden; /* hides edges of the video */
  padding-left: 4%;
  padding-right: 1rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  filter: brightness(0.8) saturate(1.2);
}

.hero-content {
  padding: 3rem 4rem;
  border-radius: 20px;
  max-width: 600px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===== BUTTON ===== */
.glass-button {
  min-width: 170px;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(212, 212, 212, 0.13);
  border-radius: 30px;
  color: white;
  box-shadow: inset 0 6px 10px rgba(124, 124, 124, 0.24);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.glass-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.wide-glass-button {
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(212, 212, 212, 0.13);
  border-radius: 30px;
  color: white;
  box-shadow: inset 0 6px 10px rgba(124, 124, 124, 0.24);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  text-align: center;
}

.wide-glass-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}


.support-glass-button {
  /* min-width: 500px;  */
  width: 100%;
  min-height: 55px;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(212, 212, 212, 0.13);
  color: white;
  box-shadow: inset 0 5px 8px rgba(124, 124, 124, 0.493);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.support-glass-button:hover {
  background: rgba(255, 255, 255, 0.048);
  transform: scale(1.02);
}

/* Reduce inner padding of text fields and textarea in contact form only */

.contact-form input.support-glass-button,
.contact-form textarea.support-glass-button {
  padding: 0.6rem 1.5rem;
}

.contact-form {
  width: 100%;
  max-width: 600px;
}

.contact-form input.support-glass-button,
.contact-form textarea.support-glass-button {
  width: 100% !important;
  max-width: 100% !important;
}

.inline-play-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 4rem 7%;
  text-align: left;
}

.footer-background {
  position: relative;
  overflow: hidden; 
  width: 100%;
  z-index: -1;
  margin-bottom: -90px;
  opacity: 0.5;
}

.footer-logo {
  width: 28px;
  height: 28px;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* spread left/middle/right */
    align-items: center;
    padding-inline: 5%; /* same as navbar */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media (max-width: 650px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    justify-content: center;
  }
}

.footer-left {
    display: flex;
    justify-content: flex-start; /* align left like navbar */
    align-items: center;
    gap: 0.7rem;
}

.footer-middle {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.footer-left span {
    font-size: 0.8rem; /* keep small font */
}

.link-style {
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

.footer-right {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  gap: 1.2rem;
}

.footer-right img {
  width: 24px;
  opacity: 1;
}
.footer-right img:hover {
  opacity: 1;
  transform: scale(1.12);
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

/* ===== FADE IN EFFECT ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Medium screens (tablets / small laptops) */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .navbar ul {
    gap: 1.2rem;
  }

  .hero-content {
    padding: 2.5rem 3rem;
    max-width: 90%;
  }
}

/* Small screens (phones) */
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .hero {
    height: 90vh;
  }

  .hero-content {
    padding: 2rem;
    border-radius: 16px;
  }

  .glass-button {
    width: 100%;
    font-size: 1.1rem;
  }
}

/* Ultra small (iPhone SE, Vision viewport windows) */
@media (max-width: 400px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
  }

  .navbar {
    padding: 1rem;
  }
}

.mobile-menu {
  animation: blurFade 0.35s ease both;
}

@keyframes blurFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ===== LIQUID GLASS BUTTON STYLE ===== */
.liquid-glass,
.lang-btn,
.download-btn,
.orange-btn,
.glass-button,
.wide-glass-button,
.support-glass-button,
.support-btn,
.send-btn {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(7px);
  color: white;
  transition: all 0.4s ease;
  overflow: hidden;
  /* max-width: 180px; */
}

/* create the “edge” gradient layer */
.liquid-glass::before,
.nav-group a::before,
.lang-btn::before,
.download-btn::before,
.glass-button::before,
.wide-glass-button::before,
.support-glass-button::before,
.support-btn::before,
.send-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.05));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* subtle shimmer on hover */
.liquid-glass:hover::before,
.nav-group a:hover::before,
.lang-btn:hover::before,
.download-btn:hover::before,
.glass-button:hover::before,
.wide-glass-button:hover::before,
.support-glass-button:hover::before,
.support-btn:hover::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
  transition: background 0.4s ease;
}

/* hover effect: soft glow */
.liquid-glass:hover,
.nav-group a:hover,
.lang-btn:hover,
.download-btn:hover,
.glass-button:hover,
.wide-glass-button:hover,
.support-btn:hover,
.send-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.download-btn::before {
  background: linear-gradient(135deg, rgba(255,180,90,0.9), rgba(255,130,0,0.1));
}

.download-btn:hover::before {
  background: linear-gradient(135deg, rgba(255,210,120,1), rgba(255,130,0,0.2));
}

.download-btn:hover {
  box-shadow: 0 0 16px rgba(255,150,50,0.4);
}

.text-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 0rem 7%;
  margin-top: 120px;
  margin-bottom: 120px;
}

.text-card {
  flex: 1 1 250px;
  max-width: 300px;
  margin: 0;
  text-align: left;
}

@media (max-width: 1200px) {
  .text-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 650px) {
  .text-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.card-text-header {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 200;
  color: #ffffff;
}

.contact-text-header {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 200;
  color: #ffffff;
}

.card-paragraph {
  font-size: 1.9rem;
  font-weight: 400;
  color: #ffffff;
}

.stats-section {
  justify-content: left;
  text-align: left;
  color: white;
}

.stat {
  display: flex;
  font-family: 'SF Pro', sans-serif;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

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

.count {
  font-size: 2.5rem;
  font-weight: 400;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.sub-title {
  font-size: 2.5rem;
  font-weight: 180;
  margin-bottom: 1.5rem;
}

.sub-paragraph {
  font-size: 1.1rem;
  font-weight: 150;
  color: #CFCFCF;
}

.image-card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 50px rgba(255, 160, 50, 0.25);
}

.video-window {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  margin-top: 0.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  object-fit: cover;
  pointer-events: none;      /* IMPORTANT: does not capture pointer events */
}

.video-window:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 50px rgba(255, 160, 50, 0.25);
}

.video-window {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.video-window:hover .video-thumbnail {
  filter: brightness(1);
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.096), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 1px 4px rgba(255, 255, 255, 0.25),
    inset 0 -1px 6px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(255, 130, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
}

.play-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 18px solid #ff9b3d;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  filter: drop-shadow(0 0 8px rgba(255, 150, 0, 0.6));
  transition: transform 0.3s ease;
}

/* Hover glow and animation */
.video-window:hover .play-button {
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 6px rgba(255, 255, 255, 0.3),
    0 0 35px rgba(255, 150, 0, 0.4);
}

.video-window:hover .play-button::after {
  transform: scale(1.1);
}

.video-window:hover .play-button::before {
  opacity: 1;
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.text-point-container {
  transition: all 0.3s ease;
  justify-content: left;
  align-items: center;
  text-align: center;
  padding: 4rem 7%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.point-card {
  max-width: 250px;
  justify-content: left;
  margin: auto;
}

.tilt-card {
  max-width: 250px;
  justify-content: left;
  margin: auto;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
  perspective: 600px;
  cursor: pointer;
}

.tilt-card img {
  width: 50px;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.15s ease-out;
}

/* Subtle inner light reflection */
.shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tilt-card:hover .shine {
  opacity: 0.6;
}


.point-text-header {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}

.point-paragraph {
  font-size: 0.9rem;
  font-weight: 200;
  color: #ffffff;
}

.pointer-icon {
  width: 50px; 
  height: 50px; 
  margin-bottom: 1.5rem;
}

.sub-center-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sub-center-title2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.orange-btn {
  margin-top: 1.5rem;
  min-width: 300px; 
  padding: 1.4rem;
  border: 1px solid rgba(255, 181, 90, 0.11);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: inset 0 2px 6px rgba(150, 73, 50, 0.726);
}

.orange-btn:hover {
  background: rgba(255, 132, 0, 0.219);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 130, 0, 0.4);
}

.orange-btn-text {
  font-size: 1.2rem;
  font-weight: 200;
}

/* Responsive Best Apps Cards */
.best-apps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
  overflow-x: hidden;
}

.best-apps-card {
  flex: 1 1 300px; /* grows, shrinks, base width 300px */
  max-width: 500px;
  box-sizing: border-box;
  border-radius: 20px;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 1.5rem;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(182, 182, 182, 0.062);
  box-shadow:
    inset 2px 7px 10px rgba(255, 255, 255, 0.09),
    0 0 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.best-apps-paragraph {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
}

.best-apps-reviewer {
  font-size: 1rem;
  font-weight: 100;
  color: #e6e6e6e1;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.best-apps-date {
  font-size: 0.8rem;
  font-weight: 100;
  color: #c5b3aae0;
  margin-top: 2.5rem;
}

.best-apps-card:hover {
  box-shadow: inset 0 4px 25px rgba(95, 95, 95, 0.25);
}

@media (max-width: 800px) {
  .best-apps-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .best-apps-card {
    max-width: 90%;
  }
}

.faq-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

.faq-card {
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(182, 182, 182, 0.062);
  box-shadow:
    inset 2px 7px 10px rgba(255, 255, 255, 0.09),
    0 0 20px rgba(0, 0, 0, 0.4);
}

.faq-section {
  max-width: 70%;
  margin: 6rem auto;
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f9f9f9;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(182, 182, 182, 0.062);
  box-shadow:
    inset 2px 7px 10px rgba(255, 255, 255, 0.09),
    0 0 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.12),
    0 0 25px rgba(255, 255, 255, 0.08);
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

.faq-question {
  width: 100%;
  padding: 2rem 3rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 100;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  text-align: left;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0;
}

.faq-answer p {
  padding: 0 1.5rem;
  padding-bottom: 1rem;
  margin: 1rem 0;
  line-height: 1.5;
  color: #ddd;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}

.faq-item.active .faq-answer {
  padding: 0 1.6rem 1.6rem 1.6rem;
}

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

.centered-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  gap: 1rem;
}

.free-beta-text {
  font-size: 0.9rem;
  font-weight: 100;
  color: #9A8B82;
  margin-top: 0.5rem;
}

.support-us-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.support-btn {
  height: 100%;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 2px 6px #af6536;
  min-width: 180px;
  text-decoration: none;
}

.send-btn {
  height: 100%;
  align-items: center;
  text-align: center;
  padding: 1.3rem 2.5rem;
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 3px 10px rgba(214, 135, 32, 0.726);
  min-width: 50px;
  text-decoration: none;
}

.support-icon {
  margin-bottom: -4px;
  margin-right: 2px;
  width: 20px;
  height: 20px;
}

.send-btn {
  margin-top: 10px;
  align-items: flex-end;
}

/* Responsive Tilt Cards / Icon Sections */
.text-point-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: stretch;
}

.tilt-card {
  flex: 1 1 250px; /* grows, shrinks, base width 250px */
  max-width: 350px;
  box-sizing: border-box;
  margin-top: 0;
}

@media (max-width: 800px) {
  .text-point-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .tilt-card {
    max-width: 90%;
  }
}
/* Ready to Explore Section Buttons Responsiveness */
.centered-content .wide-glass-button,
.centered-content .download-btn {
  width: 100%;
  max-width: 500px; /* optional max width */
  padding: 1rem 2rem;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .centered-content .wide-glass-button,
  .centered-content .download-btn {
    padding: 1rem 1.5rem;
  }
}
/* Mobile line break for email address */
.mobile-break {
  display: none;
}

@media (max-width: 500px) {
  .mobile-break {
    display: block;
  }
}
  .email-flex-fix {
    gap: 0.4rem;
    }
@media (max-width: 500px) {
  .email-flex-fix {
    flex-direction: column !important;
    text-align: center;
  }
}