/* Global styles for Zenda Options website */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --po-dark-blue: #001333;
  --po-blue: #0052cc;
  --po-light-blue: #0099ff;
  --po-bright-blue: #00a3ff;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--po-dark-blue);
  color: white;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Button styles */
.btn-blue {
  background: linear-gradient(90deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Header styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 19, 51, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  margin-left: 10px;
}

.logo-highlight {
  color: var(--po-light-blue);
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--po-light-blue);
}

.header-right {
  display: flex;
  align-items: center;
}

.language-selector {
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  display: none;
}

@media (min-width: 768px) {
  .language-selector {
    display: flex;
    align-items: center;
  }
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--po-dark-blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 10px;
  min-width: 150px;
  display: none;
  z-index: 50;
}

.language-dropdown.active {
  display: block;
}

.language-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.language-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.language-flag {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  object-fit: cover;
}

.auth-buttons {
  display: none;
}

@media (min-width: 768px) {
  .auth-buttons {
    display: flex;
    align-items: center;
  }
}

.auth-buttons a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
}

.auth-buttons a:last-child {
  background-color: var(--po-light-blue);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.auth-buttons a:last-child:hover {
  background-color: var(--po-blue);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--po-dark-blue);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.close-menu-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  color: var(--po-light-blue);
}

.mobile-language-selector {
  margin-top: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-language-options {
  margin-top: 10px;
  padding-left: 15px;
}

.mobile-language-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.mobile-auth-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-auth-buttons a {
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  padding: 10px;
  text-align: center;
}

.mobile-auth-buttons a:last-child {
  background-color: var(--po-light-blue);
  border-radius: 4px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero section */
.hero-section {
  padding-top: 80px;
  background: linear-gradient(90deg, #001333 0%, #002255 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 100px 0;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.hero-image {
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .hero-image {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 60%;
    margin-top: 0;
  }
}

/* Social icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--po-light-blue);
  transform: translateY(-3px);
}

/* Features section */
.features-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: linear-gradient(135deg, #002255 0%, #001333 100%);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 153, 255, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.feature-link {
  color: var(--po-light-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.feature-link:hover {
  text-decoration: underline;
}

/* Stats section */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #001333 0%, #002255 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--po-light-blue);
  margin-bottom: 10px;
}

.stat-label {
  color: white;
  font-size: 1rem;
}

/* Platform preview */
.platform-section {
  padding: 60px 0;
}

.platform-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
}

.platform-preview {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.platform-cta {
  text-align: center;
}

/* Mobile app section */
.app-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--po-dark-blue), #001a33);
}

.app-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .app-container {
    flex-direction: row;
    align-items: center;
  }
}

.app-content {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .app-content {
    width: 50%;
    margin-bottom: 0;
    padding-right: 30px;
  }
}

.app-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.app-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .app-buttons {
    flex-direction: row;
  }
}

.app-button {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.app-button:hover {
  background-color: #333;
}

.app-button-icon {
  margin-right: 10px;
}

.app-button-text {
  display: flex;
  flex-direction: column;
}

.app-button-small {
  font-size: 0.75rem;
}

.app-button-large {
  font-size: 1.125rem;
  font-weight: 600;
}

.app-rating {
  display: flex;
  align-items: center;
}

.rating-stars {
  display: flex;
  margin-right: 10px;
}

.app-image {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .app-image {
    width: 50%;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
}

.testimonials-container {
  position: relative;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-stars {
  display: flex;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--po-blue), var(--po-light-blue));
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-white {
  background-color: white;
  color: var(--po-blue);
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: #000b21;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  color: white;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  font-size: 0.875rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  text-align: center;
}

/* Page header for inner pages */
.page-header {
  padding-top: 80px;
  background: linear-gradient(90deg, #001333 0%, #002255 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 82, 204, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-description {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

/* Content sections for inner pages */
.content-section {
  padding: 60px 0;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.content-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.content-list {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

/* Animation delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* ============================================================
   ZENDA OPTIONS — COMPREHENSIVE RESPONSIVE STYLES
   Mobile-first enhancements for all landing pages
   ============================================================ */

/* ── Reset / Box-sizing ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Prevent horizontal overflow site-wide ──────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Utility ─────────────────────────────────────────────── */
.w-full  { width: 100% !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  padding: 0;
}
.header-container {
  padding: 12px 16px;
  gap: 10px;
}
.logo-text {
  font-size: 1.1rem;
}

/* Mobile menu button — always visible on small screens */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
}
.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Auth buttons in header — show only on ≥768px */
.auth-buttons {
  gap: 8px;
}
.auth-buttons a {
  white-space: nowrap;
  font-size: 0.875rem;
  padding: 7px 14px;
}

/* Mobile slide-out menu overlay */
.mobile-menu {
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);
}
.mobile-nav a {
  font-size: 1.05rem;
  padding: 14px 0;
}
.mobile-auth-buttons a {
  font-size: 1rem;
  padding: 12px;
  border-radius: 6px;
}
.mobile-auth-buttons a:first-child {
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── Hero section ────────────────────────────────────────── */
.hero-section {
  padding-top: 70px;
}
.hero-content {
  padding: 40px 0 60px;
}
.hero-title {
  font-size: 1.75rem;
  line-height: 1.25;
}
.hero-subtitle {
  font-size: 1rem;
}
.hero-description {
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-buttons {
  flex-direction: column;
  gap: 12px;
}
.hero-buttons .btn-blue,
.hero-buttons a {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 1rem;
}
.hero-image {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

/* ── Stats grid ──────────────────────────────────────────── */
.stats-grid {
  gap: 20px;
}
.stat-number {
  font-size: 2rem;
}
.stat-label {
  font-size: 0.9rem;
}

/* ── Features grid ───────────────────────────────────────── */
.features-grid {
  gap: 20px;
}
.feature-card {
  padding: 20px 16px;
}
.feature-title {
  font-size: 1.1rem;
}
.feature-description {
  font-size: 0.9rem;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section .features-grid {
  grid-template-columns: 1fr;
}
.testimonial-card {
  padding: 20px 16px;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  padding: 60px 0;
}
.cta-title {
  font-size: 1.75rem;
}
.cta-description {
  font-size: 1rem;
  padding: 0 10px;
}
.cta-buttons {
  flex-direction: column;
  max-width: 280px;
}
.cta-buttons a {
  text-align: center;
  padding: 14px 20px;
}

/* ── App section ─────────────────────────────────────────── */
.app-section {
  padding: 50px 0;
}
.app-container {
  gap: 30px;
}
.app-title {
  font-size: 1.6rem;
}
.app-buttons {
  flex-direction: column;
  gap: 12px;
}
.app-button {
  width: 100%;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  padding: 50px 0 24px;
}
.footer-grid {
  gap: 32px;
}
.footer-heading {
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
}
.footer-link {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-copyright {
  font-size: 0.8rem;
}
.footer-disclaimer {
  font-size: 0.8rem;
}

/* ── Inner page headers ───────────────────────────────────── */
.page-header {
  padding-top: 70px;
}
.page-header-content {
  padding: 40px 16px;
}
.page-title {
  font-size: 1.75rem;
  line-height: 1.25;
}
.page-description {
  font-size: 0.95rem;
}

/* ── Section headings ────────────────────────────────────── */
.section-title {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

/* ── Blog / FAQ / Terms / Quick-Start ───────────────────── */
.content-section {
  padding: 40px 0;
}
.content-container {
  padding: 0 4px;
}
.content-title {
  font-size: 1.4rem;
}
.content-text {
  font-size: 0.95rem;
  line-height: 1.7;
}
.content-list li {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Touch-target minimum sizes ──────────────────────────── */
a, button {
  min-height: 44px;
}
nav a, .footer-link {
  min-height: auto;
}

/* ── Images ──────────────────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Tables (inner pages may use them) ───────────────────── */
table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── 480px and below — Extra small phones ────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero-title {
    font-size: 1.55rem;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .header-container {
    padding: 10px 12px;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .logo svg {
    width: 30px;
    height: 30px;
  }
}

/* ── 640px – 767px — Large phones / small tablets ───────── */
@media (min-width: 640px) and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-buttons a,
  .hero-buttons .btn-blue {
    width: auto;
  }
}

/* ── 768px — Tablet breakpoint ───────────────────────────── */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-content {
    padding: 80px 0;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .hero-buttons a,
  .hero-buttons .btn-blue {
    width: auto;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: row;
    max-width: 400px;
  }
  .testimonials-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-buttons {
    flex-direction: row;
  }
  .app-button {
    width: auto;
  }
}

/* ── 1024px — Desktop ────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
  .hero-content {
    padding: 100px 0;
  }
  .testimonials-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2.75rem;
  }
}

/* ── Blog card grid fix ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 34, 85, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 153, 255, 0.2);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 16px;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}
.faq-answer {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  line-height: 1.7;
}

/* ── Contact form ─────────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0099ff;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Quick-start steps ────────────────────────────────────── */
.step-card {
  background: rgba(0, 34, 85, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0099ff;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
