/* ============================================================
   AMRIX — style.css v4  |  Silver & Black Luxury Design
   ============================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
  --bg:            #000000;
  --bg-2:          #080808;
  --bg-3:          #0f0f0f;
  --bg-card:       #0d0d0d;
  --silver:        #c0c0c0;
  --silver-2:      #e8e8e8;
  --silver-dim:    #707070;
  --white:         #ffffff;
  --border:        rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.18);
  --t-fast:        0.2s ease;
  --t-med:         0.45s cubic-bezier(.22,.68,0,1.2);
  --radius:        12px;
  --radius-sm:     8px;
  --nav-h:         72px;
}

/* ── 2. RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--silver-2);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--silver); line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #d0d0d0 45%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}

/* ── 4. LAYOUT HELPERS ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: 760px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-label {
  margin-bottom: 20px;
  display: inline-flex;
}

.section-heading {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 540px;
  color: var(--silver-dim);
}

.section-header--center .section-sub {
  margin: 0 auto;
}

.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }
.mt { margin-top: 32px; }

/* ── 5. SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff 0%, #c0c0c0 60%, #707070 100%);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  transition: transform 0.08s linear;
}

/* ── 6. NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--t-fast), box-shadow var(--t-fast), backdrop-filter var(--t-fast);
}

.nav.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  box-shadow: 0 1px 0 var(--border);
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo */
.nav__logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__wordmark {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 50%, #909090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.nav__wordmark span {
  background: linear-gradient(180deg, #f0f0f0 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver-dim);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav__pay {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--silver);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__pay:hover {
  color: var(--white);
  border-color: var(--border-bright);
  background: rgba(255,255,255,0.04);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast), background var(--t-fast);
}

.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); }

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Primary: white bg, black text */
.btn--primary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn--primary:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;
  box-shadow: 0 8px 40px rgba(255,255,255,0.15);
  color: #000000;
}

/* Ghost: transparent, white border */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 4px 24px rgba(255,255,255,0.06);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 0.975rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Nav CTA override */
.nav__cta.btn--primary {
  padding: 9px 20px;
  font-size: 0.84rem;
}

/* ── 8. HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Polygon SVG background */
.hero-poly-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-poly-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay: subtle at top, heavy at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0 48px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 36px;
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(.22,.68,0,1.2) 0.1s both;
}

/* Hero title */
.hero__title {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  display: block;
}

.hero__title .line {
  display: block;
}

/* Each animated word */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  filter: blur(4px);
  animation: heroReveal 0.9s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: var(--d, 0.3s);
}

/* Hero subtitle */
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--silver-dim);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(.22,.68,0,1.2) 0.95s both;
}

/* Hero CTA row */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(.22,.68,0,1.2) 1.15s both;
}

/* Stats bar inside hero, at bottom */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-top: 1px solid var(--border);
  margin-top: 72px;
  padding-top: 36px;
  width: 100%;
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(.22,.68,0,1.2) 1.4s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  border-right: 1px solid var(--border);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #c8c8c8 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero__stat-lbl {
  font-size: 0.7rem;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 4px;
}

/* Cinematic word reveal keyframe */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ── 9. TRUST TICKER ── */
.trust-ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.trust-ticker__track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.trust-ticker:hover .trust-ticker__track {
  animation-play-state: paused;
}

.trust-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.trust-ticker__item svg {
  width: 15px;
  height: 15px;
  stroke: var(--silver-dim);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 10. TRUST BAR (static) ── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: 8px 28px;
}

.trust-bar__item svg {
  width: 15px;
  height: 15px;
  stroke: var(--silver-dim);
  flex-shrink: 0;
}

.trust-bar__sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ── 11. SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background var(--t-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  background: #111111;
}

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

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.service-card:hover .service-card__icon {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--silver);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--silver-dim);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: color var(--t-fast), letter-spacing var(--t-fast);
}

.service-card:hover .service-card__link {
  color: var(--white);
  letter-spacing: 0.08em;
}

/* ── 12. STATS SECTION ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  gap: 8px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__val {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #c8c8c8 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ── 13. DIFFERENTIATORS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 800px) {
  .diff-grid { grid-template-columns: 1fr; }
}

.diff-item {
  padding: 40px 32px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  position: relative;
}

.diff-item:last-child { border-right: none; }

.diff-item__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.diff-item h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.diff-item p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

/* ── 14. PROBLEM SECTION ── */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .problem { grid-template-columns: 1fr; gap: 40px; }
}

.problem__copy h2 { margin-bottom: 16px; }
.problem__copy p  { font-size: 1rem; }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.problem__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.problem__item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
}

.problem__item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--silver);
}

.problem__item h4 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.problem__item p {
  font-size: 0.88rem;
  color: var(--silver-dim);
}

/* ── 15. CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 72px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--silver-dim);
}

/* ── 16. REVIEWS SECTION ── */
.reviews {
  padding: 96px 0;
  background: var(--bg);
}

.reviews__header {
  margin-bottom: 48px;
  text-align: center;
}

.reviews__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.reviews__header p {
  font-size: 1rem;
  color: var(--silver-dim);
}

.reviews__header a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.reviews__header a:hover { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #c8c8c8;
  font-size: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  width: fit-content;
}

.reviews__cta {
  text-align: center;
  margin-top: 8px;
}

/* ── 17. VIDEO SECTION ── */
.video-section {
  padding: 96px 0;
  background: var(--bg-2);
}

.video-section .section-header {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-placeholder {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}

.video-placeholder:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 14px
  );
  z-index: 0;
  pointer-events: none;
}

.video-placeholder__play {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-med);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-placeholder:hover .video-placeholder__play {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.65);
  transform: scale(1.08);
}

.video-placeholder__play svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  margin-left: 4px;
}

.video-placeholder__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
}

.video-placeholder__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.video-placeholder__sub {
  font-size: 0.75rem;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ── 18. PRICING SECTION ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

/* Featured card: white bg, black text */
.pricing-card--featured {
  background: #fff !important;
  color: #111;
  border-color: #fff;
  box-shadow: 0 20px 60px rgba(255,255,255,0.08);
}

.pricing-card--featured:hover {
  box-shadow: 0 24px 72px rgba(255,255,255,0.14);
  border-color: #fff;
}

.pricing-card--featured .pricing-name,
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-note,
.pricing-card--featured .pricing-price__val,
.pricing-card--featured .pricing-feature {
  color: #111;
}
.pricing-card--featured .pricing-price__val {
  background: none;
  -webkit-text-fill-color: #111;
}
.pricing-card--featured .pricing-feature::before { color: #111; }
.pricing-card--featured .pricing-features { border-top-color: rgba(0,0,0,0.1); }
.pricing-card--featured .btn--primary {
  background: #111;
  color: #fff;
}
.pricing-card--featured .btn--primary:hover {
  background: #333;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price__val {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #c8c8c8 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--silver-dim);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--silver);
}

.pricing-feature::before {
  content: '\2713';
  font-size: 0.75rem;
  color: var(--silver-dim);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── 19. CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.02em;
}

.form-label .opt {
  font-weight: 400;
  color: var(--silver-dim);
  font-size: 0.78rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23707070' stroke-width='2' viewBox='0 0 12 8'%3E%3Cpolyline points='1,1 6,7 11,1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option { background: var(--bg-3); color: var(--white); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-hint { font-size: 0.82rem; color: var(--silver-dim); }

.captcha-wrap { margin-bottom: 20px; }

/* Contact info */
.contact-info h3 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; font-size: 0.95rem; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--silver);
}

.contact-detail h4 { font-size: 0.82rem; font-weight: 700; color: var(--silver-dim); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.92rem; color: var(--silver); }
.contact-detail a:hover { color: var(--white); }

.response-box {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.response-box h4 { font-size: 0.875rem; color: var(--white); margin-bottom: 8px; }
.response-box p  { font-size: 0.85rem; color: var(--silver-dim); line-height: 1.65; }

/* ── 20. STEPS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--silver);
  background: var(--bg-card);
}

.step h3 { margin-bottom: 6px; font-size: 1rem; }
.step p  { font-size: 0.9rem; color: var(--silver-dim); }

/* ── 21. ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-grid__copy h2 { margin-bottom: 8px; }

.about-grid__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.about-grid__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.about-grid__visual-mark {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* ── 22. SERVICE PAGE LAYOUT ── */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .svc-layout { grid-template-columns: 1fr; }
}

.svc-content h2 { font-size: 1.5rem; margin-bottom: 14px; margin-top: 40px; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content p   { font-size: 0.95rem; color: var(--silver-dim); margin-bottom: 14px; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--silver);
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.svc-list li::before {
  content: '\2192';
  color: var(--silver-dim);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.svc-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.svc-sidebar-card h3 { font-size: 1rem; margin-bottom: 4px; }
.svc-sidebar-card p  { font-size: 0.88rem; color: var(--silver-dim); }

/* ── 23. FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand { max-width: 280px; }

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}

.footer__wordmark {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__wordmark span {
  background: linear-gradient(180deg, #e8e8e8 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--silver-dim);
  padding: 5px 0;
  transition: color var(--t-fast);
  text-decoration: none;
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--silver-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--silver-dim);
  transition: color var(--t-fast);
  text-decoration: none;
}

.footer__legal a:hover { color: var(--white); }

/* ── 24. PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 20px; }
.page-hero h1  { margin-bottom: 14px; }
.page-hero p   { font-size: 1.05rem; color: var(--silver-dim); max-width: 560px; }

.page-hero--about {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), url('../assets/images/about-office.jpg') center/cover no-repeat;
}
.page-hero--services {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), url('../assets/images/managed-it.jpg') center/cover no-repeat;
}
.page-hero--contact {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), url('../assets/images/contact-hero.jpg') center/cover no-repeat;
}
.page-hero--portfolio {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), url('../assets/images/web-dev.jpg') center/cover no-repeat;
}
.page-hero--service {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), url('../assets/images/hero-it.jpg') center/cover no-repeat;
}

/* ── PORTFOLIO CARD IMAGES ── */
.portfolio-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* ── 25. SCROLL REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.1),
              transform 0.65s cubic-bezier(.22,.68,0,1.1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── 26. PANEL / STATUS WIDGET ── */
.hero__panel-wrap {
  perspective: 1100px;
}

.hero__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.panel-status__dot {
  width: 8px;
  height: 8px;
  background: #a8a8a8;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(168,168,168,0.2);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(168,168,168,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(168,168,168,0.06); }
}

.panel-status p { font-size: 0.82rem; color: var(--silver); font-weight: 600; }

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-metric {
  padding: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.panel-metric__val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.panel-metric__lbl {
  font-size: 0.68rem;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.panel-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.panel-service__name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-weight: 500;
}

.panel-service__name svg {
  width: 14px;
  height: 14px;
  stroke: var(--silver-dim);
}

.panel-service__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-service__badge.warn {
  background: rgba(255,255,255,0.04);
  color: var(--silver-dim);
}

/* ── 27. PAY PANEL ── */
.pay-panel {
  text-align: center;
  padding: 64px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 64px;
}

.pay-panel h2 { margin-bottom: 12px; }
.pay-panel p  {
  font-size: 1rem;
  color: var(--silver-dim);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.pay-panel .pay-note {
  font-size: 0.82rem;
  margin-top: 16px;
  margin-bottom: 0;
  opacity: 0.5;
}

/* ── 28. MOBILE ── */
@media (max-width: 900px) {
  .nav__bar { padding: 0 20px; }

  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    overflow-y: auto;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav__link {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__pay {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav__cta.btn--primary {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    border: 1px solid #fff;
    border-radius: var(--radius-sm);
  }

  .nav__toggle { display: flex; }

  .hero__inner { padding: 40px 0 32px; }

  .hero__stat { padding: 0 20px; }
  .hero__stat-val { font-size: 1.2rem; }

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

  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none; border-bottom: 1px solid var(--border); }
  .diff-item:last-child { border-bottom: none; }

  .section { padding: 64px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero__stats {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 4px;
  }

  .hero__stat:last-child { border-bottom: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }

  .cta-banner { padding: 48px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

/* ── HOW WE WORK ── */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.how-step { position: relative; }
.how-step__num { font-size: 3rem; font-weight: 800; opacity: 0.06; position: absolute; top: -8px; left: 0; line-height: 1; }
.how-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.how-step p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }
.how-step { transition: transform 0.3s ease; }
.how-step:hover { transform: translateY(-4px); }
@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-grid { grid-template-columns: 1fr; } }

/* ── PAGE LOAD FADE ── */
body { animation: pageIn 0.5s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 24px; right: 92px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.3s ease; z-index: 9998; backdrop-filter: blur(8px); }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: rgba(255,255,255,0.2); }
.back-top svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .back-top { bottom: 16px; right: 80px; } }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; z-index: 10000; transform: translateY(120%); transition: transform 0.5s cubic-bezier(.22,.68,0,1.1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__card { background: #fff; color: #1a1a1a; border-radius: 16px; padding: 24px; max-width: 380px; box-shadow: 0 8px 40px rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 12px; }
.cookie-banner__icon { font-size: 1.8rem; }
.cookie-banner__content strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.cookie-banner__content p { margin: 0; font-size: 0.85rem; line-height: 1.5; color: #555; }
.cookie-banner__content a { color: #111; font-weight: 500; text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 8px; margin-top: 4px; }
.cookie-banner__btn { padding: 10px 24px; border-radius: 8px; border: none; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: all 0.2s; font-family: inherit; }
.cookie-banner__btn--accept { background: #111; color: #fff; flex: 1; }
.cookie-banner__btn--accept:hover { background: #333; }
.cookie-banner__btn--decline { background: transparent; color: #666; border: 1px solid #ddd; }
.cookie-banner__btn--decline:hover { background: #f5f5f5; }
@media (max-width: 560px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; } .cookie-banner__card { max-width: 100%; } }


/* 3D Card Tilt on Hover */
.service-card { perspective: 800px; transform-style: preserve-3d; }
.service-card:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-1deg); box-shadow: 0 20px 60px rgba(255,255,255,0.04), 0 0 0 1px rgba(255,255,255,0.08); }

/* Glassmorphism effect on pricing cards */
.pricing-card { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(255,255,255,0.03); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(255,255,255,0.06); }

/* Glow effect on primary buttons */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.15); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.5s ease, height 0.5s ease; }
.btn--primary:hover::after { width: 300px; height: 300px; }

/* Portfolio card hover lift */
.portfolio-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255,255,255,0.05); }

/* Review card subtle depth */
.review-card { transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-4px) scale(1.01); }

/* Diff item hover */
.diff-item { transition: transform 0.3s ease, background 0.3s ease; }
.diff-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.03); border-radius: 12px; }

/* Problem item hover */
.problem__item { transition: transform 0.3s ease; }
.problem__item:hover { transform: translateX(4px); }

/* Smooth image zoom on portfolio cards */
.portfolio-card__img { transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-card__img { transform: scale(1.03); }

/* Legal page spacing */
.legal-content h3 { margin-top: 36px; margin-bottom: 16px; }
.legal-content p { margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; line-height: 1.7; }

/* Improved readability */
.section p, .page-hero p { line-height: 1.75; }
.container--sm p { line-height: 1.8; margin-bottom: 14px; }

/* Principle icon sizing */
.principle__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.principle__icon svg {
  width: 28px;
  height: 28px;
  stroke: #c0c0c0;
}
.principle__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SILVER AURORA BOREALIS ── */
.aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: auroraFloat 20s ease-in-out infinite;
}
.aurora__blob--1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(192,192,192,0.15), rgba(160,160,160,0.05), transparent 70%);
  top: -10%;
  left: -5%;
  animation-duration: 22s;
}
.aurora__blob--2 {
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(220,220,220,0.1), rgba(180,180,180,0.04), transparent 70%);
  top: 20%;
  right: -10%;
  animation-duration: 26s;
  animation-delay: -8s;
}
.aurora__blob--3 {
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,200,200,0.08), rgba(150,150,150,0.03), transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-duration: 30s;
  animation-delay: -14s;
}
@keyframes auroraFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(60px, -40px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translate(40px, 20px) rotate(4deg) scale(1.05);
  }
}

/* Reduce aurora on mobile for performance */
@media (max-width: 700px) {
  .aurora { opacity: 0.25; }
  .aurora__blob { filter: blur(60px); }
  .aurora__blob--1 { width: 300px; height: 200px; }
  .aurora__blob--2 { width: 250px; height: 180px; }
  .aurora__blob--3 { width: 350px; height: 150px; }
}

/* Ensure content above aurora */
.nav, .hero, .section, .section--alt, .section--alt2, .page-hero, .footer, .trust-ticker, .video-section, .reviews {
  position: relative;
  z-index: 1;
}

/* ── SHADCN-INSPIRED REFINEMENTS ── */

/* Refined card borders */
.service-card,
.pricing-card,
.review-card,
.diff-item,
.portfolio-card {
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card:hover,
.portfolio-card:hover,
.review-card:hover {
  border-color: rgba(255,255,255,0.12);
}

/* Refined button styling */
.btn {
  letter-spacing: 0.01em;
  font-weight: 500;
}
.btn--primary {
  backdrop-filter: blur(4px);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

/* Refined section labels */
.label {
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

/* Subtle dividers between sections */
.section + .section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
  margin-bottom: 0;
}

/* Refined footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}
