/* ==========================================================================
   ابرینو — Cloud Hosting Landing Page
   Palette: White & Blue  |  Direction: RTL  |  Font: Vazirmatn
   ========================================================================== */

:root {
  /* Blues */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --sky-400: #38bdf8;
  --cyan-400: #22d3ee;

  /* Neutrals */
  --white: #ffffff;
  --ink-900: #0b1220;
  --ink-800: #1e293b;
  --ink-600: #475569;
  --ink-400: #94a3b8;
  --line: #e6ecf5;
  --bg-soft: #f7faff;

  --grad-primary: linear-gradient(135deg, var(--blue-600), var(--sky-400));
  --grad-text: linear-gradient(120deg, var(--blue-700), var(--sky-400));

  --shadow-sm: 0 2px 8px rgba(37, 99, 235, .06);
  --shadow-md: 0 12px 30px rgba(37, 99, 235, .10);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, .16);
  --shadow-blue: 0 16px 40px rgba(37, 99, 235, .35);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --nav-h: 74px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* -------------------------------------------------------------------------- */
/* Reset & base                                                               */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 10px);
  /* `clip`, not `hidden`: `hidden` leaves the viewport programmatically
     scrollable, so scrollIntoView()/focus could shove the whole RTL page
     sideways chasing a decorative element that bleeds past the edge. */
  overflow-x: clip;
}

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink-800);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  --btn-py: 12px;
  --btn-px: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease),
    background .3s,
    color .3s;

  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-lg {
  --btn-py: 15px;
  --btn-px: 30px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(37, 99, 235, .45);
}

.btn-outline {
  background: #fff;
  color: var(--blue-700);
  border-color: var(--blue-200);
  border-style: solid;
  border-width: 1px;
}

.btn-outline:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-600);
}

.btn-ghost:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

.btn-white {
  background: #fff;
  color: var(--blue-700);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-glass {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .28);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/* Navbar                                                                     */
/* -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink-900);
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-600);
  font-weight: 500;
  transition: color .25s, background .25s;
}

.nav-links a:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink-800);
  transition: transform .3s var(--ease), opacity .3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 40px) 60px;
  background:
    radial-gradient(1000px 600px at 85% -10%, var(--blue-100), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, #e6f5ff, transparent 55%),
    linear-gradient(180deg, #fbfdff, #fff);
  overflow: clip;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: 0;
  animation: float 14s var(--ease) infinite;
}

.blob-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--sky-400), transparent 70%);
  inset-block-start: -60px;
  inset-inline-start: -80px;
}

.blob-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--blue-300), transparent 70%);
  inset-block-end: -120px;
  inset-inline-end: -100px;
  animation-delay: -6s;
}

/* Drifting sky clouds — volumetric, glowing puffs above the particle network */
.clouds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  --b: 1px;
  /* per-cloud blur → depth */
  position: absolute;
  display: block;
  border-radius: 100px;
  /* lit from above (white) with a soft blue underside for volume */
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 58%, #e1ebff 100%);
  /* one cohesive halo around the whole silhouette: brand-blue + signature cyan under-glow */
  filter:
    blur(var(--b)) drop-shadow(0 22px 36px rgba(37, 99, 235, .20)) drop-shadow(0 6px 14px rgba(34, 211, 238, .18));
  animation: drift 40s var(--ease) infinite;
  will-change: transform;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 68%, #e1ebff 100%);
}

/* two lobes rise from the body to form a fluffy silhouette */
.cloud::before {
  width: 58%;
  height: 172%;
  left: 9%;
  bottom: 40%;
}

.cloud::after {
  width: 48%;
  height: 138%;
  right: 11%;
  bottom: 38%;
}

.cloud-1 {
  width: 158px;
  height: 46px;
  inset-block-start: 14%;
  inset-inline-start: 7%;
  --b: 1px;
  animation-duration: 26s;
}

.cloud-2 {
  width: 110px;
  height: 34px;
  inset-block-start: 25%;
  inset-inline-end: 11%;
  --b: 2.6px;
  opacity: .72;
  animation-duration: 34s;
  animation-delay: -6s;
  animation-direction: reverse;
}

.cloud-3 {
  width: 210px;
  height: 60px;
  inset-block-start: 57%;
  inset-inline-start: 19%;
  --b: 1.6px;
  opacity: .88;
  animation-duration: 40s;
  animation-delay: -14s;
}

/* larger horizontal drift + a slow breathing swell, in one transform track */
@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(80px, -22px, 0) scale(1.06);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .25);
  animation: pulse 2s infinite;
}

.hero-title {
  margin-block: 22px 18px;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink-900);
}

.hero-sub {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-600);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block: 30px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-600);
  font-size: .95rem;
}

.hero-trust strong {
  color: var(--blue-700);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-inline-start: -10px;
  background: var(--grad-primary);
  box-shadow: var(--shadow-sm);
}

.avatars span:nth-child(2) {
  background: linear-gradient(135deg, var(--sky-400), var(--cyan-400));
}

.avatars span:nth-child(3) {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
}

.avatars span:nth-child(4) {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 440px;
}

.glass-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.float-card {
  position: absolute;
  animation: float 6s var(--ease) infinite;
}

.card-main {
  inset-block-start: 40px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 300px;
  padding: 26px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-600);
  font-weight: 600;
  font-size: .92rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
  animation: pulse 2s infinite;
}

.uptime {
  margin-block: 14px 2px;
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.uptime-label {
  color: var(--ink-400);
  font-size: .85rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 70px;
  margin-top: 18px;
}

.bars span {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 6px;
  opacity: .85;
  animation: grow 2s var(--ease) infinite alternate;
}

.bars span:nth-child(odd) {
  animation-delay: .3s;
}

.card-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.card-chip strong {
  display: block;
  font-size: 1rem;
  color: var(--ink-900);
}

.card-chip small {
  color: var(--ink-400);
}

.chip-ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-50);
  font-size: 1.2rem;
}

.chip-1 {
  inset-block-start: 0;
  inset-inline-end: 0;
  animation-delay: -2s;
}

.chip-2 {
  inset-block-end: 20px;
  inset-inline-start: 0;
  animation-delay: -4s;
}

.scroll-hint {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--blue-300);
  border-radius: 14px;
  z-index: 2;
}

.scroll-hint span {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 5px;
  height: 8px;
  border-radius: 3px;
  background: var(--blue-500);
  animation: scroll 1.6s infinite;
}

/* -------------------------------------------------------------------------- */
/* Logos strip                                                                */
/* -------------------------------------------------------------------------- */
.logos {
  padding-block: 44px;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.logos-title {
  text-align: center;
  color: var(--ink-400);
  font-size: .9rem;
  margin-bottom: 22px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 6vw, 66px);
}

.logo-item {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink-400);
  opacity: .75;
  transition: color .3s, opacity .3s;
}

.logo-item:hover {
  color: var(--blue-600);
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* Section head                                                               */
/* -------------------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 900;
  color: var(--ink-900);
  letter-spacing: -.02em;
  line-height: 1.35;
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-600);
  font-size: 1.08rem;
}

/* -------------------------------------------------------------------------- */
/* Cards / grids                                                              */
/* -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-ic {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 18px;
  transition: transform .4s var(--ease), background .4s, color .4s;
}

.feature-ic svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover .feature-ic {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--ink-600);
}

/* Stats */
.stats-section {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.stat-label {
  color: var(--ink-600);
  font-weight: 500;
  margin-top: 4px;
}

/* Services */
.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-ic {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-700);
  margin-bottom: 16px;
}

.service-ic svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-600);
  font-size: .96rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--blue-600);
  font-weight: 700;
  font-size: .95rem;
  transition: gap .3s, color .3s;
}

.service-card:hover .service-link {
  color: var(--blue-700);
}

/* Pricing */
/* Server-location selector above the pricing heading */
.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.loc-tab {
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-600);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
}

.loc-tab:hover {
  color: var(--blue-600);
  border-color: var(--blue-300);
}

.loc-tab.is-active {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

/* All plans on one row; arrows scroll the row left/right */
.pricing-carousel {
  position: relative;
}

.pricing-grid {
  display: flex;
  align-items: stretch;
  gap: 26px;
  /* Top padding keeps the "محبوب‌ترین" badge from being clipped by the scroller.
     Inline padding stays 0 so snap points land on exact card multiples. */
  padding: 34px 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

.pricing-grid>.price-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.pc-nav {
  position: absolute;
  inset-block-start: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-600);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .25s, color .25s, opacity .25s, box-shadow .25s;
}

.pc-nav svg {
  width: 22px;
  height: 22px;
}

.pc-nav:hover {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.pc-nav[disabled] {
  opacity: 0;
  pointer-events: none;
}

/* Logical inset so the arrows follow the RTL reading direction */
.pc-prev {
  inset-inline-start: -14px;
}

.pc-next {
  inset-inline-end: -14px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 1.5px solid var(--blue-500);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--blue-50), #fff 40%);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  inset-block-start: -14px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: var(--shadow-blue);
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink-900);
}

.plan-desc {
  color: var(--ink-600);
  font-size: .92rem;
  min-height: 44px;
  margin-block: 6px 18px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.price .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink-900);
}

.price .period {
  color: var(--ink-400);
  font-size: .92rem;
}

.plan-features {
  margin-top: 24px;
  display: grid;
  gap: 13px;
}

.plan-features li {
  position: relative;
  padding-inline-start: 30px;
  color: var(--ink-800);
}

.plan-features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* FAQ */
.faq-inner {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--ink-900);
}

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

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 13px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: translate(50%, -50%);
  transition: transform .3s var(--ease);
}

.faq-plus::after {
  transform: translate(50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus::after {
  transform: translate(50%, -50%) rotate(0);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--ink-600);
}

/* CTA band */
.cta-band-wrap {
  padding-block: clamp(40px, 6vw, 80px);
}

.cta-band {
  position: relative;
  overflow: clip;
  text-align: center;
  color: #fff;
  padding: clamp(44px, 6vw, 76px) 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600) 45%, var(--sky-400));
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  inset-block-start: -60%;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 60%);
}

.cta-band h2 {
  position: relative;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 900;
}

.cta-band p {
  position: relative;
  margin-block: 12px 28px;
  font-size: 1.1rem;
  opacity: .95;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Footer */
.footer {
  background: var(--ink-900);
  color: #cbd5e1;
  padding-block: 64px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .brand {
  color: #fff;
}

.footer-brand p {
  margin-block: 16px 20px;
  max-width: 320px;
  color: #94a3b8;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #cbd5e1;
  transition: background .3s, color .3s, transform .3s;
}

.socials a svg {
  width: 20px;
  height: 20px;
}

.socials a:hover {
  background: var(--blue-600);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #94a3b8;
  transition: color .25s, padding-inline-start .25s;
}

.footer-col a:hover {
  color: #fff;
  padding-inline-start: 6px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.footer-badges a {
  display: inline-flex;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #64748b;
  font-size: .9rem;
}

/* -------------------------------------------------------------------------- */
/* Marquee — static feature strip                                             */
/* -------------------------------------------------------------------------- */
.marquee-section {
  padding-block: 22px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600) 50%, var(--sky-400));
}

.marquee {
  position: relative;
}

.marquee-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 0;
}

.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  margin-inline: 7px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.marquee-chip svg {
  width: 19px;
  height: 19px;
  opacity: .95;
}

/* -------------------------------------------------------------------------- */
/* Benefit cards (features section)                                           */
/* -------------------------------------------------------------------------- */
.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  text-align: center;
}

.benefit-ic {
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
  animation: float 6s var(--ease) infinite;
}

.benefit-ic svg {
  width: 28px;
  height: 28px;
}

.benefit-card:nth-child(2) .benefit-ic {
  animation-delay: -1.5s;
}

.benefit-card:nth-child(3) .benefit-ic {
  animation-delay: -3s;
}

.benefit-card:nth-child(4) .benefit-ic {
  animation-delay: -4.5s;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--ink-600);
  font-size: .95rem;
}

/* -------------------------------------------------------------------------- */
/* About / Why us — orbit animation                                           */
/* -------------------------------------------------------------------------- */
.about {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-visual {
  display: grid;
  place-items: center;
}

.about-head {
  text-align: right;
  margin-inline: 0;
  margin-bottom: 18px;
}

.about-text>p {
  color: var(--ink-600);
  font-size: 1.06rem;
}

.about-list {
  margin-block: 22px;
  display: grid;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-inline-start: 32px;
  color: var(--ink-800);
}

.about-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.about-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.about-stats .stat-num {
  font-size: 2rem;
}

.about-stats .stat-label {
  font-size: .9rem;
}

.orbit-wrap {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed var(--blue-200);
}

.orbit-ring.r1 {
  inset: 0;
}

.orbit-ring.r2 {
  inset: 22%;
  border-color: var(--blue-100);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  border-radius: 26px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--shadow-blue);
  animation: pulse-soft 3s ease-in-out infinite;
}

.orbit-core svg {
  width: 46px;
  height: 46px;
}

.orbit {
  position: absolute;
  inset: 0;
}

.orbit-outer {
  animation: spin 24s linear infinite;
}

.orbit-inner {
  inset: 22%;
  animation: spin 18s linear infinite reverse;
}

.satellite {
  position: absolute;
  left: 50%;
  top: 50%;
}

.sat-t {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sat-b {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sat-l {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sat-r {
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sat-ic {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
}

.satellite.small .sat-ic {
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
}

.orbit-outer .sat-ic {
  animation: spin 24s linear infinite reverse;
}

.orbit-inner .sat-ic {
  animation: spin 18s linear infinite;
}

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */
.testi-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 1.05rem;
}

.testi-text {
  color: var(--ink-800);
  line-height: 2;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--ink-900);
}

.testi-author small {
  color: var(--ink-400);
}

/* -------------------------------------------------------------------------- */
/* Blog                                                                       */
/* -------------------------------------------------------------------------- */
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  height: 172px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  overflow: hidden;
}

.blog-thumb svg {
  width: 58px;
  height: 58px;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-thumb svg {
  transform: scale(1.12) rotate(-6deg);
}

.thumb-1 {
  background: linear-gradient(135deg, var(--blue-600), var(--sky-400));
}

.thumb-2 {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
}

.thumb-3 {
  background: linear-gradient(135deg, var(--sky-400), var(--cyan-400));
}

.blog-body {
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-400);
  font-size: .85rem;
}

.blog-tag {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
}

.blog-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.7;
}

.blog-card p {
  color: var(--ink-600);
  font-size: .93rem;
  flex: 1;
}

.blog-card .service-link {
  margin-top: 4px;
}

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}

.contact-ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--blue-50);
  color: var(--blue-600);
  transition: background .3s, color .3s;
}

.contact-ic svg {
  width: 24px;
  height: 24px;
}

.contact-card strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.contact-card p {
  color: var(--ink-600);
}

.contact-card:hover .contact-ic {
  background: var(--grad-primary);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-800);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink-900);
  padding: 12px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .12);
}

/* Footer contact column */
.footer-contact p {
  color: #94a3b8;
  padding: 5px 0;
}

.footer-contact span {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-contact a {
  color: #94a3b8;
  transition: color .25s;
}

.footer-contact a:hover {
  color: #fff;
}

/* New keyframes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    box-shadow: 0 16px 40px rgba(37, 99, 235, .35);
  }

  50% {
    box-shadow: 0 20px 60px rgba(37, 99, 235, .6);
  }
}

/* Responsive — new sections */
@media (max-width: 980px) {

  .benefits-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-head,
  .about-text {
    text-align: center;
  }

  .about-head {
    margin-inline: auto;
  }

  .about-list {
    text-align: right;
    max-width: 460px;
    margin-inline: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .benefits-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 24px;
  }
}

/* -------------------------------------------------------------------------- */
/* Scroll reveal                                                              */
/* -------------------------------------------------------------------------- */
/* `.reveal`'s blur paints ~18px outside the element, which briefly widens the
   page sideways mid-animation. Clipping every band keeps that ink inside. */
.section,
.marquee-section,
.cta-band-wrap,
.footer,
.hero {
  overflow-x: clip;
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(.94);
  filter: blur(6px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal:nth-child(2) {
  transition-delay: .10s;
}

.reveal:nth-child(3) {
  transition-delay: .20s;
}

.reveal:nth-child(4) {
  transition-delay: .30s;
}

.reveal:nth-child(5) {
  transition-delay: .40s;
}

.reveal:nth-child(6) {
  transition-delay: .50s;
}

/* -------------------------------------------------------------------------- */
/* Keyframes                                                                  */
/* -------------------------------------------------------------------------- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.card-main {
  animation-name: floatX;
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(-16px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: .7;
  }
}

@keyframes grow {
  from {
    transform: scaleY(.6);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateX(50%) translateY(-4px);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translateX(50%) translateY(10px);
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 980px) {

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 380px;
    margin-top: 10px;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
    z-index: 90;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}

@media (max-width: 760px) {

  /* Carousel arrows sit inside the track so they can't push the page wide */
  .pc-nav {
    width: 40px;
    height: 40px;
  }

  .pc-prev {
    inset-inline-start: -6px;
  }

  .pc-next {
    inset-inline-end: -6px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-grid>.price-card {
    flex-basis: min(285px, 82vw);
  }

  .loc-tab {
    padding: 9px 16px;
    font-size: .88rem;
  }
}

@media (max-width: 520px) {

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Navbar: reclaim room so brand + CTA + burger fit on one line */
  .brand {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-logo {
    width: 36px;
    height: 30px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    padding: 9px 14px;
    font-size: .88rem;
  }

  /* Feature strip: two chips per row instead of five tall stacked rows */
  .marquee-track {
    gap: 8px;
  }

  .marquee-chip {
    margin-inline: 0;
    padding: 9px 12px;
    font-size: .82rem;
    gap: 6px;
  }

  .marquee-chip svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .card-main {
    inset-inline-start: 0;
    transform: translateX(0);
    margin-inline: auto;
    inset-inline-end: 0;
  }

  @keyframes floatX {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-16px);
    }
  }

  .chip-1 {
    inset-block-start: -10px;
  }
}

/* -------------------------------------------------------------------------- */
/* Reduced motion                                                             */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================================================== */
/* Vibrancy layer — color & life for the sections below the hero              */
/* ========================================================================== */

/* Soft alternating color washes so sections no longer read as flat white */
.features {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.services {
  background: linear-gradient(180deg, #f7fbff, #edf4ff);
}

.pricing {
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
}

.testimonials {
  background: linear-gradient(180deg, #fbfaff, #f2f1ff);
}

.blog {
  background: linear-gradient(180deg, #f5fdff, #ecf7ff);
}

.faq {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.contact {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

/* Blurred aura-orbs glowing behind each section */
.features,
.services,
.pricing,
.testimonials,
.blog,
.faq,
.contact {
  position: relative;
  overflow: clip;
}

.features::before,
.services::before,
.pricing::before,
.testimonials::before,
.blog::before,
.contact::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
}

.features::before {
  background: radial-gradient(circle, var(--sky-400), transparent 70%);
  inset-block-start: -160px;
  inset-inline-end: -120px;
}

.services::before {
  background: radial-gradient(circle, var(--cyan-400), transparent 70%);
  inset-block-start: -180px;
  inset-inline-start: -140px;
}

.pricing::before {
  background: radial-gradient(circle, var(--blue-400), transparent 70%);
  inset-block-end: -200px;
  inset-inline-end: -120px;
}

.testimonials::before {
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  inset-block-start: -160px;
  inset-inline-start: -120px;
}

.blog::before {
  background: radial-gradient(circle, var(--sky-400), transparent 70%);
  inset-block-end: -200px;
  inset-inline-start: -140px;
}

.contact::before {
  background: radial-gradient(circle, var(--blue-300), transparent 70%);
  inset-block-start: -180px;
  inset-inline-end: -120px;
}

/* Keep content above the orbs */
.features>.container,
.services>.container,
.pricing>.container,
.testimonials>.container,
.blog>.container,
.faq>.container,
.contact>.container {
  position: relative;
  z-index: 1;
}

/* Livelier eyebrow pill */
.eyebrow {
  background: linear-gradient(135deg, var(--blue-100), #e0f2fe);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .12);
}

/* Colorful, varied service icons (were pale & uniform) */
.service-ic {
  color: #fff;
  box-shadow: var(--shadow-md);
}

.services-grid .service-card:nth-child(1) .service-ic {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.services-grid .service-card:nth-child(2) .service-ic {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.services-grid .service-card:nth-child(3) .service-ic {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.services-grid .service-card:nth-child(4) .service-ic {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

/* Give the four benefit icons distinct colors instead of all-blue */
.benefits-grid .benefit-card:nth-child(2) .benefit-ic {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  box-shadow: 0 14px 30px rgba(6, 182, 212, .35);
}

.benefits-grid .benefit-card:nth-child(3) .benefit-ic {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 14px 30px rgba(124, 58, 237, .35);
}

.benefits-grid .benefit-card:nth-child(4) .benefit-ic {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: 0 14px 30px rgba(14, 165, 233, .35);
}

/* Gradient accent bar that sweeps in on card hover */
.benefit-card,
.service-card,
.blog-card,
.testi-card,
.price-card {
  overflow: hidden;
}

/* The "محبوب‌ترین" badge hangs above the card edge, so the card needs a clip
   region a little larger than itself; the accent bar below is unaffected. */
.price-card {
  overflow: clip;
  overflow-clip-margin: 26px;
}

.benefit-card::after,
.service-card::after,
.blog-card::after,
.testi-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s var(--ease);
}

.benefit-card:hover::after,
.service-card:hover::after,
.blog-card:hover::after,
.testi-card:hover::after,
.price-card:hover::after {
  transform: scaleX(1);
}

/* Warmer, colored card hover shadow */
.card:hover {
  box-shadow: 0 20px 44px rgba(37, 99, 235, .16);
}