/* ===== LOCAL FONTS ===== */

/* Bebas Neue - latin-ext */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Bebas Neue - latin */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Outfit - latin-ext (variable, 300-700) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Outfit - latin (variable, 300-700) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== ARCTIC FROST THEME ===== */
:root {
  --c-primary: #4a6fa5;
  --c-accent: #d4e4f7;
  --c-bg-dark: #edf2f7;
  --c-bg-light: #fafafa;
  --c-surface: #dce6f0;
  --c-text: #1a2a3a;
  --c-text-muted: #6080a0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --hero-gradient: linear-gradient(135deg, #edf2f7 0%, #d4e4f7 50%, #c8ddf0 100%);
  --card-bg: rgba(74,111,165,0.06);
  --card-border: rgba(74,111,165,0.12);
  --is-dark: 0;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg-dark);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(220,230,240,0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  transition: background 0.5s ease;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .ps-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .ps-icon svg { width: 22px; height: 22px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--c-primary); }
.nav-cta {
  background: var(--c-primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  opacity: 1 !important;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,255,0.4); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,102,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(0,255,255,0.05) 0%, transparent 50%);
  animation: heroShift 20s ease-in-out infinite;
}
@keyframes heroShift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(2%, -2%) rotate(1deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--c-primary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease-out;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out 0.1s both;
}
.hero h1 span { color: var(--c-primary); }
.hero p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.8;
  animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-primary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-text);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--card-border);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-size: 16px;
  opacity: 0.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.adv-card:hover::before { transform: scaleX(1); }
.adv-card:hover { transform: translateY(-6px); border-color: var(--c-primary); }
.adv-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(74,111,165,0.1);
  color: var(--c-primary);
}
.adv-icon svg { width: 28px; height: 28px; }
.adv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.adv-card p { font-size: 14px; opacity: 0.7; line-height: 1.6; }

/* ===== REGIONS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.region-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.region-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--c-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.region-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.region-flag img {
  width: 64px;
  height: auto;
  border-radius: 4px;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}
.region-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.region-card p { font-size: 13px; opacity: 0.6; margin-bottom: 16px; }
.region-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--c-primary);
  color: #fff;
}

/* ===== INSTRUCTIONS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 40px 28px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  counter-increment: step;
  transition: all 0.4s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--c-primary); }
.step::before {
  content: counter(step);
  position: absolute;
  top: -18px; left: 28px;
  width: 40px; height: 40px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step p { font-size: 14px; opacity: 0.7; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  transition: border-color 0.3s;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
  gap: 16px;
}
.faq-q:hover { color: var(--c-primary); }
.faq-q .arrow {
  transition: transform 0.3s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.faq-q .arrow svg { width: 20px; height: 20px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--c-primary); }
.review-stars { color: #ffc107; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; display: flex; gap: 2px; }
.review-stars svg { width: 18px; height: 18px; fill: #ffc107; stroke: #ffc107; }
.review-stars svg.empty { fill: none; stroke: #ccc; }
.review-text { font-size: 15px; opacity: 0.85; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; opacity: 0.5; }

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid var(--card-border);
  font-size: 14px;
  opacity: 0.5;
}
.footer a { color: var(--c-primary); opacity: 1; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 40px 80px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 30px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--c-primary);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 90px 20px 60px; }
  .section { padding: 60px 20px; }
  .cta-banner { margin: 0 20px 60px; padding: 40px 24px; }
}
