/* ==========================================================================
   NexPort — Design System & Site Styles
   Miami-Vice inspired dark theme: deep navy backgrounds, hot pink + cyan
   gradients, glass-morphism surfaces.
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  /* Brand palette */
  --primary: #ff6ec7;
  --primary-dark: #e052a0;
  --primary-light: #ff9ed8;
  --accent: #00ffff;
  --accent-2: #00d4ff;

  /* Surfaces */
  --bg: #0a0a12;
  --bg-alt: #12121f;
  --bg-card: #1a1a2e;
  --gradient-bg: linear-gradient(135deg, #0a0a12 0%, #1a0a20 50%, #0a1a2a 100%);

  /* Text */
  --text: #f4f8ff;
  --text-muted: #b8c3e0;

  /* Borders / shadows */
  --border: rgba(255, 110, 199, 0.22);
  --border-strong: rgba(255, 110, 199, 0.45);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);

  /* Shape */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Rhythm */
  --section-pad: 7rem;
  --header-h: 76px;
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--gradient-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 8, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
  background: rgba(10, 8, 20, 0.9);
  border-bottom-color: var(--border);
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--primary-light);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 110, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 110, 199, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(255, 110, 199, 0.08);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary-light);
  padding: 0.625rem 1.25rem;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: calc(var(--header-h) + 6rem) 0 6rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 110, 199, 0.3), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 255, 255, 0.15), transparent),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(0, 212, 255, 0.2), transparent),
    linear-gradient(to bottom, rgba(10, 10, 18, 0.72) 0%, rgba(10, 10, 18, 0.88) 100%),
    url("../assets/hero-bg.webp") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6ec7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
}

.hero-logo {
  display: inline-block;
  max-width: 560px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Trust stat strip (replaces fake logo carousel) */
.trust-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-left: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: none;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: none;
  }
}

/* ==========================================================================
   Section basics
   ========================================================================== */

section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--bg-alt);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.65rem);
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   What We Do
   ========================================================================== */

.what-we-do-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.what-we-do-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  margin: 0 auto;
}

.what-we-do-image img {
  transition: transform 0.4s ease;
}

.what-we-do-image:hover img {
  transform: scale(1.03);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 110, 199, 0.15);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  border-radius: 14px;
  color: var(--accent);
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .what-we-do-layout {
    grid-template-columns: 1fr;
  }
  .what-we-do-image {
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Tiers (home teaser)
   ========================================================================== */

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tier-card {
  text-align: center;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(255, 110, 199, 0.3);
}

.tier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tier-card h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.tier-card p {
  color: var(--text-muted);
}

.tiers-cta {
  text-align: center;
}

/* ==========================================================================
   Who We Are
   ========================================================================== */

.who-we-are {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(10, 10, 18, 0.95) 0%, rgba(10, 10, 18, 0.75) 55%, rgba(10, 10, 18, 0.45) 100%),
    url("../assets/who-we-are-bg.webp") center/cover no-repeat;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.who-we-are-text {
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.who-we-are-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.who-we-are-text p:last-child {
  margin-bottom: 0;
}

.who-we-are-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .who-we-are-content {
    grid-template-columns: 1fr;
  }
  .who-we-are-image {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    min-height: auto;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.accordion-item:hover {
  border-color: var(--border-strong);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: var(--primary-light);
}

.accordion-header i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item[data-open="true"] .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-item[data-open="true"] .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-content-inner {
  overflow: hidden;
}

.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 110, 199, 0.25), transparent),
    linear-gradient(135deg, #1a0a20 0%, #0a0a12 100%);
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta::before {
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
}

.cta::after {
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 110, 199, 0.2) 0%, transparent 70%);
}

.cta h2,
.cta p {
  position: relative;
}

.cta p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  position: relative;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 5rem 0 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links h4 {
  margin-bottom: 1.1rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
}

/* ==========================================================================
   Page hero (pricing / contact)
   ========================================================================== */

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 110, 199, 0.3), transparent),
    var(--gradient-bg);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ==========================================================================
   Pricing page
   ========================================================================== */

.pricing-cards {
  padding-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(255, 110, 199, 0.1) 0%, var(--bg-card) 100%);
}

@media (min-width: 769px) {
  .pricing-card.featured {
    transform: scale(1.04);
  }
  .pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #150019;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 3.4em;
}

.card-price {
  margin: 1.75rem 0;
}

.amount {
  font-size: 1.9rem;
  font-weight: 800;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.features-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li.disabled {
  opacity: 0.45;
}

.features-list .check {
  color: var(--accent);
  font-weight: 700;
}

.features-list .cross {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Comparison table */
.comparison {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table caption {
  caption-side: top;
  text-align: left;
  color: var(--text-muted);
  padding-bottom: 1rem;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.comparison-table thead th {
  background: var(--bg-card);
  font-weight: 700;
  font-size: 1.05rem;
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.comparison-table thead th.featured {
  background: linear-gradient(180deg, rgba(255, 110, 199, 0.22) 0%, var(--bg-card) 100%);
  color: var(--primary-light);
}

.comparison-table tbody td {
  color: var(--text-muted);
}

.comparison-table tbody td.featured {
  background: rgba(255, 110, 199, 0.05);
}

.comparison-table .check {
  color: var(--accent);
  font-size: 1.2rem;
}

.comparison-table .cross {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 1.2rem;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  margin-top: 3rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.contact-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-address {
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile navigation panel
   ========================================================================== */

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    padding: 6rem 2rem 3rem;
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ==========================================================================
   Responsive scaling
   ========================================================================== */

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .tiers-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
