/* ═══════════════════════════════════════════════════════════
   HOME PAGE STYLES
   Shared styles for all homepage variants (EN + language pages)
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, var(--blue-50) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Split hero layout (EN page: text + video side-by-side) */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.hero-video {
  flex-shrink: 0;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--blue-100);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-600);
  margin-bottom: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero title — default: centered (language pages) */
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Split hero: smaller title, left-aligned */
.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Hero subtitle */
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
}

.hero-text .hero-sub {
  margin: 0 0 40px;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--slate-900);
  color: white;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.hero-cta svg {
  width: 24px;
  height: 24px;
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate-400);
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-text .social-proof {
  justify-content: flex-start;
}

.social-proof-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-500);
}

.social-proof-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
}

.social-proof-divider {
  width: 1px;
  height: 24px;
  background: var(--slate-200);
}

/* ─── PHONE SHOWCASE ─── */
.showcase {
  padding: 0 24px 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.phone-frame {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  flex-shrink: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.phone-frame:hover {
  transform: translateY(-8px);
}

.phone-frame img,
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ─── TRUST BADGES ─── */
.trust-section {
  padding: 60px 24px 80px;
  text-align: center;
}

.trust-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 40px;
}

.trust-available a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 600;
}

.trust-available a:hover {
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge svg {
  height: 64px;
  width: auto;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 24px;
  background: var(--slate-50);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--slate-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--slate-900);
}

.feature-card p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── HIGHLIGHT SECTION ─── */
.highlight {
  padding: 100px 24px;
}

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

.highlight-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.highlight-content p {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
}

.highlight-list li .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-list li .check svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-phone {
  display: flex;
  justify-content: center;
}

.highlight-phone .phone-frame {
  width: 280px;
}

.highlight-phone-duo {
  gap: 16px;
  align-items: center;
}

/* ─── PRIVACY STRIP ─── */
.privacy-strip {
  padding: 60px 24px;
  background: white;
}

.privacy-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
}

.privacy-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-icon svg {
  width: 22px;
  height: 22px;
  stroke: #059669;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FAQ ─── */
.faq {
  padding: 100px 24px;
  background: var(--slate-50);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-900);
  text-align: left;
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─── EU BANNER ─── */
.eu-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  text-align: center;
  color: white;
}

.eu-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.eu-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.eu-banner p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
}

.eu-banner .hero-cta {
  background: white;
  color: var(--blue-700);
}

.eu-banner .hero-cta:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .features-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .highlight-list {
    align-items: center;
  }

  .highlight-phone {
    order: -1;
  }

  .highlight-phone-duo {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .hero-text h1 {
    font-size: clamp(40px, 6vw, 72px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text .hero-sub {
    margin: 0 auto 40px;
  }

  .hero-text .social-proof {
    justify-content: center;
  }

  .hero-video {
    order: -1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .features-grid,
  .features-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .phone-frame {
    width: 85%;
    max-width: 320px;
    border-radius: 20px;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .trust-badges {
    gap: 20px;
  }

  .trust-badge svg {
    height: 52px;
  }

  .trust-available {
    font-size: 14px;
    padding: 10px 20px;
  }

  .privacy-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .privacy-item {
    flex-direction: column;
    gap: 10px;
  }

  .social-proof {
    flex-direction: column;
    gap: 12px;
  }

  .social-proof-divider {
    display: none;
  }
}
