/* =========================================================
   Nova SMM — styles.css
   Light theme • dark pricing accent • full responsive
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Colors */
  --bg:            #f4f4f4;
  --bg-page:       #ececec;
  --card:          #ffffff;
  --card-inner:    #f8f8f8;

  --dark:          #0a0a0a;
  --dark-alt:      #141416;
  --dark-card:     #1a1a1c;
  --dark-hover:    #202024;

  --text:          #0a0a0a;
  --text-muted:    #5f6268;
  --text-dim:      #8a8d94;

  --border:        rgba(10,10,10,0.08);
  --border-strong: rgba(10,10,10,0.16);

  --accent-green:  #2e8b57;
  --accent-green-2:#6ecf8c;
  --error:         #e04a4a;

  /* Radii */
  --radius-sm:  12px;
  --radius:     20px;
  --radius-lg:  28px;
  --radius-xl:  36px;

  /* Typography */
  --font-display: 'Clash Display', 'General Sans', Inter, system-ui, -apple-system, sans-serif;
  --font-body:    'General Sans', Inter, system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --pad-x: clamp(16px, 4vw, 40px);
  --section-y: clamp(48px, 8vw, 110px);
  --gap: clamp(10px, 1.4vw, 16px);

  /* Shadows */
  --shadow-card:   0 1px 2px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-hover:  0 4px 8px rgba(0,0,0,0.05), 0 20px 40px rgba(0,0,0,0.09);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.12);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

/* Subtle diagonal streaks — echoes the Framer light look */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 45%, rgba(0,0,0,0.025) 50%, transparent 55%),
    linear-gradient(295deg, transparent 60%, rgba(0,0,0,0.02) 65%, transparent 70%);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.section {
  padding: var(--section-y) 0;
  position: relative;
}

/* Typography */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
}
.section-title--center { text-align: center; }
.section-lead {
  color: var(--text-muted);
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 720px;
  line-height: 1.55;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
  position: relative;
}
.section-head .section-title { text-align: center; }
.section-head .section-lead {
  margin: 16px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .18s cubic-bezier(.2,.7,.2,1),
              background .2s ease,
              border-color .2s ease,
              color .2s ease,
              box-shadow .3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--dark);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #1c1c1e;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.btn-primary .arrow { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  background: var(--card);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.btn-full { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; min-height: 42px; }
.arrow {
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  box-shadow: var(--shadow-card);
  pointer-events: auto;
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled .header-inner {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-hover);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon { width: 26px; height: 26px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  margin-top: 3px;
  text-transform: uppercase;
}
.header-locale {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 12px;
  border-left: 1px solid var(--border);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  margin-left: auto;
  font-size: 15px;
  color: var(--text-muted);
}
.nav a {
  transition: color .2s ease;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--dark);
  margin-left: auto;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 40px 0 var(--section-y); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #b6b9c1 65%, #6b6e75);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
  max-width: 14ch;
}
.hero-subtitle {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 500px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

/* Hero right card */
.hero-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: clamp(14px, 1.6vw, 20px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1vw, 12px);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.hero-sphere {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #eef0f2, #dfe1e5);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.hero-sphere .sphere-svg { width: 68%; max-width: 280px; }
.sphere-float {
  transform-box: view-box;
  transform-origin: 200px 200px;
  animation: sphere-float 6s ease-in-out infinite;
}
.sphere-hi {
  transform-box: view-box;
  transform-origin: 200px 200px;
  animation: sphere-hi-orbit 8s linear infinite;
}
@keyframes sphere-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(-8px, -6px) rotate(-2deg); }
  50%      { transform: translate(0, -10px) rotate(0deg); }
  75%      { transform: translate(8px, -6px) rotate(2deg); }
}
@keyframes sphere-hi-orbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-card-info,
.hero-card-stat {
  background: var(--card-inner);
  border-radius: var(--radius);
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 1.8vw, 20px);
}
.hero-card-info {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-card-info .info-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  animation: twinkle 5s ease-in-out infinite;
}
.hero-card-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.hero-card-info p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.45;
}
.hero-card-stat .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-card-stat .stat-label {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 6px;
}

/* ---------- Problem ---------- */
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 20px 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: -0.015em;
  box-shadow: var(--shadow-card);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
  text-align: center;
  cursor: default;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.problem-answer {
  margin: 40px auto 0;
  color: var(--text-muted);
  max-width: 780px;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
  position: relative;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 60px 20px;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
/* ---------- Services sphere (horizontally moving decoration) ---------- */
.services-wrap { position: relative; }
.services-sphere {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.88;
  animation: services-sphere-move 14s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.05));
}
.services-sphere svg {
  width: 100%; height: 100%;
  animation: sphere-hi-orbit 8s linear infinite;
}
@keyframes services-sphere-move {
  0%   { left:   0%; transform: translate(-50%, -50%) rotate(0deg); }
  50%  { left: 100%; transform: translate(-50%, -50%) rotate(180deg); }
  100% { left:   0%; transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- Results ---------- */
.results-wrap {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 2vw, 28px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap);
}
.results-left {
  background: var(--card-inner);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 380px;
}
.donut {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
}
.donut svg { width: 100%; height: 100%; }
.donut-progress {
  stroke-dasharray: 264 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1);
}
.donut.animated .donut-progress {
  stroke-dashoffset: 44; /* ~83% arc */
}
.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20%;
}
.donut-label { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.donut-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.donut-delta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--accent-green);
  max-width: 160px;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.donut-delta .up-icon { width: 12px; height: 12px; color: var(--accent-green); }

.results-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.result-card {
  background: var(--card-inner);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  transition: transform .25s ease, background .25s ease;
}
.result-card:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.result-label { font-size: 13px; color: var(--text-muted); }
.result-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.up-icon-sm {
  width: 16px; height: 16px;
  color: var(--accent-green);
}
.result-bar {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin: 14px 0 10px;
  overflow: hidden;
}
.result-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--dark);
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(.2,.7,.2,1) .2s;
}
.result-card.animated .result-bar span { width: var(--w); }
.result-delta {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: auto;
}
.result-delta.up { color: var(--accent-green); }

/* ---------- Pricing (dark) ---------- */
.pricing {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 40px var(--pad-x);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.pricing::before,
.pricing::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.14), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
}
.pricing::before { top: -60px; left: -60px; }
.pricing::after { bottom: -80px; right: -60px; }
.pricing .section-title { color: #fff; }
.pricing .section-lead  { color: rgba(255,255,255,0.6); }
.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 2;
}

/* Decorative floating stars */
.pricing-star {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.pricing-star--tl { top: 20px; left: 3%; width: clamp(70px, 10vw, 130px); animation: float-y 8s ease-in-out infinite; }
.pricing-star--tr { top: 60px; right: 5%; width: clamp(60px, 8vw, 100px); animation: float-y-alt 9s ease-in-out infinite; }
.pricing-star--bl { bottom: 40px; left: 8%; width: clamp(50px, 7vw, 90px); animation: float-y-alt 10s ease-in-out infinite .5s; }
.pricing-star--br { bottom: 40px; right: 4%; width: clamp(65px, 9vw, 110px); animation: float-y 11s ease-in-out infinite .8s; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
  margin-top: clamp(32px, 4vw, 48px);
}
.price-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  background: var(--dark-hover);
}
.price-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}
.price-name span {
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  font-size: 14px;
  display: block;
  margin-top: 2px;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.price-note {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-top: -10px;
}
.price-desc {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.5;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-list li {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.price-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.55);
}

/* ---------- Testimonials ---------- */
.testimonials-head { position: relative; padding-top: 30px; }
.testimonials-head .star-deco {
  position: absolute;
  left: 4%; top: -20px;
  width: 80px;
  opacity: 0.6;
  pointer-events: none;
  animation: float-y-alt 9s ease-in-out infinite;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.quote {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
/* staggered heights only on desktop */
.quote:nth-child(1) { margin-top: 0; }
.quote:nth-child(2) { margin-top: 40px; }
.quote:nth-child(3) { margin-top: 10px; }
.quote:nth-child(4) { margin-top: 60px; }
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Process ---------- */
.process-wrap { position: relative; margin-top: 40px; padding: 55px 0; }
.process-connector {
  position: absolute;
  top: 0;
  left: 2%;
  right: 2%;
  height: 100%;
  width: 96%;
  z-index: 0;
  pointer-events: none;
}
.connector-path {
  stroke-dasharray: 5 7;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.4s cubic-bezier(.2,.7,.2,1);
}
.process-connector.animated .connector-path {
  stroke-dashoffset: 0;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.process-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
  cursor: default;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.step-num {
  font-family: var(--font-display);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(13px, 1.1vw, 14px);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ---------- Trust ---------- */
.trust-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-card);
}
.trust-card .section-title { text-align: left; }
.trust-content p {
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.6;
  font-size: clamp(14px, 1.1vw, 15px);
}
.trust-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  background: linear-gradient(180deg, #e8e8ec, #c6c8cd);
}
.trust-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.trust-photo:hover img { transform: scale(1.03); }
.trust-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: #fff;
  padding: 16px 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
}
.trust-caption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: block;
}
.trust-caption span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  display: block;
  line-height: 1.35;
}

/* ---------- Contact ---------- */
.contact-wrap {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 3vw, 40px);
}
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  align-self: start;
  height: fit-content;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.contact-info-card a {
  display: block;
  padding: 10px 0;
  transition: color .2s;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-info-card a:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-card .ci-label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}
.contact-info-card .ci-value {
  color: #fff;
  font-size: 15px;
}
.contact-info-card a:hover .ci-value { color: #fff; text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 13px;
  color: var(--text-muted);
}
.form-row label span { color: var(--error); }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--card-inner);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  min-height: 48px;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-dim); }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10,10,10,0.06);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-status {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 18px;
  margin-top: 4px;
}
.form-status.ok { color: var(--accent-green); }
.form-status.err { color: var(--error); }

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
}
.footer-icon { width: 22px; height: 22px; }
.footer-tags { text-align: center; }
.footer-contacts { text-align: right; }
.footer-contacts a { color: var(--text); transition: color .2s; }
.footer-contacts a:hover { color: var(--text-muted); }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ---------- Animations ---------- */
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}
@keyframes float-y-alt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(10px) rotate(-5deg); }
}
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
  50%      { transform: scale(1.08) rotate(15deg); opacity: 0.75; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1),
              transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Grid stagger — children animate in sequence */
.stagger > * { opacity: 0; }
.stagger.visible > * { animation: fade-in-up .7s cubic-bezier(.2,.7,.2,1) both; }
.stagger.visible > *:nth-child(1) { animation-delay: .00s; }
.stagger.visible > *:nth-child(2) { animation-delay: .08s; }
.stagger.visible > *:nth-child(3) { animation-delay: .16s; }
.stagger.visible > *:nth-child(4) { animation-delay: .24s; }
.stagger.visible > *:nth-child(5) { animation-delay: .32s; }
.stagger.visible > *:nth-child(6) { animation-delay: .40s; }
.stagger.visible > *:nth-child(7) { animation-delay: .48s; }

/* Hero entrance animations */
.hero-tag       { animation: fade-in-up .6s cubic-bezier(.2,.7,.2,1) .00s both; }
.hero-title     { animation: fade-in-up .8s cubic-bezier(.2,.7,.2,1) .10s both; }
.hero-subtitle  { animation: fade-in-up .7s cubic-bezier(.2,.7,.2,1) .25s both; }
.hero-actions   { animation: fade-in-up .7s cubic-bezier(.2,.7,.2,1) .40s both; }
.hero-card      { animation: fade-in-up .9s cubic-bezier(.2,.7,.2,1) .20s both; }

/* ============================================================
   RESPONSIVE — Mobile-first breakpoints
   Phone (0-479) → Phone L (480-639) → Tablet P (640-767)
   → Tablet L (768-1023) → Desktop S (1024-1279) → Desktop
   ============================================================ */

/* Desktop small (< 1280) */
@media (max-width: 1279px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
  .pricing-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .price-card { padding: 22px 18px; }
  .price-list li { font-size: 12px; }
}

/* Tablet landscape (< 1024) */
@media (max-width: 1023px) {
  :root {
    --radius-xl: 28px;
    --radius-lg: 24px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-left { max-width: 700px; }
  .hero-card {
    max-width: 560px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-title { max-width: 20ch; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-sphere { width: clamp(120px, 15vw, 180px); opacity: 0.7; }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { min-height: 180px; }

  .results-wrap { grid-template-columns: 1fr; }
  .results-left { min-height: 320px; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card:nth-child(4) { grid-column: 1 / 3; }
  .price-card:nth-child(5) { grid-column: 3 / 4; }

  .testimonials { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quote:nth-child(n) { margin-top: 0; }
  .quote { padding: 22px 24px; }

  .process-list { grid-template-columns: repeat(4, 1fr); }
  .process-connector { display: none; }

  .trust-card { grid-template-columns: 1fr; }
  .trust-photo { max-width: 480px; margin: 0 auto; width: 100%; }
  .trust-card .section-title { text-align: center; }

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

/* Tablet portrait (< 768) */
@media (max-width: 767px) {
  :root {
    --radius-xl: 24px;
    --pad-x: 16px;
    --section-y: clamp(48px, 12vw, 80px);
    --gap: 10px;
  }
  .header { top: 10px; }
  .header-inner { padding: 8px 8px 8px 16px; gap: 10px; }
  .logo-sub { display: none; }
  .header-locale { display: none; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    gap: 0;
    box-shadow: var(--shadow-hover);
    font-size: 17px;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .menu-toggle { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-sphere { display: none; }
  .service-card { min-height: 140px; padding: 40px 16px; }
  .service-card:nth-child(5) { grid-column: 1 / -1; }

  .results-right { grid-template-columns: 1fr; }
  .result-card { min-height: 120px; }
  .results-left { min-height: 280px; padding: 24px; }
  .donut { max-width: 240px; }

  .pricing {
    margin: 20px 0;
    border-radius: 0;
    padding: var(--section-y) 0;
  }
  .pricing::before, .pricing::after { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:nth-child(4),
  .price-card:nth-child(5) { grid-column: auto; }
  .price-card:nth-child(5) { grid-column: 1 / -1; }
  .pricing-star--tl,
  .pricing-star--bl { display: none; }
  .pricing-star--tr,
  .pricing-star--br { opacity: 0.3; }

  .testimonials { grid-template-columns: 1fr; gap: 10px; }
  .testimonials-head .star-deco { width: 60px; left: 2%; }

  .process-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .process-step { min-height: auto; padding: 16px; }

  .trust-card { padding: 24px; }
  .trust-photo { aspect-ratio: 4 / 5; max-width: 100%; }
  .trust-caption { left: 16px; right: 16px; bottom: 16px; padding: 12px 16px; }

  .contact-wrap { padding: 20px; }
  .contact-info-card { padding: 20px 22px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .footer-brand { justify-content: center; }
  .footer-tags,
  .footer-contacts { text-align: center; }
}

/* Phone landscape (< 640) */
@media (max-width: 639px) {
  .hero-card {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 8px;
  }
  .hero-sphere { aspect-ratio: 16 / 9; }
  .hero-card-info { padding: 14px 16px; }
  .hero-card-info h3 { font-size: 14px; }
  .hero-card-stat { padding: 14px 16px; }
  .hero-card-stat .stat-num { font-size: 26px; }

  .problem-card { padding: 16px 22px; font-size: 14px; }

  .quote { padding: 20px 22px; }
  .quote p { font-size: 14px; }
}

/* Phone (< 480) */
@media (max-width: 479px) {
  :root {
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 20px;
  }
  .hero { padding: 24px 0 60px; }
  .hero-title { font-size: clamp(30px, 9vw, 40px); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 120px; padding: 32px 20px; }
  .service-card:nth-child(5) { grid-column: auto; }

  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .hero-card { grid-template-columns: 1fr; }
  .hero-sphere { aspect-ratio: 5 / 3; }
  .hero-card-stat { text-align: center; }

  .btn { padding: 14px 22px; font-size: 14px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:nth-child(5) { grid-column: auto; }

  .process-list { grid-template-columns: 1fr; }

  .donut { max-width: 200px; }

  .contact-info-card,
  .contact-form { }
  .form-row input,
  .form-row textarea { font-size: 16px; /* prevents iOS zoom */ }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
