@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #1A73E8;
  --primary-dark: #1557B0;
  --primary-light: #E8F0FE;
  --accent: #00C6A7;
  --accent-dark: #00A38A;
  --text-dark: #0D1B2A;
  --text-mid: #3D5166;
  --text-light: #6B84A0;
  --bg-white: #FFFFFF;
  --bg-light: #F5F8FF;
  --bg-section: #EEF4FF;
  --border: #D6E4F7;
  --shadow-sm: 0 2px 12px rgba(26, 115, 232, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 115, 232, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 115, 232, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ──────────────────────────────────────────────────────────────────────────
   CUSTOM LANGUAGE SWITCHER STYLING
   ────────────────────────────────────────────────────────────────────────── */
.lang-switcher-container {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 130px;
  justify-content: space-between;
}

.lang-btn:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.lang-btn span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.lang-btn i {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.lang-switcher-container.open .lang-btn i {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  z-index: 2000;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease-out;
}

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

.lang-switcher-container.open .lang-dropdown {
  display: flex;
}

.lang-search-wrapper {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.lang-search-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.lang-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.lang-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
}

/* Custom Scrollbar for Language List */
.lang-list::-webkit-scrollbar {
  width: 5px;
}
.lang-list::-webkit-scrollbar-track {
  background: transparent;
}
.lang-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.lang-list::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.lang-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.lang-item.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
}

.lang-item .check-icon {
  font-size: 0.85rem;
  display: none;
}

.lang-item.active .check-icon {
  display: block;
}

/* Hide native Google Translate widget */
#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame, 
.goog-te-balloon-frame,
.goog-te-menu-value,
.goog-te-menu2,
.skiptranslate,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lang-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
  }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-outline {
  padding: 9px 22px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-primary {
  padding: 10px 24px;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(26, 115, 232, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(26, 115, 232, 0.45);
  transform: translateY(-2px);
}

.btn-accent {
  padding: 10px 24px;
  background: var(--accent);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0, 198, 167, 0.35);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(0, 198, 167, 0.45);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #E8F4FF 0%, #F0FDFA 50%, #E8F0FE 100%);
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 198, 167, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, 0.1);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(26, 115, 232, 0.25));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-18px);
  }
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0.5s;
}

.floating-card.card-2 {
  bottom: 25%;
  right: -8%;
  animation-delay: 1s;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.card-icon.green {
  background: rgba(0, 198, 167, 0.15);
}

.card-icon.blue {
  background: rgba(26, 115, 232, 0.15);
}

/* ── SECTION COMMONS ── */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
#about {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 50px rgba(0, 198, 167, 0.2));
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-feat::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  line-height: normal;
  text-align: center;
}

/* ── FEATURES ── */
#features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feat-icon i {
  display: block;
  line-height: 1;
}

.feat-icon.blue {
  background: rgba(26, 115, 232, 0.12);
  color: var(--primary);
}

.feat-icon.green {
  background: rgba(0, 198, 167, 0.12);
  color: var(--accent);
}

.feat-icon.purple {
  background: rgba(130, 80, 240, 0.12);
  color: #8250F0;
}

.feat-icon.orange {
  background: rgba(255, 140, 60, 0.12);
  color: #ef6c00;
}

.feat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── WHY CHOOSE ── */
#why {
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff;
}

.why-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── SECURITY ── */
#security {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3550 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#security::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 167, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 60px auto 0;
}

.security-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 198, 167, 0.15);
}

.sec-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.sec-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sec-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

#security .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* ── APP PREVIEW ── */
#preview {
  background: var(--bg-light);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto 0;
}

.preview-image img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 20px 50px rgba(26, 115, 232, 0.25));
  transition: var(--transition);
}

.preview-image img:hover {
  transform: scale(1.03) rotate(1deg);
}

.preview-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.preview-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.preview-screenshots {
  display: flex;
  gap: 24px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 2.2rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.testimonial-separator {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0A4DA8 100%);
  color: #fff;
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  color: var(--primary);
  padding: 20px 40px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white i:first-child {
  font-size: 1.3rem;
}

.btn-cta-white i:last-child {
  font-size: 0.9rem;
  opacity: 0.7;
}

.btn-cta-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #19AB4F;
  color: #fff;
  padding: 20px 40px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-green:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: #169e47;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.cta-trust-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.cta-trust-badges span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  opacity: 0.8;
}

.cta-input-wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.cta-input-wrap input {
  flex: 1;
  padding: 15px 22px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  color: var(--text-dark);
}

.cta-input-wrap button {
  padding: 15px 28px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.cta-input-wrap button:hover {
  background: var(--accent-dark);
}

.cta-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 14px;
}

/* ── FAQ ── */
#faq {
  background: var(--bg-light);
}

.faq-container {
  max-width: 750px;
  margin: 48px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.97rem;
  gap: 16px;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.faq-answer-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item.open .faq-answer-inner {
  opacity: 1;
}

/* ── FOOTER ── */
.simple-footer {
  background: #0D1B2A;
  color: #fff;
  padding: 80px 5% 60px;
  text-align: center;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-slogan {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 450px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto 30px;
  max-width: 1100px;
}

.footer-copyright {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1140px) {
  .security-grid {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 280px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 5% 24px;
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .floating-card {
    display: none;
  }

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

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

  .preview-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .preview-screenshots {
    justify-content: center;
  }

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

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  section {
    padding: 70px 5%;
  }

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

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

  .preview-screenshots {
    flex-direction: column;
  }
}

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, #E8F4FF 0%, #F0FDFA 100%);
  padding: 120px 5% 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.legal-hero p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 5%;
}

.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.legal-body p,
.legal-body li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.legal-body ul {
  padding-left: 22px;
  margin: 10px 0;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body strong {
  color: var(--text-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
  transition: var(--transition);
}

.back-link:hover {
  gap: 12px;
}