/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a1a1a;
  overflow-x: hidden;
  position: relative;
}

/* Removed: Body-level background images - now applied per section */

h1,
h2,
h3,
h4 {
  font-family: "Orbitron", "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #667eea;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

/* ========================================
   Header & Navigation
   ======================================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  font-family: "Orbitron", sans-serif;
}

.chrome-logo-nav {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(66, 133, 244, 0.4));
}

.logo i {
  font-size: 1.8rem;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #667eea;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

/* ========================================
   Hero Section
   ======================================== */

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
  width: 100%;
}

#hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/xiiker.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.chrome-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chrome-logo-hero {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 8px rgba(66, 133, 244, 0.5));
}

.chrome-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.chrome-logo-badge {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(66, 133, 244, 0.3));
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .headline {
  display: block;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.hero-content .subtitle {
  display: block;
  font-size: 1.8rem;
  color: #667eea;
  font-weight: 400;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trust-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-signals i {
  color: #4caf50;
  font-size: 1.1rem;
}

.hero-visual {
  margin-top: 3rem;
  position: relative;
}

.hero-screenshot {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-visual-badge {
  position: absolute;
  top: -20px;
  right: 10%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   CTA Buttons
   ======================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: "Montserrat", Arial, sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
}

.cta-button.large {
  padding: 22px 48px;
  font-size: 1.3rem;
}

/* ========================================
   Problem-Solution Section
   ======================================== */

#problem-solution {
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}

#problem-solution::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/budaors.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

#problem-solution > * {
  position: relative;
  z-index: 1;
}

#problem-solution h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-column {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problems h3 {
  color: #ff5252;
}

.solutions h3 {
  color: #4caf50;
}

.comparison-column ul {
  list-style: none;
}

.comparison-column li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
}

.problems li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff5252;
  font-weight: bold;
}

.solutions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pyramid-arrow {
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 60px solid #667eea;
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
  animation: pyramidPulse 2s ease-in-out infinite;
  position: relative;
}

.pyramid-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.8), transparent);
  border-radius: 50%;
  animation: pyramidGlow 2s ease-in-out infinite;
}

@keyframes pyramidPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    transform: scale(1) translateX(0);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.9))
      drop-shadow(0 0 40px rgba(118, 75, 162, 0.6));
    transform: scale(1.05) translateX(8px);
  }
}

@keyframes pyramidGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
  }
}

/* ========================================
   Features Grid
   ======================================== */

#features {
  position: relative;
  overflow: hidden;
}

#features::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/xxiiker.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

#features > * {
  position: relative;
  z-index: 1;
}

#features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: #2a2a2a;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ========================================
   How It Works Section
   ======================================== */

#how-it-works {
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/kobanya.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

#how-it-works > * {
  position: relative;
  z-index: 1;
}

#how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.step-visual {
  font-size: 4rem;
  color: #667eea;
  opacity: 0.3;
}

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

/* ========================================
   FAQ Section
   ======================================== */

#faq {
  position: relative;
  overflow: hidden;
}

#faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/erd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

#faq > * {
  position: relative;
  z-index: 1;
}

#faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(102, 126, 234, 0.1);
}

.faq-question h3 {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question .fa-question-circle {
  color: #667eea;
  font-size: 1.3rem;
}

.faq-toggle {
  color: #667eea;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1400px; /* Increased for comprehensive legal FAQ with EU/HU law */
}

.faq-answer p {
  padding: 0 25px 20px 55px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Legal FAQ specific nested content padding override */
.faq-answer div {
  margin-left: 55px;
  margin-right: 25px;
}

/* ========================================
   Final CTA Section
   ======================================== */

#final-cta {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/torokbalint.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(30%);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

#final-cta > * {
  position: relative;
  z-index: 1;
}

.cta-box {
  background: #2a2a2a;
  padding: 60px 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #667eea;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* ========================================
   Footer
   ======================================== */

footer {
  background: #0d0d0d;
  padding: 0px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 8px 0;
}

.footer-credits {
  font-size: 0.95rem;
  margin-top: 12px !important;
}

.footer-credits strong {
  color: #667eea;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  /* Hide decorative background images on mobile for performance */
  #hero::before,
  #problem-solution::before,
  #features::before,
  #how-it-works::before,
  #faq::before,
  #final-cta::before {
    display: none;
  }

  .hero-content .headline {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.4rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-visual {
    text-align: center;
    width: 100%;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-arrow {
    margin: 25px 0;
    padding: 20px 10px;
  }

  .pyramid-arrow {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 45px solid #667eea;
    animation: pyramidPulseMobile 2s ease-in-out infinite;
  }

  @keyframes pyramidPulseMobile {
    0%,
    100% {
      filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
      transform: rotate(90deg) scale(1) translateX(0);
    }
    50% {
      filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.9))
        drop-shadow(0 0 40px rgba(118, 75, 162, 0.6));
      transform: rotate(90deg) scale(1.05) translateX(8px);
    }
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
  section {
    padding: 50px 20px;
  }

  /* Show Hamburger on Mobile */
  .hamburger {
    display: flex;
  }

  /* Mobile Navigation Menu */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(102, 126, 234, 0.1);
    padding-left: 40px;
  }

  #hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .chrome-badge {
    padding: 10px 20px;
    margin-bottom: 1.25rem;
  }

  .chrome-logo-hero {
    width: 24px;
    height: 24px;
  }

  .chrome-badge span {
    font-size: 0.9rem;
  }

  .hero-content .headline {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-content .subtitle {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    padding: 0 10px;
  }

  .trust-signals {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
  }

  .trust-signals span {
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
  }

  .cta-button {
    padding: 18px 32px;
    font-size: 1.05rem;
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }

  .cta-button.large {
    padding: 20px 36px;
    font-size: 1.15rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-card i {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.4rem;
    margin: 1rem 0 0.75rem 0;
  }

  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  h2 {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-visual {
    margin-top: 2.5rem;
    padding: 0 15px;
  }

  .hero-screenshot {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  }

  .hero-visual-badge {
    position: static;
    margin: 25px auto 0;
    display: inline-flex;
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .steps-container {
    gap: 30px;
  }

  .step {
    padding: 30px 25px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step h3 {
    font-size: 1.3rem;
    margin: 1.25rem 0 0.75rem 0;
  }

  .step p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .comparison-grid {
    gap: 30px;
  }

  .comparison-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .comparison-column ul li {
    font-size: 1rem;
    line-height: 1.6;
    padding: 12px 0 12px 35px;
  }

  .cta-box {
    padding: 45px 30px;
  }

  .cta-box h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .faq-item {
    padding: 25px 20px;
  }

  .faq-question {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Mobile-specific FAQ answer adjustments */
  .faq-answer p {
    padding: 0 15px 15px 45px;
  }

  .faq-answer div {
    margin-left: 45px;
    margin-right: 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 2000px; /* More height for mobile (longer vertical content with EU/HU law details) */
  }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  section {
    padding: 40px 15px;
  }

  #hero {
    padding: 90px 0 50px 0;
  }

  .hero-content {
    padding: 0 15px;
  }

  .chrome-badge {
    padding: 8px 18px;
    margin-bottom: 1rem;
  }

  .chrome-logo-hero {
    width: 22px;
    height: 22px;
  }

  .chrome-badge span {
    font-size: 0.85rem;
  }

  .chrome-logo-badge {
    width: 18px;
    height: 18px;
  }

  .hero-content .headline {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 1.05rem;
    padding: 0 5px;
    margin-bottom: 1.5rem;
  }

  .trust-signals span {
    font-size: 0.95rem;
    padding: 6px 14px;
  }

  .hero-visual {
    padding: 0 10px;
    margin-top: 2rem;
  }

  .hero-screenshot {
    border-radius: 8px;
  }

  .hero-visual-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
  }

  .cta-button.large {
    padding: 18px 32px;
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.9rem !important;
    padding: 0 5px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card i {
    font-size: 2.2rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .step {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .step-visual {
    text-align: center;
    width: 100%;
  }

  .cta-box {
    padding: 35px 20px;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .cta-box p {
    font-size: 1.05rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
