/* ============================================================================
   AmourFou - Crazy Love Dating App - Main Stylesheet
   Modern, Elegant, Premium Design
   ============================================================================ */

/* ============================================================================
   BRAND COLORS (from App Theme)
   ============================================================================ */
:root {
  /* Gold Tones */
  --gold-primary: #CFB57C;
  --gold-light: #E2D1A2;
  --gold-dark: #AA9657;
  
  /* Gray/Silver Tones */
  --gray-dark: #2D2D2D;
  --gray-medium: #383838;
  --gray-light: #454545;
  --gray-elevated: #525252;
  --silver-light: #E8E8E8;
  --silver: #C0C0C0;
  --silver-dark: #909090;
  
  /* Text Colors */
  --text-primary: #F5F5F5;
  --text-secondary: #B8B8B8;
  --text-muted: #888888;
  
  /* Accent Colors */
  --accent-green: #54C97A;
  --accent-red: #E85454;
  --accent-blue: #4A9FD9;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  --gradient-gold-reverse: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  --gradient-dark: linear-gradient(135deg, #000, #1a1a1a);
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  background-color: white;
  max-width: 1600px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.textsmall {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.5;
}

.textmini {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  line-height: 1.4;
}

/* Footer List Styling */
ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0.3rem 0;
}

ul.textsmall {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.8;
  padding-left: 1.2rem;
  list-style-type: disc;
}

ul.textsmall li {
  color: #A0A0A4;
  margin: 0.2rem 0;
}

/* Bullet-Farbe für Listen */
ul.textsmall li::marker {
  color: #CFB57C;
}

/* ============================================================================
   LAYOUT SYSTEM - Responsive Columns
   ============================================================================ */
.column {
  float: left;
}

.columnone {
  width: 100%;
}

.columntwo {
  width: 50%;
}

.columnthree {
  width: 33.333%;
}

.columnfour {
  width: 25%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================================
   STICKY HEADER/NAVIGATION
   ============================================================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1600px;
  margin: 0 auto;
  height: 70px;
  background-color: var(--gray-medium);
  border-bottom: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-header .logo {
  height: 45px;
  width: auto;
}

.sticky-header .download-btn {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sticky-header .download-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Language Dropdown */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-button {
  background-color: var(--gray-dark);
  color: var(--text-primary);
  padding: 8px 15px;
  border: 2px solid var(--gold-primary);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.language-button:hover {
  background-color: var(--gray-light);
  border-color: var(--gold-light);
}

.language-button .flag-icon {
  width: 24px;
  height: 16px;
}

.language-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  background-color: var(--gray-dark);
  border: 2px solid var(--gold-primary);
  border-radius: 5px;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}

.language-dropdown.active {
  display: block;
}

.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.language-dropdown a:hover {
  background-color: var(--gray-light);
}

.language-dropdown a .flag-icon {
  width: 24px;
  height: 16px;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
  background-color: var(--gray-medium);
  text-align: center;
  padding: 120px 2rem 3rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section .heart-logo {
  width: clamp(96px, 16vw, 160px);
  height: auto;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

.hero-section .text-logo {
  width: clamp(200px, 40vw, 360px);
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-section .tagline {
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  animation: fadeIn 1.2s ease-out 0.4s backwards;
}

/* ============================================================================
   LANGUAGE FLAGS SECTION
   ============================================================================ */
.languages-section {
  background-color: var(--gray-light);
  padding: 2.5rem 2rem;
  text-align: center;
}

.flags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.flag-item {
  width: 60px;
  height: 40px;
  max-width: 60px !important;
  max-height: 40px !important;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  display: block !important;
}

.flag-item:hover {
  transform: scale(1.1);
}

/* Mobile: Flaggen für 6+5 Layout in 2 Reihen */
@media screen and (max-width: 768px) {
  .flags-container .flag-item {
    width: 36px !important;
    height: 24px !important;
  }
}

@media screen and (max-width: 599px) {
  .flags-container .flag-item {
    width: 38px !important;
    height: 25px !important;
  }
  
  .flags-container {
    max-width: 280px !important;
    gap: 0.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .flags-container .flag-item {
    width: 40px !important;
    height: 27px !important;
  }
  
  .flags-container {
    gap: 0.45rem !important;
    max-width: 290px !important;
  }
}

@media screen and (max-width: 360px) {
  .flags-container .flag-item {
    width: 38px !important;
    height: 25px !important;
  }
  
  .flags-container {
    gap: 0.4rem !important;
    max-width: 280px !important;
  }
}

/* ============================================================================
   FEATURES SECTION - USPs
   ============================================================================ */
.features-section {
  background: var(--gradient-gold);
  padding: 4rem 2rem;
  text-align: center;
}

.features-section h2 {
  color: #000;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 2px;
  animation: slideInFromLeft 0.8s ease-out;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  color: #000;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.feature-card .price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0.5rem 0;
}

.feature-card .subtitle {
  color: var(--gray-medium);
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-top: 0.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 1rem auto;
  display: block;
}

/* ============================================================================
   VIDEO SECTION
   ============================================================================ */
.video-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================================
   CAROUSEL SECTIONS
   ============================================================================ */
.carousel-section {
  padding: 4rem 2rem;
  position: relative;
}

.carousel-section.gray-bg {
  background-color: var(--gray-medium);
}

/* Desktop: Mehr Platz für Screenshots, weniger Padding */
@media screen and (min-width: 1200px) {
  .carousel-section {
    padding: 4rem 100px !important;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .carousel-section {
    padding: 4rem 80px !important;
  }
}

/* Mobile: Weniger Padding */
@media screen and (max-width: 768px) {
  .carousel-section {
    padding: 4rem 20px;
  }
}

@media screen and (orientation: portrait) and (max-width: 480px) {
  .carousel-section {
    padding: 3rem 10px;
  }
}

.carousel-section h2 {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Desktop: Zeige 6 Screenshots gleichzeitig - kleinere Größe */
@media screen and (min-width: 1200px) {
  .carousel-slide {
    min-width: calc(100% / 6);
    padding: 0 3px;
  }
  
  .carousel-slide img {
    max-height: 400px;
    object-fit: contain;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .carousel-slide {
    min-width: calc(100% / 4);
    padding: 0 4px;
  }
  
  .carousel-slide img {
    max-height: 450px;
    object-fit: contain;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .carousel-slide {
    min-width: calc(100% / 3);
    padding: 0 4px;
  }
}

/* Mobile Portrait: 500px Höhe + Preview vom nächsten Bild */
@media screen and (orientation: portrait) and (max-width: 599px) {
  .carousel-slide {
    min-width: 78%;
    padding: 0 2px;
  }
  
  .carousel-slide img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
  }
  
  .carousel-container {
    overflow: visible;
  }
  
  /* Zweites Karussell: Kleinere Slide-Breite wegen schmaleren Bildern */
  #security-carousel .carousel-slide {
    min-width: 62% !important;
    padding: 0 2px !important;
    margin: 0 !important;
  }
  
  #security-carousel .carousel-slide img {
    max-height: 500px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(207, 181, 124, 0.8);
  border: none;
  color: #000;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover {
  background-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--gold-primary);
  width: 30px;
  border-radius: 6px;
}

/* ============================================================================
   SECRET SECTION
   ============================================================================ */
.secret-section {
  background: var(--gradient-gold);
  padding: 4rem 2rem;
  text-align: center;
}

.secret-section h2 {
  color: #000;
  margin-bottom: 2rem;
}

.secret-section p {
  color: var(--gray-dark);
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================================================ */

/* Tablets and smaller laptops */
@media screen and (max-width: 1024px) {
  .sticky-header {
    padding: 0 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets Portrait */
@media screen and (max-width: 768px) {
  .sticky-header {
    height: 65px;
    padding: 0 1rem;
  }
  
  .sticky-header .logo {
    height: 40px;
  }
  
  .sticky-header .download-btn {
    height: 45px;
  }
  
  .hero-section {
    padding: 100px 1.5rem 2rem;
  }
  
  .columntwo,
  .columnthree,
  .columnfour {
    width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .carousel-button.prev {
    left: 10px;
  }
  
  .carousel-button.next {
    right: 10px;
  }
}

/* Mobile Portrait */
@media screen and (orientation: portrait) and (max-width: 480px) {
  .sticky-header {
    height: 60px;
    padding: 0 0.75rem;
  }
  
  .sticky-header .logo {
    height: 35px;
  }
  
  .sticky-header .download-btn {
    height: 40px;
  }
  
  .language-button {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  
  .hero-section {
    padding: 85px 1rem 1.5rem;
    min-height: 400px;
  }
  
  .flags-container {
    gap: 0.45rem !important;
    max-width: 290px !important;
  }
  
  .flag-item {
    width: 40px !important;
    height: 27px !important;
  }
  
  .carousel-section {
    padding: 3rem 1rem;
  }
  
  .features-section,
  .secret-section {
    padding: 3rem 1rem;
  }
}

/* Very small screens */
@media screen and (max-width: 360px) {
  .sticky-header {
    height: 55px;
  }
  
  .sticky-header .logo {
    height: 30px;
  }
  
  .sticky-header .download-btn {
    height: 35px;
  }
}

/* ============================================================================
   FLOATING MUSIC CONTROL BUTTON
   ============================================================================ */
.music-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  
  width: 200px;
  height: 200px;
  
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 12px;
  
  cursor: pointer;
  
  transition: all 0.3s ease;
  opacity: 0.9;
  
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 
              0 4px 12px rgba(0, 0, 0, 0.3);
}

.music-toggle-btn:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 
              0 6px 16px rgba(0, 0, 0, 0.4);
}

.music-toggle-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 
              0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Album Cover Image */
.album-cover {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.album-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Play/Pause Overlay */
.play-pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  
  opacity: 0;
  transition: opacity 0.3s ease;
  
  pointer-events: none;
}

.music-toggle-btn:hover .play-pause-overlay {
  opacity: 1;
}

.play-pause-overlay .music-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  stroke: #FFFFFF;
  fill: rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.music-toggle-btn:hover .play-pause-overlay .music-icon {
  transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  .music-toggle-btn {
    width: 150px;
    height: 150px;
    bottom: 16px;
    right: 16px;
    border-radius: 10px;
  }
  
  .album-cover img {
    border-radius: 10px;
  }
  
  .play-pause-overlay .music-icon {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 480px) {
  .music-toggle-btn {
    width: 100px;
    height: 100px;
    bottom: 12px;
    right: 12px;
    border-radius: 8px;
  }
  
  .album-cover img {
    border-radius: 8px;
  }
  
  .play-pause-overlay .music-icon {
    width: 24px;
    height: 24px;
  }
}

/* Very small screens */
@media screen and (max-width: 360px) {
  .music-toggle-btn {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 10px;
    border-radius: 6px;
  }
  
  .album-cover img {
    border-radius: 6px;
  }
  
  .play-pause-overlay .music-icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================================
   HERO TRUST BOX - Security Notice & Download Button Container
   Modern, Eye-Catching Design for Trust & Conversion
   ============================================================================ */
.hero-trust-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  border-radius: 24px;
  padding: 28px 36px 32px;
  margin: 2rem auto 3rem;
  max-width: 520px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 20px 40px -8px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  animation: trustBoxFloat 6s ease-in-out infinite;
}

.hero-trust-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4285f4, #34a853, #4285f4, #1a73e8);
  background-size: 200% 100%;
  animation: trustGradientSlide 3s ease-in-out infinite;
}

.hero-trust-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes trustBoxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes trustGradientSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Security Badge - Trust Indicator */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
  border-radius: 16px;
  border: 2px solid rgba(26, 115, 232, 0.15);
  position: relative;
  animation: securityPulse 2.5s ease-in-out infinite;
}

@keyframes securityPulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.2),
                0 2px 8px rgba(26, 115, 232, 0.1);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(26, 115, 232, 0),
                0 4px 16px rgba(26, 115, 232, 0.15);
  }
}

.security-badge .shield-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  animation: shieldBounce 2s ease-in-out infinite;
}

@keyframes shieldBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.security-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.security-badge-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a73e8;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.security-badge-link {
  font-size: 0.9rem;
  color: #5f6368;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.security-badge-link:hover {
  color: #1a73e8;
  text-decoration: underline;
}

.security-badge-link::after {
  content: '→';
  font-size: 0.85em;
  transition: transform 0.2s ease;
}

.security-badge-link:hover::after {
  transform: translateX(3px);
}

/* Download Button - Premium Green CTA */
.download-button-container {
  text-align: center;
  margin: 0;
}

.download-app-button {
  display: inline-block;
  background: linear-gradient(135deg, #34a853 0%, #2d9348 50%, #27823f 100%);
  color: white;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 1.35em;
  font-weight: bold;
  box-shadow: 
    0 4px 14px rgba(52, 168, 83, 0.4),
    0 8px 24px rgba(52, 168, 83, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.4;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.download-app-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.download-app-button:hover::before {
  left: 100%;
}

.download-app-button:hover {
  background: linear-gradient(135deg, #3dba5e 0%, #34a853 50%, #2d9348 100%);
  box-shadow: 
    0 6px 20px rgba(52, 168, 83, 0.5),
    0 12px 32px rgba(52, 168, 83, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.02);
}

.download-app-button:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 
    0 3px 10px rgba(52, 168, 83, 0.4),
    0 6px 16px rgba(52, 168, 83, 0.2);
}

.download-button-main-text {
  display: block;
  font-size: 1em;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.download-button-sub-text {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

/* Download Info Text - File size and location hint */
.download-info {
  margin-top: 16px;
  text-align: center;
}

.download-info-text {
  display: block;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin: 2px 0;
}

/* Trust Box Mobile Responsive */
@media (max-width: 768px) {
  .hero-trust-box {
    padding: 22px 24px 26px;
    margin: 1.5rem 1rem 2.5rem;
    max-width: calc(100% - 2rem);
    border-radius: 20px;
  }
  
  .security-badge {
    padding: 12px 16px;
    gap: 10px;
    border-radius: 14px;
  }
  
  .security-badge .shield-icon {
    width: 28px;
    height: 28px;
  }
  
  .security-badge-title {
    font-size: 1.05rem;
  }
  
  .security-badge-link {
    font-size: 0.85rem;
  }
  
  .download-app-button {
    font-size: 1.15em;
    padding: 18px 36px;
  }
}

@media (max-width: 480px) {
  .hero-trust-box {
    padding: 18px 18px 22px;
    border-radius: 18px;
  }
  
  .security-badge {
    flex-direction: column;
    text-align: center;
    padding: 14px;
    gap: 8px;
  }
  
  .security-badge-content {
    align-items: center;
  }
  
  .security-badge-title {
    font-size: 1rem;
  }
  
  .download-app-button {
    font-size: 1.05em;
    padding: 16px 30px;
    width: 100%;
  }
}

/* RTL Support for Arabic and Hebrew */
[dir="rtl"] .security-badge-link::after {
  content: '←';
}

[dir="rtl"] .security-badge-link:hover::after {
  transform: translateX(-3px);
}

/* ============================================================================
   FAQ ACCORDION SECTION
   ============================================================================ */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  background: transparent;
}

.faq-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: var(--gold-primary);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #000;
  border: none;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.faq-question:hover::before {
  left: 100%;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(207, 181, 124, 0.3);
}

.faq-question span {
  flex: 1;
  padding-right: 15px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: #000;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--gray-medium);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 25px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1em;
  margin: 0;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .faq-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 1em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.6em;
    letter-spacing: 1px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.95em;
  }

  .faq-answer p {
    font-size: 0.9em;
  }
}


