/* ============================================================
   Plush Websites — Premium (MedVi-inspired)
   Minimal nav · Huge typography · Gradient accents · Spacious
   ============================================================ */

:root {
  --teal:        #0ea5a0;
  --teal-dark:   #0c8f8a;
  --teal-light:  #f0fdfb;
  --teal-mid:    #99f6f0;
  --black:       #0a0a0a;
  --near-black:  #111111;
  --white:       #ffffff;
  --off-white:   #fafafa;
  --gray-100:    #f4f4f5;
  --gray-200:    #e4e4e7;
  --gray-300:    #d4d4d8;
  --gray-400:    #a1a1aa;
  --gray-500:    #71717a;
  --gray-600:    #52525b;
  --gray-800:    #27272a;

  --gradient:      linear-gradient(135deg, #0ea5a0 0%, #06b6d4 50%, #0284c7 100%);
  --gradient-text: linear-gradient(135deg, #0ea5a0, #0284c7);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 100px;

  --shadow:      0 2px 12px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.05);
  --shadow-teal: 0 8px 28px rgba(14,165,160,.25);

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    0.22s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
p  { color: var(--gray-500); line-height: 1.7; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
  background: var(--teal);
  opacity: .5;
}

/* ── Layout ─────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section--sm  { padding: 44px 0; }
.section--gray { background: var(--off-white); }
.section--dark {
  background: #0f172a;
  color: var(--white);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--gray-500); max-width: 520px; margin: 0 auto; font-size: 1.02rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,165,160,.35); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-sm  { padding: 9px 18px; font-size: .82rem; }
.btn-lg  { padding: 15px 34px; font-size: 1rem; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all .3s var(--ease);
}
.nav-logo { z-index: 2; flex-shrink: 0; }
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height .3s var(--ease);
}
.nav.scrolled .nav-logo-img { height: 36px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.nav.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--t); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,160,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-light);
  border: 1px solid rgba(14,165,160,.2);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { opacity:.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num  { font-size: 1.4rem; font-weight: 800; color: var(--black); letter-spacing: -.04em; line-height: 1; }
.proof-lbl  { font-size: .68rem; color: var(--gray-400); font-weight: 500; }
.proof-div  { width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0; }

/* ── Hero mockup ─────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mockup-wrap { position: relative; width: 100%; max-width: 480px; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.mockup-browser {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url-bar {
  flex: 1; background: var(--white); border-radius: 5px;
  padding: 4px 10px; font-size: .7rem; color: var(--gray-400);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 5px;
  text-decoration: none;
}
.mockup-url-bar--link {
  cursor: pointer;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.mockup-url-bar--link:hover {
  background: var(--teal-light);
  border-color: rgba(14,165,160,.3);
  color: var(--teal-dark);
}
.url-view-btn {
  margin-left: auto;
  background: var(--teal);
  color: #fff;
  font-size: .63rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .02em;
}
.badge-sample-1 {
  bottom: -50px; left: 37%;
  animation: floatBadge 5.5s ease-in-out infinite .8s;
}
.badge-sample-2 {
  bottom: -50px; right: -20px;
  animation: floatBadge2 6.5s ease-in-out infinite 1.2s;
}

/* ── Site preview badges ─────────────────────────────────── */
.site-preview-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 140px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--black);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.site-preview-badge:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.spb-screen {
  position: relative;
  height: 72px;
  overflow: hidden;
  background: #0a0a0a;
  flex-shrink: 0;
}
.spb-info {
  padding: 6px 8px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
}
.spb-dots { display: flex; gap: 3px; flex-shrink: 0; }
.spb-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--gray-200); }
.spb-dots span:nth-child(1) { background: #ff5f57; }
.spb-dots span:nth-child(2) { background: #febc2e; }
.spb-dots span:nth-child(3) { background: #28c840; }
.spb-domain {
  flex: 1;
  font-size: .6rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spb-cta {
  font-size: .58rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.mockup-screen { padding: 16px; }
.mockup-nav-sim { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mockup-logo-sim { width: 60px; height: 8px; background: var(--gradient); border-radius: 4px; }
.mockup-links-sim { display: flex; gap: 6px; }
.mockup-links-sim span { width: 26px; height: 7px; background: var(--gray-200); border-radius: 3px; }
.mockup-hero-sim {
  background: linear-gradient(135deg, var(--teal-light), #e0f2fe);
  border-radius: 8px; padding: 16px; margin-bottom: 12px;
}
.mockup-h-line { height: 10px; border-radius: 4px; margin-bottom: 7px; }
.mockup-h-line:nth-child(1) { background: var(--gray-800); width: 75%; }
.mockup-h-line:nth-child(2) { background: var(--gray-400); width: 55%; }
.mockup-h-line:nth-child(3) { background: var(--gray-300); width: 65%; height: 7px; margin-top: 10px; }
.mockup-btn-sim { display: inline-block; background: var(--gradient); border-radius: 20px; width: 88px; height: 24px; margin-top: 10px; }
.mockup-cards-sim { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.mockup-card-sim { background: var(--gray-100); border-radius: 6px; height: 44px; }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  font-size: .76rem; color: var(--black);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
}
.float-badge .badge-title { font-weight: 700; font-size: .78rem; }
.float-badge .badge-sub   { color: var(--gray-400); font-size: .68rem; }

@keyframes floatBadge  { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0) rotate(1deg)}  50%{transform:translateY(-10px) rotate(1deg)} }

.badge-live  { bottom: -10px; left: -60px;             animation: floatBadge  5s ease-in-out infinite; }
.badge-speed { top: 58px;    left: -10px;              animation: floatBadge2 6s ease-in-out infinite; }
.badge-leads { top: 42%;     right: -10px;             animation: floatBadge  7s ease-in-out infinite .4s; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }

/* ── Logo / industry strip ───────────────────────────────── */
.logo-strip {
  padding: 32px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logo-strip-inner { display: flex; align-items: center; gap: 36px; justify-content: center; flex-wrap: wrap; }
.logo-strip-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); white-space: nowrap; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.industry-tag {
  padding: 5px 13px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-pill);
  font-size: .77rem;
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: var(--shadow);
}

/* ── Feature grid ────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.feat-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--t) var(--ease);
}
.feat-card:hover { background: var(--teal-light); }
.feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--teal-light);
  border: 1px solid rgba(14,165,160,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feat-card p  { color: var(--gray-500); font-size: .86rem; line-height: 1.65; }

/* ── Process ─────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 33px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal), transparent);
  opacity: .2;
}
.process-card {
  text-align: center; padding: 28px 18px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: all var(--t) var(--ease);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-teal);
}
.process-card h3 { font-size: .95rem; margin-bottom: 8px; }
.process-card p  { font-size: .84rem; color: var(--gray-500); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  border-radius: var(--r-xl); padding: 36px 28px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  position: relative;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: var(--shadow-teal);
}
.price-name { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; }
.price-amt  { font-size: 3rem; font-weight: 800; color: var(--black); letter-spacing: -.05em; line-height: 1; margin-bottom: 4px; }
.price-sub  { font-size: .8rem; color: var(--gray-400); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.price-features li { display: flex; gap: 9px; align-items: flex-start; font-size: .875rem; color: var(--gray-600); line-height: 1.4; }
.tick { color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: .875rem; }
.compare-table th { font-weight: 700; color: var(--black); background: var(--gray-50, #f9fafb); }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table .c-check { color: var(--teal); font-size: 1.1rem; }
.compare-table .c-dash  { color: var(--gray-300); }
.compare-table tr:hover td { background: var(--off-white); }

.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.addon-card { border: 1px solid var(--gray-200); border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column; gap: 8px; transition: all var(--t) var(--ease); }
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,160,.3); }
.addon-price { font-size: 1.8rem; font-weight: 800; color: var(--teal); letter-spacing: -.04em; }
.addon-name  { font-weight: 700; color: var(--black); }
.addon-desc  { font-size: .82rem; color: var(--gray-500); }
.care-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Bitcoin */
.btc-section { background: #0f172a; border-radius: var(--r-xl); padding: 44px; margin-top: 44px; border: 1px solid rgba(255,255,255,.06); }
.btc-pkg-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.btc-pkg-btn { padding: 10px 20px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.15); background: transparent; color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 600; cursor: pointer; transition: all var(--t); }
.btc-pkg-btn:hover, .btc-pkg-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.btc-details { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; background: rgba(255,255,255,.04); border-radius: var(--r-lg); padding: 28px; border: 1px solid rgba(255,255,255,.06); }
.btc-address-box { font-family: monospace; font-size: .78rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 12px 14px; word-break: break-all; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.copy-btn { padding: 8px 20px; border-radius: var(--r-pill); background: var(--teal); color: var(--white); border: none; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all var(--t); }
.copy-btn:hover { background: var(--teal-dark); }

/* ── Testimonials ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--t) var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-body  { font-size: .88rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av   { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); color: var(--white); font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: .84rem; font-weight: 700; color: var(--black); }
.testi-biz  { font-size: .75rem; color: var(--gray-400); }

/* ── Big CTA ─────────────────────────────────────────────── */
.big-cta {
  background: #0f172a;
  border-radius: 24px; padding: 76px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.big-cta::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,160,.18) 0%, transparent 70%);
  top: -180px; right: -80px; pointer-events: none;
}
.big-cta h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.big-cta p  { color: rgba(255,255,255,.5); max-width: 460px; margin: 0 auto 32px; position: relative; z-index: 1; }
.big-cta .eyebrow { justify-content: center; margin-bottom: 14px; position: relative; z-index: 1; }
.big-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Page header (inner pages) ───────────────────────────── */
.page-hdr {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--teal-light) 0%, #e0f2fe 50%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hdr::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,160,.1) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.page-hdr h1 { position: relative; z-index: 1; margin-bottom: 14px; }
.page-hdr p  { color: var(--gray-500); max-width: 540px; margin: 0 auto; font-size: 1.02rem; position: relative; z-index: 1; }
.page-hdr .eyebrow { justify-content: center; position: relative; z-index: 1; }

/* ── Stats row (dark section) ────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(255,255,255,.06);
  border-radius: var(--r-xl); overflow: hidden;
}
.stat-item { padding: 40px 28px; text-align: center; background: rgba(255,255,255,.03); }
.stat-num  { font-size: 2.8rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.stat-lbl  { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 500; }

/* ── Services page ───────────────────────────────────────── */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--gray-100); }
.svc-block:last-child { border-bottom: none; }
.svc-block.rev { direction: rtl; }
.svc-block.rev > * { direction: ltr; }
.svc-txt .eyebrow { justify-content: flex-start; }
.svc-txt h2 { margin-bottom: 14px; }
.svc-txt p  { margin-bottom: 18px; }
.svc-list   { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.svc-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .875rem; color: var(--gray-600); }
.svc-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.svc-vis-box { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 32px; transition: all var(--t) var(--ease); }
.svc-vis-box:hover { box-shadow: var(--shadow-lg); border-color: rgba(14,165,160,.2); }
.svc-vis-ico { font-size: 2rem; margin-bottom: 14px; }
.svc-vis-box h3 { margin-bottom: 10px; }

/* ── About page ──────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.val-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.val-card    { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 26px; transition: all var(--t) var(--ease); }
.val-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,160,.2); }
.val-icon    { font-size: 1.7rem; margin-bottom: 12px; }
.val-card h3 { font-size: .95rem; margin-bottom: 7px; }
.val-card p  { font-size: .84rem; }
.team-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-card   { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 28px; text-align: center; box-shadow: var(--shadow); transition: all var(--t) var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-av     { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); font-size: 1.7rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-role   { font-size: .74rem; color: var(--teal); font-weight: 600; margin-bottom: 9px; letter-spacing: .05em; text-transform: uppercase; }
.team-card p { font-size: .84rem; }

/* ── Contact page ────────────────────────────────────────── */
.contact-wrap        { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-left h2     { margin-bottom: 14px; }
.contact-left > p    { margin-bottom: 28px; }
.c-detail            { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.c-detail-ico        { width: 38px; height: 38px; border-radius: var(--r); background: var(--teal-light); border: 1px solid rgba(14,165,160,.2); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.c-detail-body strong { display: block; font-size: .875rem; margin-bottom: 2px; }
.c-detail-body span, .c-detail-body a { font-size: .84rem; color: var(--gray-500); }
.contact-form-box    { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form-group          { margin-bottom: 16px; }
.form-group label    { display: block; font-size: .82rem; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--gray-200); border-radius: var(--r); font-size: .875rem; font-family: var(--font); color: var(--black); background: var(--white); transition: border-color var(--t); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,160,.1); }
.form-group textarea { min-height: 108px; resize: vertical; }
.form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note           { font-size: .74rem; color: var(--gray-400); text-align: center; margin-top: 12px; }
.success-msg         { display:none; background:#f0fdf4; border:2px solid #bbf7d0; border-radius:var(--r-lg); padding:32px; text-align:center; margin-top:20px; }
.success-msg h3      { color:#16a34a; margin-bottom:8px; }
.success-msg p       { font-size:.9rem; margin:0; }
.what-next           { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.what-next-item      { display:flex; gap:14px; align-items:flex-start; font-size:.875rem; }
.what-next-num       { background:var(--gradient); color:white; border-radius:50%; width:24px; height:24px; display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:800; flex-shrink:0; }

/* ── Footer ──────────────────────────────────────────────── */
.footer      { background: #0f172a; color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer-top  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand p    { font-size: .84rem; color: rgba(255,255,255,.35); margin-top: 12px; max-width: 230px; line-height: 1.7; }
.footer-col h5     { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.footer-col a      { display: block; font-size: .84rem; color: rgba(255,255,255,.45); margin-bottom: 9px; transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.footer-bottom     { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: .76rem; color: rgba(255,255,255,.22); }
.footer-btm-links  { display: flex; gap: 18px; }
.footer-btm-links a { color: rgba(255,255,255,.22); font-size: .76rem; }
.footer-btm-links a:hover { color: rgba(255,255,255,.6); }
.footer-brand .nav-logo-img { filter: brightness(0) invert(1); opacity: .75; height: 36px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual     { display: none; }
  .feat-grid       { grid-template-columns: repeat(2,1fr); }
  .process-grid    { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-row       { grid-template-columns: repeat(2,1fr); }
  .about-split     { grid-template-columns: 1fr; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
  .val-grid        { grid-template-columns: repeat(2,1fr); }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
  .svc-block       { grid-template-columns: 1fr; gap: 28px; }
  .svc-block.rev   { direction: ltr; }
  .addon-grid      { grid-template-columns: repeat(2,1fr); }
  .care-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 28px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }
  .hero           { padding: 110px 0 56px; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .hero-proof     { flex-wrap: wrap; gap: 16px; }
  .feat-grid      { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .val-grid       { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: repeat(2,1fr); }
  .big-cta        { padding: 48px 24px; border-radius: 18px; }
  .big-cta-actions { flex-direction: column; align-items: center; }
  .footer-top     { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom  { flex-direction: column; gap: 10px; text-align: center; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form-box { padding: 22px; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .section        { padding: 60px 0; }
  .addon-grid     { grid-template-columns: 1fr; }
  .btc-details    { grid-template-columns: 1fr; }
  .page-hdr       { padding: 100px 0 56px; }
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */

@keyframes float-up-down-1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-up-down-2 {
  0%, 100% { transform: translateY(-6px); }
  50%       { transform: translateY(6px); }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  will-change: transform;
}
.portfolio-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.14), 0 6px 20px rgba(14,165,160,.18);
  transform: translateY(-4px) !important;
}

.portfolio-bounce-1 { animation: float-up-down-1 4s ease-in-out infinite; }
.portfolio-bounce-2 { animation: float-up-down-2 4.6s ease-in-out infinite; }

.portfolio-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #1e1e2e;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.portfolio-dots { display: flex; gap: 5px; }
.portfolio-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff5f57;
}
.portfolio-dots span:nth-child(2) { background: #febc2e; }
.portfolio-dots span:nth-child(3) { background: #28c840; }

.portfolio-url {
  flex: 1;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}

.portfolio-tag {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.portfolio-tag--live {
  background: rgba(40,200,64,.2);
  color: #28c840;
}

.portfolio-screen {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0a0a0a;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-visit {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
}

.portfolio-meta {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--gray-100);
}
.portfolio-client {
  font-weight: 700;
  font-size: .95rem;
  color: var(--black);
}
.portfolio-industry {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-bounce-1,
  .portfolio-bounce-2 { animation: none; }
}
