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

:root {
  --primary: #FF5E1E;
  --accent-start: #EB3C00;
  --accent-end: #FCAB29;
  --text: #F7F7F8;
  --text-dark: #2d2d2d;
  --card-bg: rgba(255,255,255,0.12);
  --card-hover: rgba(255,255,255,0.22);
  --border: rgba(255,255,255,0.25);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: #c93800;
  background-image:
    radial-gradient(ellipse at top right, rgba(252,171,41,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(180,30,0,0.45) 0%, transparent 55%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────── */
header {
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(180, 45, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.88;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 1; text-decoration: underline; }

/* ─── MAIN ────────────────────────────────────── */
main {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 5%;
  width: 100%;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 96px;
}

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

.hero-image {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 100%;
  max-width: 260px;
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.12);
  display: block;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-text > p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.55); }

section { margin-bottom: 96px; }

section > h2 {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  opacity: 0.78;
  font-size: 16px;
  margin-bottom: 40px;
}

/* ─── FEATURES GRID ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: background 0.25s, transform 0.25s;
}
.feature-card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.65;
}

/* ─── VIDEO ───────────────────────────────────── */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--card-hover); }

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.88;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
.faq-a a { color: var(--accent-end); }

/* ─── SUPPORT ─────────────────────────────────── */
.support-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.support-box p { opacity: 0.9; margin-bottom: 32px; font-size: 17px; }

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-link {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 28px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.contact-link:hover { background: rgba(0,0,0,0.45); transform: translateY(-2px); }

/* ─── LEGAL PAGES ─────────────────────────────── */
.legal-wrap {
  background: #fff;
  color: var(--text-dark);
  border-radius: 20px;
  padding: 48px;
}
.legal-wrap h1 { font-size: 36px; color: var(--primary); margin-bottom: 8px; text-align: left; }
.legal-updated { font-size: 13px; color: #888; margin-bottom: 30px; }
.legal-wrap h2, .legal-wrap h3 { margin: 32px 0 12px; font-size: 20px; color: #1a1a1a; text-align: left; }
.legal-wrap p, .legal-wrap li { margin-bottom: 12px; font-size: 15px; line-height: 1.8; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap a { color: var(--primary); }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px 5%;
  font-size: 14px;
  opacity: 0.72;
}

.footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

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

@media (max-width: 680px) {
  header { flex-direction: column; gap: 12px; padding: 14px 5%; }
  nav { justify-content: center; gap: 14px; }

  .hero { flex-direction: column-reverse; gap: 32px; margin-bottom: 64px; text-align: center; }
  .hero-image { flex: 0 0 auto; }
  .phone-mockup { max-width: 200px; }
  .hero-text > p { margin-left: auto; margin-right: auto; }

  h1 { font-size: 34px; }
  section > h2 { font-size: 26px; }

  .features-grid { grid-template-columns: 1fr; }
  .legal-wrap { padding: 24px; }
}
