/* ========== ЄPhone — Design system + Animations ========== */
:root {
  --bg-dark: #060912;
  --bg-mid: #0d1220;
  --bg-card: rgba(13, 18, 32, 0.88);
  --gradient-bg: linear-gradient(165deg, #060912 0%, #0d1220 35%, #0f1424 60%, #080c14 100%);
  --accent: #00d4ff;
  --accent-dim: #00a8cc;
  --accent-glow: rgba(0, 212, 255, 0.45);
  --accent-soft: rgba(0, 212, 255, 0.15);
  --text: #ffffff;
  --text-muted: #a8bed8;
  --radius: 20px;
  --radius-btn: 14px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-glow: 0 0 60px -12px var(--accent-glow);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated gradient background */
body::before {
  content: '';
  position: fixed;
  inset: -50%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(88, 28, 135, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 120, 200, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% { opacity: 0.9; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}

a:hover {
  color: #5ce1ff;
  text-shadow: 0 0 20px var(--accent-glow);
}

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

/* ========== Reveal animations (triggered by JS .in-view) ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding: 1rem 2rem;
  transition: background var(--transition), box-shadow var(--transition);
  animation: headerSlide 0.6s var(--transition);
}

@keyframes headerSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  transition: transform var(--transition);
}

.logo:hover { transform: scale(1.02); }

.logo span {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--accent); }

/* ========== Main ========== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-align: center;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #00b8e6 50%, var(--accent-dim) 100%);
  background-size: 200% 200%;
  color: #03090e;
  box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px var(--accent-glow), 0 0 0 1px rgba(0,212,255,0.3);
  filter: brightness(1.08);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ========== Hero ========== */
.hero {
  text-align: center;
  padding: 4rem 0 5rem;
  position: relative;
}

.hero .hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  animation: fadeIn 0.8s ease, badgePulse 3s ease-in-out infinite 1s;
}

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

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  animation: fadeIn 0.8s ease 0.1s both;
}

.hero .tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  animation: fadeIn 0.8s ease 0.2s both;
}

.hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease 0.3s both;
}

.hero .hero-stats span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero .hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.hero .cta {
  margin-top: 0.5rem;
  animation: fadeIn 0.8s ease 0.4s both;
}

.hero .cta .btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ========== Features ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px var(--accent-glow);
  transition: transform var(--transition);
}

.feature-card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ========== Stats bar ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 4rem;
  backdrop-filter: blur(10px);
}

.stats-bar .stat {
  text-align: center;
}

.stats-bar .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  text-shadow: 0 0 20px var(--accent-glow);
}

.stats-bar .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ========== Design showcase ========== */
.design-showcase {
  text-align: center;
  padding: 2rem 0;
}

.design-gallery {
  margin-bottom: 2rem;
}

.design-showcase .phone-mockup,
.design-showcase .phone-mockup-main {
  max-width: 300px;
  margin: 0 auto 1.5rem;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow);
  transition: transform var(--transition);
  animation: floatPhone 6s ease-in-out infinite;
}

.design-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 620px;
  margin: 0 auto;
  justify-content: center;
}

.design-showcase .phone-mockup-small {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 212, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.design-showcase .phone-mockup-small:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 32px var(--accent-glow);
}

.design-showcase .phone-mockup-small img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.design-showcase .phone-mockup:hover,
.design-showcase .phone-mockup-main:hover {
  transform: translateY(-8px) scale(1.02);
  animation: none;
}

.design-showcase .phone-mockup img,
.design-showcase .phone-mockup-main img {
  display: block;
  width: 100%;
}

.design-showcase .design-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.design-showcase .design-features span {
  padding: 0.5rem 1rem;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.design-showcase p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* Галерея телефонів (блок з 6 фото) */
.phones-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.phones-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.phones-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
}

.phones-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ========== Specs table ========== */
.specs-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.specs-table th,
.specs-table td {
  padding: 1rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table th {
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.specs-table tr:last-child td { border-bottom: none; }

.specs-table tbody tr {
  transition: background var(--transition);
}

.specs-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ========== Model cards ========== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.25);
}

.model-card .model-image {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.model-card .model-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,212,255,0.06) 100%);
  pointer-events: none;
}

.model-card .model-image img {
  max-height: 200px;
  object-fit: contain;
  transition: transform var(--transition);
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-card .model-gallery {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.model-card .model-gallery img {
  width: 48px;
  height: 48px;
  max-height: none;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), border-color var(--transition);
}

.model-card .model-gallery img:hover {
  transform: scale(1.15);
  border-color: var(--accent);
}

.model-card .model-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #03090e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}

.model-card .model-body {
  padding: 1.75rem;
}

.model-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.model-card .model-tag {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.model-card .price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--accent-glow);
}

.model-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.model-card ul li {
  padding: 0.3rem 0;
  padding-left: 1.35rem;
  position: relative;
}

.model-card ul li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.model-card .btn {
  width: 100%;
  padding: 1rem;
}

/* ========== Testimonials ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 212, 255, 0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-author-info {
  flex: 1;
  min-width: 0;
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card .author span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== CTA block ========== */
.cta-block {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--accent-soft) 0%, transparent 40%);
  pointer-events: none;
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(5%, 5%); opacity: 0.8; }
}

.cta-block h2 {
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn {
  position: relative;
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
}

.cta-urgency {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 1rem;
  font-weight: 600;
}

/* ========== Footer ========== */
.site-footer {
  margin-top: 5rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer .nav {
  justify-content: center;
  margin-bottom: 1rem;
}

/* ========== Form styles ========== */
.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(6, 9, 18, 0.9);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group .error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-group input.invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ========== Page hero (inner pages) ========== */
.page-hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  font-weight: 800;
  animation: fadeIn 0.6s ease;
}

.page-hero p {
  color: var(--text-muted);
  animation: fadeIn 0.6s ease 0.1s both;
}

/* ========== Policy / Contact content ========== */
.policy-content,
.contact-content {
  max-width: 720px;
  margin: 0 auto;
}

.policy-content h2,
.contact-content h2 {
  font-size: 1.3rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.policy-content p,
.contact-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.contact-info {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.contact-info p {
  margin-bottom: 0.6rem;
}

/* ========== Checkout ========== */
.checkout-form {
  max-width: 720px;
  margin: 0 auto;
}

.checkout-order-block {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.checkout-block-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 700;
}

.checkout-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-model-option {
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
  border: 2px solid rgba(0, 212, 255, 0.25);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.checkout-model-option:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.checkout-model-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 6px 24px var(--accent-glow);
}

.checkout-model-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-model-image {
  display: block;
  aspect-ratio: 4/3;
  background: var(--bg-mid);
  overflow: hidden;
}

.checkout-model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-model-name {
  display: block;
  padding: 0.6rem 0.75rem 0.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.checkout-model-price {
  display: block;
  padding: 0 0.75rem 0.75rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.checkout-quantity-total {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.5rem;
}

.checkout-quantity-group {
  margin-bottom: 0;
  max-width: 100px;
}

.checkout-quantity-group input {
  text-align: center;
  font-weight: 700;
}

.checkout-total {
  flex: 1;
  text-align: right;
}

.checkout-total-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.checkout-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.checkout-form .card-fields {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.checkout-form .card-fields h3 {
  margin-bottom: 1.15rem;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 700;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .site-header .wrap { padding: 0; }
  main { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .hero .hero-stats { gap: 1.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .checkout-models { grid-template-columns: 1fr; }
  .checkout-quantity-total { flex-direction: column; align-items: stretch; }
  .checkout-total { text-align: left; }
  .checkout-quantity-group { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
