/* =====================
   Base styles & layout
   ===================== */

:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-soft: #020617;
  --primary: #6366f1;
  --primary-soft: #4f46e5;
  --accent: #22c55e;
  --danger: #ef4444;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --radius-lg: 1.5rem;
  --radius-md: 0.85rem;
  --radius-pill: 999px;
  --shadow-soft: 0 26px 80px rgba(15, 23, 42, 0.9);
  --shadow-subtle: 0 18px 40px rgba(15, 23, 42, 0.65);
  --blur-strong: blur(26px);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s cubic-bezier(0.4, 0.0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #1d4ed8 0, transparent 55%),
    radial-gradient(circle at bottom right, #14b8a6 0, transparent 55%),
    #020617;
  background-attachment: fixed;
  line-height: 1.5;
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 999px;
}
body::-webkit-scrollbar-track {
  background: #020617;
}

/* Container (slightly wider on PC) */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================
   Header & navigation
   ===================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  transition: background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(79, 70, 229, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(16, 185, 129, 0.35),
      transparent 55%
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.65);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.site-header.scrolled::before {
  opacity: 1;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

/* Logo */
.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-inline-end: 0.9rem;
}

.logo span {
  color: var(--primary);
}

.logo::after {
  content: "";
  position: absolute;
  right: 0;
  inset-block: 50%;
  width: 4px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #eab308);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.3rem;
  border-radius: 999px;
  position: relative;
  transition: color var(--transition-fast),
    background-color var(--transition-fast), transform 0.15s ease-out;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0.5rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, #22c55e, #6366f1);
  transition: transform 0.22s ease-out;
}

.nav-links a:hover {
  color: #e5e7eb;
  transform: translateY(-1px);
}

.nav-links a.active {
  color: #f9fafb;
  background: rgba(99, 102, 241, 0.18);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(
      circle at top left,
      rgba(99, 102, 241, 0.36),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.96);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =====================
   Hero
   ===================== */

.hero {
  position: relative;
  padding-top: 5.5rem; /* space for fixed header */
  padding-bottom: 4.5rem;
  min-height: 100vh; /* full height on PC */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.3), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text {
  max-width: 36rem;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(90deg, #e5e7eb, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.35rem 0.7rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.3),
      transparent 65%
    ),
    rgba(15, 23, 42, 0.7);
}

/* counters inside hero badges */
.hero-badges .counter {
  font-weight: 600;
  color: #f9fafb;
  margin-right: 0.15rem;
  display: inline-block;
  min-width: 4ch;
}

/* Hero visual */
.hero-visual {
  position: relative;
  justify-self: flex-end;
}

.device-card {
  width: min(360px, 100%);
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.2),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(129, 140, 248, 0.3),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.device-header {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dot-red {
  background: #f97373;
}
.dot-yellow {
  background: #facc15;
}
.dot-green {
  background: #22c55e;
}

.device-screen {
  border-radius: 1.1rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.9rem 0.9rem 0.85rem;
  position: relative;
  overflow: hidden;
}

.channel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pill {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: radial-gradient(
      circle at top left,
      rgba(96, 165, 250, 0.8),
      rgba(79, 70, 229, 0.85)
    );
  color: #f9fafb;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.15);
}

.pill:nth-child(2) {
  background: radial-gradient(
      circle at top left,
      rgba(248, 113, 113, 0.8),
      rgba(234, 179, 8, 0.9)
    );
}
.pill:nth-child(3) {
  background: radial-gradient(
      circle at top left,
      rgba(244, 114, 182, 0.8),
      rgba(168, 85, 247, 0.9)
    );
}
.pill:nth-child(4) {
  background: radial-gradient(
      circle at top left,
      rgba(45, 212, 191, 0.8),
      rgba(34, 197, 94, 0.9)
    );
}

.stream-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 5px rgba(248, 171, 78, 0.25);
  animation: pulse 1.4s infinite;
}

.stream-preview {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 145px;
  margin-bottom: 0.8rem;
  background:
    linear-gradient(135deg, #0f172a, #1d4ed8),
    radial-gradient(circle at top right, #22c55e, transparent 60%);
}
.preview-gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.preview-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), transparent 60%),
    radial-gradient(circle at bottom right, rgba(8, 47, 73, 0.7), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.preview-overlay {
  position: relative;
  z-index: 1;
  inset: 0;
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 60%);
}

.preview-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.1rem;
}

.preview-meta {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin: 0;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.progress-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.6);
  overflow: hidden;
}

.progress {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #eab308);
  animation: progressSweep 5s infinite alternate;
}

.time-stamp {
  white-space: nowrap;
  opacity: 0.9;
}

.device-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* Floating orbs */
.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.7;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.9), transparent 65%);
  top: -30px;
  right: -40px;
  animation: float 14s infinite ease-in-out;
}

.orb-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.85), transparent 65%);
  bottom: -20px;
  left: 10%;
  animation: float 11s infinite ease-in-out;
}

.orb-3 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.8), transparent 65%);
  top: 40%;
  left: -30px;
  animation: float 17s infinite ease-in-out;
}

/* =====================
   Buttons
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-med),
    border-color var(--transition-med),
    color var(--transition-med);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: #0f172a;
  box-shadow: 0 16px 40px rgba(55, 65, 81, 0.8);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
}

.btn-ghost:hover {
  background: radial-gradient(
      circle at top left,
      rgba(96, 165, 250, 0.36),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.98);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-full {
  width: 100%;
}

/* =====================
   Sections shared
   ===================== */

.section {
  padding: 4.5rem 0;
}

.section:nth-of-type(odd) {
  background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.94),
      rgba(15, 23, 42, 0.96)
    );
  border-block: 1px solid rgba(15, 23, 42, 0.96);
}

.section:nth-of-type(even) {
  background: radial-gradient(
      circle at top left,
      rgba(15, 23, 42, 0.98),
      #020617
    );
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* What is / features */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  border-radius: var(--radius-md);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.2),
      transparent 65%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-subtle);
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Simple image gallery */
.device-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.device-image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #020617;
}

.device-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Pricing */
.section-pricing .section-intro {
  margin-bottom: 2.4rem;
}

.pricing-grid {
  display: grid;
  gap: 1.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.26),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.98);
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card-featured {
  border-color: rgba(250, 204, 21, 0.9);
  background: radial-gradient(
      circle at top left,
      rgba(234, 179, 8, 0.26),
      transparent 60%
    ),
    rgba(15, 23, 42, 1);
  transform: translateY(-2px);
}

.pricing-card-featured .btn-primary {
  background: linear-gradient(135deg, #facc15, #22c55e);
}

.pricing-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.pricing-tagline {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}

.price-main {
  font-size: 1.6rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

.pricing-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(250, 204, 21, 0.1);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.6);
}

/* Steps */
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.2),
      transparent 65%
    ),
    rgba(15, 23, 42, 0.98);
  padding: 1.2rem 1.4rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: radial-gradient(circle at top left, #6366f1, #22c55e);
  color: #0f172a;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
}

.step-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.section-faq .section-intro {
  margin-bottom: 1.8rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: inherit;
  cursor: pointer;
  font-size: 0.92rem;
}

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 9px;
  height: 1px;
  border-radius: 999px;
  background: #e5e7eb;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.faq-answer p {
  margin: 0.8rem 0 0.95rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contact */
.section-contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #6366f1);
}

.contact-form {
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top left,
      rgba(79, 70, 229, 0.3),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5);
  background: rgba(15, 23, 42, 1);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.98);
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: var(--shadow-subtle);
}

.blog-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.blog-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.blog-card p {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.blog-link {
  font-size: 0.8rem;
  text-decoration: none;
  color: #93c5fd;
  position: relative;
  padding-bottom: 0.1rem;
}

.blog-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, #93c5fd, #a855f7);
  transition: width 0.22s ease;
}

.blog-link:hover::after {
  width: 100%;
}

/* Footer */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  padding: 2.4rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
  text-align: center;
}

.footer-brand p {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-logo {
  font-weight: 800;
}

.footer-logo span {
  color: var(--primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================
   Floating WhatsApp
   ===================== */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.whatsapp-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f9fafb; /* white bubble */
  position: relative;
  display: block;
}

/* Phone/chat shape inside the white circle */
.whatsapp-logo::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 12px;
  height: 10px;
  border-radius: 8px 8px 8px 2px;
  border: 2px solid #22c55e;
  border-top-color: #22c55e;
  transform: rotate(15deg);
}

/* Little phone “handle” tail */
.whatsapp-logo::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  border: 2px solid #22c55e;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(25deg);
}


/* =====================
   Reveal animations
   ===================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.23, 0.52, 0.34, 0.99),
    transform 0.7s cubic-bezier(0.23, 0.52, 0.34, 0.99);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.28s;
}

/* =====================
   Keyframes
   ===================== */

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -14px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes progressSweep {
  0% {
    width: 30%;
  }
  100% {
    width: 80%;
  }
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-visual {
    justify-self: flex-start;
  }

  .features-grid,
  .pricing-grid,
  .blog-grid,
  .device-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0.85rem;
    top: 4.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.9);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 0.4rem 0.2rem;
  }

  .hero {
    padding-top: 5.1rem;
    min-height: auto;
  }

  .section {
    padding: 3.4rem 0;
  }

  .features-grid,
  .pricing-grid,
  .blog-grid,
  .device-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .device-card {
    max-width: 320px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges {
    gap: 0.35rem;
  }

  .steps-list {
    gap: 1.1rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }
}
/* =========================================================
   ADD THIS AT THE END OF YOUR CURRENT styles.css
   (Hero contrast + new Pricing cards like your screenshot + Blog CTA button)
   ========================================================= */

/* =====================
   HERO - improve contrast (keep original colors)
   ===================== */

.hero-bg-overlay {
  /* Darker base + same blue/green glow => text becomes more readable */
  opacity: 1;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.26), transparent 58%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.92));
}

.hero-text {
  /* Subtle glass panel behind text */
  position: relative;
  padding: 1.05rem 1.05rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(2, 6, 23, 0.44);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 52px rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-title {
  text-shadow: 0 12px 42px rgba(2, 6, 23, 0.72);
}

.hero-subtitle {
  /* Slightly brighter than --text-muted for hero only */
  color: rgba(229, 231, 235, 0.78);
  text-shadow: 0 10px 34px rgba(2, 6, 23, 0.6);
}

@media (max-width: 768px) {
  .hero-text {
    padding: 0.85rem 0.85rem 0.95rem;
  }
}

/* =====================
   PRICING - photo style (4 cards)
   ===================== */

.pricing-grid-v2 {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 960px) {
  .pricing-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-grid-v2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-card-v2 {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.25rem 1.1rem 1.15rem;
  border: 2px solid rgba(99, 102, 241, 0.55);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.52);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.pricing-card-v2::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.14), transparent 60%);
  opacity: 0.95;
  pointer-events: none;
}

.pricing-card-v2 > * {
  position: relative;
  z-index: 1;
}

.pricing-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.85);
  box-shadow: 0 34px 92px rgba(2, 6, 23, 0.65);
}

.pricing-card-v2-header {
  text-align: center;
  padding-top: 0.15rem;
}

.pricing-plan-v2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-line-v2 {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #6366f1);
  margin: 0.75rem auto 0.8rem;
}

.pricing-price-v2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1;
  font-weight: 900;
  color: #4f46e5;
}

.pricing-price-number {
  display: inline-block;
}

.pricing-price-currency {
  font-size: 0.78em;
  vertical-align: baseline;
  margin-left: 0.05em;
}

.pricing-features-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pricing-features-v2 li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.42rem 0;
  color: rgba(15, 23, 42, 0.88);
}

.pricing-features-v2 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #0f172a;
}

.pricing-uptime-v2 {
  margin: 0.65rem 0 0.9rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.btn-pricing-v2 {
  background: #4f46e5;
  color: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.85);
  box-shadow: 0 16px 46px rgba(79, 70, 229, 0.35);
}

.btn-pricing-v2:hover {
  background: #4338ca;
}

/* Featured / 12 months */
.pricing-card-v2-featured {
  background: linear-gradient(180deg, #190a3a, #08031b);
  color: #f9fafb;
  border-color: rgba(99, 102, 241, 0.95);
  transform: translateY(-2px);
}

.pricing-card-v2-featured:hover {
  transform: translateY(-6px);
}

.pricing-card-v2-featured::before {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.32), transparent 60%),
    radial-gradient(circle at bottom right, rgba(103, 232, 249, 0.18), transparent 60%);
  opacity: 1;
}

.pricing-card-v2-featured .pricing-line-v2 {
  background: linear-gradient(90deg, #67e8f9, #6366f1);
}

.pricing-card-v2-featured .pricing-price-v2 {
  color: #67e8f9;
}

.pricing-card-v2-featured .pricing-features-v2 li {
  color: rgba(103, 232, 249, 0.85);
}

.pricing-card-v2-featured .pricing-features-v2 li::before {
  color: rgba(103, 232, 249, 0.95);
}

.pricing-card-v2-featured .pricing-uptime-v2 {
  color: rgba(229, 231, 235, 0.7);
}

.pricing-card-v2-featured .btn-pricing-v2 {
  background: rgba(79, 70, 229, 0.22);
  color: #e5e7eb;
  border: 1px solid rgba(103, 232, 249, 0.45);
  box-shadow: 0 18px 56px rgba(99, 102, 241, 0.25);
}

.pricing-card-v2-featured .btn-pricing-v2:hover {
  background: rgba(79, 70, 229, 0.32);
}

/* Featured badge */
.pricing-badge-v2 {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.14);
  border: 1px solid rgba(103, 232, 249, 0.45);
  color: #67e8f9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =====================
   BLOG - "All blog" button
   ===================== */

.blog-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}
/* =========================================================
   PATCH v2 (drop-in)
   - Hero: better contrast + mobile-friendly (no big glass box on phones)
   - Pricing: keep the "screenshot" layout, but match your dark theme
   - Blog: keeps the "All blog" button styling
   ========================================================= */

/* =========================================================
   HERO — keep original blue/green glow, improve readability
   ========================================================= */

/* Darken the hero backdrop slightly so text stays readable */
.hero-bg-overlay {
  opacity: 0.95;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), transparent 58%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.92));
}

/* Always help headline readability */
.hero-title {
  text-shadow: 0 14px 44px rgba(2, 6, 23, 0.75);
}

.hero-subtitle {
  /* Slightly brighter than --text-muted for hero only */
  color: rgba(229, 231, 235, 0.78);
  text-shadow: 0 12px 38px rgba(2, 6, 23, 0.65);
}

/* Desktop: subtle glass panel behind text (matches your site cards) */
@media (min-width: 961px) {
  .hero-text {
    position: relative;
    padding: 1.05rem 1.05rem 1.15rem;
    border-radius: var(--radius-lg);
    background: rgba(2, 6, 23, 0.44);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 52px rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* Phone/Tablet (and touch devices): remove the big glass box so the hero feels native + prevents layout issues */
@media (max-width: 960px), (hover: none) and (pointer: coarse) {
  .hero-inner {
    gap: 2rem;
  }

  .hero-text {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Center the device card and avoid overflow */
  .hero-visual {
    justify-self: center;
  }

  .device-card {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  /* Orbs can cause overflow / clutter on small screens */
  .floating-orb {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 3.25rem;
  }

  .stream-preview {
    height: 135px;
  }
}


/* =========================================================
   PRICING — same layout as screenshot, but theme-compatible
   ========================================================= */

/* More flexible grid: automatically fits 1–4 columns depending on screen */
.pricing-grid-v2 {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.pricing-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.35rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 65%),
    rgba(15, 23, 42, 0.98);
  color: var(--text);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.pricing-card-v2::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 60%);
  opacity: 0.9;
}

.pricing-card-v2 > * {
  position: relative;
  z-index: 1;
}

.pricing-card-v2:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.75);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.7);
}

.pricing-card-v2-header {
  text-align: center;
  padding-top: 0.1rem;
}

.pricing-plan-v2 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.92);
}

.pricing-line-v2 {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #6366f1);
  margin: 0.75rem auto 0.8rem;
}

.pricing-price-v2 {
  margin: 0;
  font-size: 2.95rem;
  line-height: 1;
  font-weight: 900;
  color: #a5b4fc; /* soft indigo */
  text-shadow: 0 16px 52px rgba(2, 6, 23, 0.65);
}

.pricing-price-currency {
  font-size: 0.78em;
  vertical-align: baseline;
  margin-left: 0.05em;
}

.pricing-features-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pricing-features-v2 li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.42rem 0;
  color: var(--text-muted);
}

.pricing-features-v2 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--accent);
}

.pricing-uptime-v2 {
  margin: 0.65rem 0 0.95rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.65);
}

/* Pricing CTA button (matches your existing button style) */
.btn-pricing-v2 {
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
}

.btn-pricing-v2:hover {
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.95);
}

/* Featured / 12 months */
.pricing-card-v2-featured {
  border-color: rgba(99, 102, 241, 0.95);
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.34), transparent 62%),
    radial-gradient(circle at bottom right, rgba(103, 232, 249, 0.14), transparent 62%),
    rgba(15, 23, 42, 1);
  transform: translateY(-2px);
}

.pricing-card-v2-featured:hover {
  transform: translateY(-5px);
}

.pricing-card-v2-featured .pricing-price-v2 {
  color: #67e8f9;
}

.pricing-card-v2-featured .pricing-features-v2 li {
  color: rgba(229, 231, 235, 0.82);
}

.pricing-card-v2-featured .pricing-features-v2 li::before {
  color: #67e8f9;
}

.pricing-card-v2-featured .btn-pricing-v2 {
  background: rgba(79, 70, 229, 0.22);
  color: #e5e7eb;
  border: 1px solid rgba(103, 232, 249, 0.45);
  box-shadow: 0 18px 56px rgba(99, 102, 241, 0.25);
}

.pricing-card-v2-featured .btn-pricing-v2:hover {
  background: rgba(79, 70, 229, 0.32);
}

/* Featured badge */
.pricing-badge-v2 {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.55);
  color: #a5b4fc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   BLOG — keeps the "All blog" button alignment
   ========================================================= */

.blog-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}
/* ===== Modern Pricing Redesign ===== */

.pricing-modern {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card.modern {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.9);
}

/* Top header */
.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  color: var(--text-muted);
}

.pricing-badge.highlight {
  background: linear-gradient(135deg, #facc15, #22c55e);
  color: #020617;
  border: none;
  font-weight: 700;
}

/* Featured plan */
.pricing-card.featured {
  border-color: rgba(250, 204, 21, 0.9);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.featured-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top, rgba(250,204,21,0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(34,197,94,0.25), transparent 55%);
  filter: blur(60px);
  z-index: 0;
}

.pricing-card.featured * {
  position: relative;
  z-index: 1;
}

/* Price emphasis */
.pricing-price .price-main {
  font-size: 2.1rem;
}

/* Mobile fixes */
@media (max-width: 960px) {
  .pricing-modern {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

/* FILE: new_sections_patch.css
   Add-on styles for the 5 new sections (built to match your existing styles.css)
   NOTE: This file is safe to load AFTER your main styles.css.
*/

/* Make anchor jumps land nicely under the fixed header */
section[id] { scroll-margin-top: 5.5rem; }

/* New sections: isolate decorative layers so nothing overlaps other sections */
.section-flash,
.section-why,
.section-devices,
.section-performance,
.section-guarantee {
  position: relative;
  isolation: isolate;
}

/* =====================
   1) FLASH SALE
   ===================== */

.flash-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 960px) {
  .flash-wrap { grid-template-columns: minmax(0, 1fr); }
}

.section-flash::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  background:
    radial-gradient(circle at 18% 28%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(circle at 78% 35%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(circle at 45% 85%, rgba(250, 204, 21, 0.14), transparent 60%);
}

.flash-wrap > * { position: relative; z-index: 1; }

.flash-em {
  background: linear-gradient(90deg, #facc15, #22c55e, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flash-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 1.1rem;
  max-width: 520px;
}

@media (max-width: 520px) {
  .flash-timer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.timer-box {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 65%),
    rgba(15, 23, 42, 0.88);
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow-subtle);
  text-align: center;
  transform: translateZ(0);
  animation: timerFloat 2.8s ease-in-out infinite;
}

@keyframes timerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.timer-num {
  display: block;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.timer-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.flash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.flash-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.16), transparent 62%),
    rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.25rem;
  overflow: hidden;
  position: relative;
}

.flash-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 30% 35%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(circle at 65% 55%, rgba(34, 197, 94, 0.18), transparent 60%);
  filter: blur(30px);
  opacity: 0.9;
  pointer-events: none;
  animation: flashGlow 8s ease-in-out infinite;
}

@keyframes flashGlow {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(2%, -2%, 0); }
}

.flash-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.9);
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin: 0 0.5rem 0.6rem 0;
  position: relative;
  z-index: 1;
}

.flash-card-body { position: relative; z-index: 1; }

.flash-kicker {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.flash-big {
  margin: 0 0 0.55rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.flash-small {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =====================
   2) WHY CHOOSE
   ===================== */
.why-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: minmax(0, 1fr); }
}

.why-card {
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.75);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.7);
}

/* =====================
   3) DEVICES
   ===================== */
.devices-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .devices-grid { grid-template-columns: minmax(0, 1fr); }
}

.device-tile { transition: transform var(--transition-fast), border-color var(--transition-fast); }
.device-tile:hover { transform: translateY(-4px); border-color: rgba(34, 197, 94, 0.7); }

/* =====================
   4) PERFORMANCE
   ===================== */
.perf-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .perf-grid { grid-template-columns: minmax(0, 1fr); }
}

.perf-tile { transition: transform var(--transition-fast), border-color var(--transition-fast); }
.perf-tile:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.7); }

/* =====================
   5) GUARANTEE
   ===================== */
.guarantee-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: minmax(0, 1fr); }
}

.guarantee-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Contact WhatsApp buttons (added into the existing contact section) */
 .wa-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    text-decoration: none;
  }

  .wa-icon{
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 14px 34px rgba(0,0,0,.26);
    display: grid;
    place-items: center;
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .wa-float:hover .wa-icon{
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 44px rgba(0,0,0,.30);
  }

  .wa-icon::after{
    content:"";
    width: 28px;
    height: 28px;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.44c-.27-.13-1.6-.79-1.85-.88-.25-.1-.43-.13-.61.13-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.13-1.14-.42-2.17-1.33-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.41.12-.54.12-.12.27-.31.4-.46.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.47.07-.72.34-.25.27-.95.93-.95 2.27 0 1.34.98 2.64 1.11 2.82.13.18 1.93 2.95 4.67 4.13.65.28 1.15.45 1.54.57.65.21 1.25.18 1.72.11.52-.08 1.6-.65 1.82-1.28.22-.63.22-1.17.16-1.28-.07-.11-.25-.18-.52-.31z'/%3E%3Cpath d='M16 2.67C8.65 2.67 2.67 8.65 2.67 16c0 2.35.62 4.63 1.79 6.64L3.2 29.33l6.86-1.24A13.24 13.24 0 0 0 16 29.33c7.35 0 13.33-5.98 13.33-13.33S23.35 2.67 16 2.67zm0 24.02c-2 0-3.95-.54-5.64-1.56l-.4-.24-4.07.73.74-3.96-.26-.41A10.6 10.6 0 1 1 16 26.69z'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.44c-.27-.13-1.6-.79-1.85-.88-.25-.1-.43-.13-.61.13-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.13-1.14-.42-2.17-1.33-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.41.12-.54.12-.12.27-.31.4-.46.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.47.07-.72.34-.25.27-.95.93-.95 2.27 0 1.34.98 2.64 1.11 2.82.13.18 1.93 2.95 4.67 4.13.65.28 1.15.45 1.54.57.65.21 1.25.18 1.72.11.52-.08 1.6-.65 1.82-1.28.22-.63.22-1.17.16-1.28-.07-.11-.25-.18-.52-.31z'/%3E%3Cpath d='M16 2.67C8.65 2.67 2.67 8.65 2.67 16c0 2.35.62 4.63 1.79 6.64L3.2 29.33l6.86-1.24A13.24 13.24 0 0 0 16 29.33c7.35 0 13.33-5.98 13.33-13.33S23.35 2.67 16 2.67zm0 24.02c-2 0-3.95-.54-5.64-1.56l-.4-.24-4.07.73.74-3.96-.26-.41A10.6 10.6 0 1 1 16 26.69z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  .wa-text{
    background: #ffffff;
    color: #111;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.06);

    font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: .2px;
    white-space: nowrap;
  }

  /* Optional: smaller on mobile */
  @media (max-width: 480px){
    .wa-icon{ width: 54px; height: 54px; }
    .wa-text{ font-size: 11px; padding: 6px 9px; }
  }

/* =========================================================
   Flash Sale timer — creative banner (matches screenshot style)
   ========================================================= */
.section-flash .flash-sale-banner{
  border-radius: 14px;
  padding: 22px 18px;
  background: linear-gradient(90deg, #4f46e5, #22c55e);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}

.flash-sale-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 6px;
}

.flash-sale-icon{
  display:inline-flex;
  width: 34px;
  height: 34px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.20);
}

.flash-sale-title{
  margin:0;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -0.02em;
  color: #ffffff;
}

.flash-sale-sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}

.flash-clock{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-bottom: 14px;
}

.clock-box{
  min-width: 86px;
  padding: 10px 12px 9px;
  border-radius: 10px;
  background: rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(2,6,23,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
}

.clock-num{
  display:block;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-shadow: 0 10px 26px rgba(2,6,23,0.32);
}

.clock-label{
  display:block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
}

.clock-sep{
  font-weight: 900;
  font-size: 2.1rem;
  color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.flash-sale-actions{
  display:flex;
  justify-content:center;
}

/* Mobile: tighter timer */
@media (max-width: 520px){
  .flash-clock{ gap: 10px; }
  .clock-box{ min-width: 74px; padding: 9px 10px 8px; }
  .clock-num{ font-size: 1.7rem; }
  .clock-sep{ font-size: 1.8rem; }
}

/* =========================================================
   Hero small flash timer
   ========================================================= */
.hero-offer{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 1rem;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-offer-badge{
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239,68,68,0.95), rgba(249,115,22,0.95));
  color: #0f172a;
}

.hero-offer-text{
  font-size: 0.82rem;
  color: rgba(229,231,235,0.9);
}

.hero-clock{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.hero-clock-num{
  font-weight: 900;
  font-size: 0.92rem;
  color: #ffffff;
}

.hero-clock-sep{
  color: rgba(255,255,255,0.75);
  font-weight: 900;
}



/* =====================
   Flash Sale banner (theme-compatible, no orange)
   ===================== */
.section-flash .flash-sale-banner{
  display:block;
  max-width: 760px;
  margin: 0.9rem 0 1.15rem;
}

.flash-sale-title{
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: #f9fafb;
}

.flash-sale-sub{
  margin: 0.4rem 0 0.95rem;
  color: rgba(249,250,251,0.82);
  font-size: 0.92rem;
}

/* Timer row like your screenshot */
.flash-clock{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.clock-box{
  min-width: 92px;
  padding: 0.75rem 0.9rem 0.65rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 16px 34px rgba(2,6,23,0.35);
  text-align:center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.clock-num{
  display:block;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.clock-label{
  display:block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.clock-sep{
  font-weight: 900;
  font-size: 1.55rem;
  color: rgba(255,255,255,0.92);
  transform: translateY(-8px);
}

/* Buttons in flash section: keep neat on all screens */
.section-flash .flash-actions{
  display:flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 520px){
  .section-flash .flash-actions{
    flex-direction: column;
    align-items: stretch;
  }
}

/* =====================
   Hero mini offer timer
   ===================== */
.hero-offer{
  display:inline-flex;
  align-items:center;
  gap: 0.65rem;
  margin-top: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,184,0.45);
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.18), transparent 65%),
    rgba(15,23,42,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(2,6,23,0.45);
  width: fit-content;
}

.hero-offer-badge{
  display:inline-flex;
  align-items:center;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.45);
  color: rgba(34,197,94,0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-offer-text{
  color: rgba(229,231,235,0.78);
  font-size: 0.82rem;
}

.hero-offer-timer{
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #f9fafb;
  font-size: 0.9rem;
}

.hero-offer-sep{
  opacity: 0.85;
  margin: 0 0.12rem;
}

@media (max-width: 520px){
  .hero-offer{
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
}

/* =====================
   Devices list
   ===================== */
.devices-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.55rem;
  max-width: 40rem;
}

.devices-list li{
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.devices-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #6366f1);
}
