﻿:root {
  --ink: #182033;
  --muted: #5b6476;
  --brand: #6d28d9;
  --brand-2: #0891b2;
  --brand-3: #f97316;
  --brand-4: #16a34a;
  --rose: #e11d48;
  --paper: #ffffff;
  --soft: #f8fafc;
  --line: rgba(24, 32, 51, 0.1);
  --shadow: 0 18px 45px rgba(24, 32, 51, 0.14);
  --shadow-hover: 0 26px 60px rgba(24, 32, 51, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.18), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #eef8ff 45%, #f8fafc 100%) !important;
  font-family: 'Segoe UI', Arial, sans-serif !important;
}

header {
  background: linear-gradient(100deg, #33135c 0%, #6d28d9 42%, #0891b2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 35px rgba(51, 19, 92, 0.28) !important;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.logo,
header strong {
  color: #ffffff !important;
  letter-spacing: 0 !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

nav a,
header a {
  color: rgba(255,255,255,0.92) !important;
  border-radius: 999px;
  padding: 8px 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a:hover,
header a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.menu-toggle {
  color: #ffffff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6d28d9 0%, #0ea5e9 48%, #f97316 100%) !important;
  color: #ffffff !important;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.18), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 12rem);
  pointer-events: none;
}

.hero > *,
.hero .container,
.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero p {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.2);
}

.section h1,
.section h2,
h1,
h2 {
  color: var(--ink) !important;
}

.section h2::after,
.contact-box h2::after,
.box h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-3), var(--brand), var(--brand-2));
}

.grid {
  gap: 24px !important;
}

.card,
.box,
.price-box,
.contact-box,
.compare-card {
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.72) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(10px);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-3), var(--brand), var(--brand-2), var(--brand-4));
}

.card:hover,
.box:hover,
.price-box:hover,
.contact-box:hover,
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover) !important;
}

.card img,
.product-hero img {
  background: linear-gradient(145deg, #fff7ed, #ecfeff) !important;
  border: 1px solid rgba(109, 40, 217, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.card h3,
.price-box h1,
.box h3,
.pros h3,
.cons h3 {
  color: #25134f !important;
}

.card p,
.hero p,
.box p,
.contact-box p,
.compare-summary,
li {
  color: var(--muted);
}

.btn,
.cta,
button,
.cta-btn {
  background: linear-gradient(135deg, #f97316 0%, #e11d48 48%, #6d28d9 100%) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.cta:hover,
button:hover,
.cta-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(109, 40, 217, 0.34);
}

.cta.secondary {
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 48%, #6d28d9 100%) !important;
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.26);
}

.price {
  color: #e11d48 !important;
}

.product-hero {
  padding-top: 28px;
}

.price-box,
.box,
.contact-box,
.compare-card {
  border-radius: 20px !important;
}

.box {
  position: relative;
}

.box::before,
.price-box::before,
.contact-box::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--brand-3), var(--brand-2));
}

.pros,
.cons {
  border-radius: 18px !important;
  box-shadow: 0 14px 32px rgba(24, 32, 51, 0.1);
  border: 1px solid rgba(255,255,255,0.72);
}

.pros {
  background: linear-gradient(145deg, #dcfce7, #ecfdf5) !important;
}

.cons {
  background: linear-gradient(145deg, #ffe4e6, #fff1f2) !important;
}

.highlight {
  background: linear-gradient(135deg, #25134f 0%, #0f766e 100%) !important;
  color: #ffffff !important;
}

.highlight h2,
.highlight li,
.highlight p {
  color: #ffffff !important;
}

input,
textarea {
  border: 1px solid rgba(109, 40, 217, 0.18) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(24, 32, 51, 0.06);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(14, 165, 233, 0.22);
  border-color: #0891b2 !important;
}

footer {
  background: linear-gradient(100deg, #25134f 0%, #111827 55%, #0f766e 100%) !important;
  color: rgba(255,255,255,0.88) !important;
}

@media (max-width: 768px) {
  nav {
    background: linear-gradient(135deg, #33135c, #0f766e) !important;
    border: 1px solid rgba(255,255,255,0.16);
  }

  nav a,
  header a {
    padding: 10px 12px;
  }

  .hero {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .card,
  .box,
  .price-box,
  .contact-box {
    border-radius: 16px !important;
  }
}
