/* ========================================
   Credo Group — Dark Graphite Premium Industrial
   Apple Pro / Mac Pro / Titanium Mood
   ======================================== */

:root {
  --bg: #0b0c0e;
  --bg-soft: #111317;
  --surface: #171a1f;
  --surface-soft: #1f2329;
  --surface-glass: rgba(23, 26, 31, 0.72);

  --text: #f5f5f7;
  --text-soft: #d6d7da;
  --muted: #8b8f98;
  --line: rgba(255, 255, 255, 0.10);

  --metal: #c8ccd2;
  --metal-soft: #9da3ad;
  --gold: #c9a86a;
  --gold-soft: rgba(201, 168, 106, 0.16);

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-hero: 0 40px 120px rgba(0,0,0,0.55);
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --max-width: 1240px;
  --section-pad: clamp(80px, 12vw, 160px);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #dfc08a;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ========================================
   Typography
   ======================================== */

h1 {
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--text);
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text);
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .subtitle {
  margin: 20px auto 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-gold {
  background: rgba(201, 168, 106, 0.10);
  color: var(--text);
  border: 1px solid rgba(201, 168, 106, 0.38);
}

.btn-gold:hover {
  background: rgba(201, 168, 106, 0.18);
  border-color: rgba(201, 168, 106, 0.65);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  background: rgba(201, 168, 106, 0.16);
  color: #fff;
  border: 1px solid rgba(201, 168, 106, 0.46);
}

.btn-primary:hover {
  background: rgba(201, 168, 106, 0.24);
  border-color: rgba(201, 168, 106, 0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  transform: translateY(-2px);
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.header.is-scrolled {
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.logo span {
  font-weight: 500;
  color: var(--metal-soft);
}

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

.nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.header-phone {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 980px;
  border: 1px solid rgba(201, 168, 106, 0.38);
  color: var(--text);
  background: rgba(201, 168, 106, 0.08);
  transition: all var(--transition);
  letter-spacing: -0.01em;
}

.header-phone:hover {
  background: rgba(201, 168, 106, 0.16);
  border-color: rgba(201, 168, 106, 0.65);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 12, 14, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px 40px;
  flex-direction: column;
  gap: 28px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.mobile-nav .btn {
  margin-top: 24px;
  text-align: center;
}

.mobile-nav .header-phone {
  font-size: 17px;
  padding: 14px 28px;
  text-align: center;
  display: block;
}

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

.apple-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #08090b;
  isolation: isolate;
}

.apple-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.apple-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  animation: heroImageIn 1400ms cubic-bezier(.16,1,.3,1) both;
}

.apple-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,9,11,.18) 0%, rgba(8,9,11,.22) 38%, rgba(8,9,11,.78) 100%),
    linear-gradient(90deg, rgba(8,9,11,.72) 0%, rgba(8,9,11,.18) 45%, rgba(8,9,11,.48) 100%);
}

.apple-hero__content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  padding-top: 120px;
  padding-bottom: 72px;
}

.apple-hero__copy {
  max-width: 760px;
}

.apple-hero__copy .eyebrow {
  animation: heroTextIn 900ms cubic-bezier(.16,1,.3,1) 160ms both;
}

.apple-hero__copy h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: .92;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: #f5f5f7;
  animation: heroTextIn 1000ms cubic-bezier(.16,1,.3,1) 260ms both;
}

.apple-hero__copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.35;
  color: rgba(245,245,247,.76);
  animation: heroTextIn 1000ms cubic-bezier(.16,1,.3,1) 420ms both;
}

.apple-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  animation: heroTextIn 1000ms cubic-bezier(.16,1,.3,1) 560ms both;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

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

.hero {
  padding-top: calc(56px + clamp(64px, 10vw, 120px));
  padding-bottom: var(--section-pad);
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 168, 106, 0.16), transparent 32%),
    linear-gradient(135deg, #0b0c0e 0%, #15181d 48%, #090a0c 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-content h1 {
  font-size: clamp(52px, 5.2vw, 78px);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-content .subtitle {
  margin-bottom: 40px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 560px;
}

.hero-trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 980px;
  background: rgba(255,255,255,0.035);
  color: var(--metal);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-trust-list span::before {
  content: "";
  width: 18px;
  height: 1.5px;
  margin-right: 8px;
  background: var(--gold);
  border-radius: 2px;
  flex: 0 0 auto;
}

.hero-image {
  position: relative;
}

.hero-image-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
}

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

.hero-glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(23, 26, 31, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
}

.hero-glass-badge .badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-glass-badge .badge-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.hero-product-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: clamp(500px, 52vw, 650px);
  perspective: 1400px;
  isolation: isolate;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 8% -4% 6% 8%;
  background: radial-gradient(circle, rgba(201,168,106,0.24), transparent 58%);
  filter: blur(18px);
  opacity: 0.86;
  z-index: -2;
}

.hero-product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 35%, rgba(255,255,255,0.13), transparent 28%),
    radial-gradient(circle at 35% 70%, rgba(200,204,210,0.10), transparent 34%);
  z-index: -1;
  pointer-events: none;
}

.hero-product-card,
.hero-product-mini {
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1), border-color var(--transition), box-shadow var(--transition);
}

.hero-product-card-main {
  position: absolute;
  inset: 16% 0 18% 0;
  border-radius: 36px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 50px 140px rgba(0,0,0,.58);
  transform: rotateX(3deg) rotateY(-7deg) translateZ(0);
}

.hero-product-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 14px 18px;
  background: rgba(17,19,23,0.68);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.product-badge span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}

.product-badge strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.hero-product-mini {
  position: absolute;
  width: clamp(148px, 16vw, 210px);
  overflow: hidden;
  border-radius: 20px;
  background: rgba(23,26,31,0.64);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-product-mini img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-product-mini span {
  display: block;
  padding: 12px 14px 13px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-product-mini-1 {
  top: 2%;
  right: 0;
}

.hero-product-mini-2 {
  left: 0;
  bottom: 2%;
}

.hero-product-mini-3 {
  right: 8%;
  bottom: 0;
}

.hero-product-stage:hover .hero-product-card-main {
  border-color: rgba(201,168,106,0.28);
}

.products-proof {
  position: relative;
  overflow: hidden;
}

.products-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,106,0.10), transparent 36%);
  pointer-events: none;
}

/* ========================================
   Trust Bar
   ======================================== */

.trust-bar {
  padding: clamp(28px, 5vw, 56px) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 106, 0.10), transparent 34%),
    var(--bg-soft);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 30px 90px rgba(0,0,0,.35);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(201,168,106,0.11), transparent 42%);
  pointer-events: none;
}

.trust-contact,
.trust-grid {
  position: relative;
  z-index: 1;
}

.trust-contact h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.045em;
}

.trust-contact p {
  max-width: 420px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.trust-contact .btn {
  padding-left: 26px;
  padding-right: 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  padding: 22px 20px;
  min-height: 138px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.trust-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 18px;
  border-radius: 2px;
}

.trust-item h3 {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.trust-item p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* ========================================
   Sections
   ======================================== */

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

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

.section-darker {
  background: #0f1115;
}

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

/* ========================================
   Process Cards
   ======================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  padding: 40px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.25);
}

.process-number {
  font-size: 56px;
  font-weight: 800;
  color: rgba(201, 168, 106, 0.38);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.06em;
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ========================================
   Stats
   ======================================== */

.stats-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.045), transparent 38%),
    #0f1115;
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

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

.stats-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 28px;
}

.stat-item {
  padding: 34px 28px 32px;
  min-height: 178px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stat-item::before {
  content: "";
  display: block;
  width: 44px;
  height: 1.5px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.stat-item::after {
  content: "";
  position: absolute;
  inset: auto -30% -70% -30%;
  height: 90%;
  background: radial-gradient(circle, rgba(201,168,106,0.16), transparent 58%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32), 0 0 36px rgba(201,168,106,0.07);
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-value {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1), opacity 0.9s cubic-bezier(.16,1,.3,1);
}

.stat-value-word {
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 180px;
}

/* ========================================
   Partners
   ======================================== */

.partners-section {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--bg);
  overflow: hidden;
}

.partners-section .section-header {
  margin-bottom: 42px;
}

.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partners-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(170px, 16vw, 260px);
  padding: 18px 28px;
  margin-right: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  color: var(--metal);
  opacity: 0.45;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: opacity var(--transition), border-color var(--transition), color var(--transition);
}

.partners-track span:hover {
  opacity: 1;
  color: var(--text);
  border-color: rgba(201,168,106,0.26);
}

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

/* ========================================
   Product Cards
   ======================================== */

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

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.product-card-body {
  padding: 32px 28px;
}

.product-card-image {
  aspect-ratio: 4/3;
}

.product-card-line {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.product-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.product-card-body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

.link-arrow::after {
  content: " \2192";
  display: inline-block;
  transition: transform var(--transition);
}

.link-arrow:hover {
  color: #dfc08a;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ========================================
   Features (Why Credo)
   ======================================== */

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

.feature-col {
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.feature-col:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.25);
}

.feature-col h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.feature-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-soft);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,0.3), transparent);
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section .subtitle {
  margin: 0 auto 40px;
}

.cta-section .btn-group {
  justify-content: center;
  margin-bottom: 40px;
}

.contact-line {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
}

.contact-line a {
  color: var(--metal-soft);
  transition: color var(--transition);
}

.contact-line a:hover {
  color: var(--text);
}

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

.footer {
  padding: 56px 0 40px;
  background: #060709;
  border-top: 1px solid var(--line);
}

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

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: var(--metal-soft);
  margin-bottom: 8px;
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}

.footer .logo {
  font-size: 15px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Timeline
   ======================================== */

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 58px 0 36px;
  --progress: 0;
}

.process-line {
  position: absolute;
  top: 76px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), rgba(255,255,255,0.14), transparent);
  overflow: hidden;
}

.process-line-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  transform-origin: left center;
  transform: scaleX(var(--progress));
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}

.process-timeline .process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 12px;
  transform: translateY(12px);
  opacity: 0.58;
  transition: transform 600ms cubic-bezier(.16,1,.3,1), opacity 600ms ease;
}

.process-timeline .process-number {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(201,168,106,0.52);
  margin-bottom: 12px;
  transition: color 600ms ease;
}

.process-timeline .process-dot {
  width: 14px;
  height: 14px;
  background: #75664d;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  border: 1px solid rgba(201,168,106,0.38);
  transition: transform 600ms cubic-bezier(.16,1,.3,1), box-shadow 600ms ease, background 600ms ease, border-color 600ms ease;
}

.process-timeline .process-dot::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.16;
  transition: opacity 600ms ease;
}

.process-timeline .process-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  transition: color 600ms ease;
}

.process-timeline .process-text {
  font-size: 13px;
  color: var(--muted);
  max-width: 140px;
  margin: 0 auto;
  line-height: 1.45;
  opacity: 0.72;
  transition: opacity 600ms ease, color 600ms ease;
}

.process-timeline .process-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.process-timeline .process-step.is-active .process-dot {
  transform: scale(1.22);
  background: var(--gold);
  border-color: rgba(201,168,106,0.9);
  box-shadow: 0 0 0 8px rgba(201,168,106,.12), 0 0 28px rgba(201,168,106,.38);
}

.process-timeline .process-step.is-active .process-dot::before {
  opacity: 0.38;
}

.process-timeline .process-step.is-active .process-number {
  color: var(--gold);
}

.process-timeline .process-step.is-active .process-title {
  color: #fff;
}

.process-timeline .process-step.is-active .process-text {
  color: var(--text-soft);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .process-timeline .process-step:hover .process-dot {
    transform: scale(1.18);
  }

  .process-timeline .process-step:hover .process-title {
    color: #fff;
  }
}

/* ========================================
   Gallery
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(11, 12, 14, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 6px;
}

/* ========================================
   Product Page Hero
   ======================================== */

.product-hero {
  padding-top: calc(56px + clamp(64px, 10vw, 120px));
  padding-bottom: var(--section-pad);
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 168, 106, 0.1), transparent 40%),
    linear-gradient(180deg, #0b0c0e 0%, #111317 100%);
  overflow: hidden;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.product-hero-copy {
  max-width: 620px;
}

.product-hero h1 {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.product-hero .subtitle {
  margin-bottom: 40px;
}

.product-hero .btn-group {
  margin-bottom: 0;
}

.product-hero-showcase {
  position: relative;
}

.product-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4/3;
  background: var(--surface);
}

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

.product-spec-panel {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(320px, 54%);
  padding: 18px;
  background: rgba(17,19,23,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06);
}

.product-spec-panel div {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-spec-panel div::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1.5px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--gold);
}

.product-spec-panel div:last-child {
  border-bottom: none;
}

/* ========================================
   Specs
   ======================================== */

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

.spec-item {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), border-color var(--transition);
}

.spec-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 106, 0.2);
}

.spec-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.spec-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* ========================================
   Config Cards
   ======================================== */

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

.config-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.config-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.25);
}

.config-card-visual {
  aspect-ratio: 3/2;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.config-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.config-card-body {
  padding: 28px;
}

.config-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.config-card-body p {
  font-size: 15px;
  color: var(--muted);
}

/* ========================================
   Capabilities
   ======================================== */

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

.capability-card {
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition);
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.25);
}

.capability-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.capability-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ========================================
   Scroll Reveal
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1),
              transform 0.9s cubic-bezier(.16,1,.3,1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* Hero stagger */
.hero-stagger-1 { transition-delay: 0s; }
.hero-stagger-2 { transition-delay: 0.12s; }
.hero-stagger-3 { transition-delay: 0.24s; }
.hero-stagger-4 { transition-delay: 0.36s; }
.hero-stagger-5 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .process-timeline {
    --progress: 1 !important;
  }
  .process-step {
    opacity: 1;
    transform: none;
  }
  .partners-track {
    animation: none;
  }
  .apple-hero__media img,
  .apple-hero__copy .eyebrow,
  .apple-hero__copy h1,
  .apple-hero__copy p,
  .apple-hero__actions {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   Parallax
   ======================================== */

.parallax-media {
  will-change: transform;
}

/* ========================================
   Image Cards (premium photo treatment)
   ======================================== */

.image-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface);
  box-shadow: 0 32px 90px rgba(0,0,0,0.45);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

/* ========================================
   Contact Actions (smart CTA grid)
   ======================================== */

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-actions .btn-primary-action {
  flex: none;
}

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

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

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

  .trust-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .apple-hero {
    min-height: 92vh;
  }

  .apple-hero__media img {
    object-position: center top;
  }

  .apple-hero__shade {
    background:
      linear-gradient(180deg, rgba(8,9,11,.10) 0%, rgba(8,9,11,.35) 42%, rgba(8,9,11,.92) 100%);
  }

  .apple-hero__content {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 28px;
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .apple-hero__copy h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: .96;
    letter-spacing: -0.045em;
  }

  .apple-hero__copy p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .apple-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 0;
  }

  .apple-hero__actions .btn:first-child {
    grid-column: 1 / -1;
  }

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

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

  .hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .btn-group,
  .hero-content .contact-actions {
    justify-content: center;
  }

  .hero-trust-list {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-product-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    perspective: none;
  }

  .hero-product-card-main,
  .hero-product-mini {
    position: relative;
    inset: auto;
    width: auto;
    transform: none !important;
  }

  .hero-product-card-main {
    grid-column: 1 / -1;
    aspect-ratio: 4/3;
    border-radius: 26px;
  }

  .hero-product-mini {
    border-radius: 16px;
  }

  .hero-product-mini-3 {
    grid-column: 1 / -1;
  }

  .nav {
    display: none;
  }

  .header-phone-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

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

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-timeline {
    display: block;
    padding: 8px 0 4px 44px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 11px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.14), rgba(255,255,255,0.14), transparent);
  }

  .process-line-fill {
    background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
    transform-origin: top center;
    transform: scaleY(var(--progress));
  }

  .process-timeline .process-step {
    text-align: left;
    padding: 0 0 34px;
  }

  .process-timeline .process-step:last-child {
    padding-bottom: 0;
  }

  .process-timeline .process-dot {
    position: absolute;
    left: -39px;
    top: 30px;
    margin: 0;
  }

  .process-timeline .process-text {
    max-width: 100%;
    margin: 0;
  }

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

  .contact-line {
    flex-direction: column;
    gap: 12px;
  }

  .image-card:hover img {
    transform: none;
  }

  .product-hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .product-hero-copy .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .product-hero .btn-group {
    justify-content: center;
  }

  .product-spec-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}

/* ========================================
   Mobile < 560px
   ======================================== */

@media (max-width: 560px) {
  h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  h3 {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.05;
  }

  .section {
    padding: 72px 0;
  }

  .stats-section {
    padding: 72px 0;
  }

  .partners-section {
    padding: 72px 0;
  }

  .cta-section {
    padding: 72px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero {
    padding-top: calc(56px + 48px);
    padding-bottom: 56px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10.8vw, 50px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero-product-stage {
    gap: 10px;
  }

  .hero-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-trust-list span {
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 11px;
    text-align: center;
  }

  .hero-trust-list span::before {
    display: none;
  }

  .hero-product-card-main {
    border-radius: 22px;
  }

  .product-badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .product-badge span {
    font-size: 10px;
  }

  .product-badge strong {
    font-size: 13px;
  }

  .hero-product-mini span {
    padding: 9px 10px 10px;
    font-size: 12px;
  }

  .product-hero {
    padding-top: calc(56px + 48px);
    padding-bottom: 56px;
  }

  .product-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .product-hero-grid {
    gap: 26px;
  }

  .product-spec-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .product-spec-panel div {
    padding: 10px 0;
    font-size: 12px;
  }

  /* Trust bar compact */
  .trust-panel {
    padding: 22px;
    border-radius: 24px;
    gap: 24px;
  }

  .trust-contact h2 {
    font-size: clamp(26px, 8vw, 36px);
    letter-spacing: -0.04em;
  }

  .trust-contact p {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .trust-contact .btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-contact .btn-group .btn:first-child {
    grid-column: 1 / -1;
  }

  .trust-contact .btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trust-item {
    min-height: 132px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .trust-item::before {
    width: 26px;
    margin-bottom: 14px;
  }

  .trust-item h3 {
    font-size: 13px;
    line-height: 1.2;
  }

  .trust-item p {
    font-size: 11px;
  }

  /* Process cards 2-col */
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .process-card {
    padding: 18px;
    border-radius: 16px;
  }

  .process-number {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.9;
    margin-bottom: 12px;
  }

  .process-card h3 {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }

  .process-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  /* Stats 2-col */
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-item {
    padding: 22px 14px;
    min-height: 148px;
  }

  .stat-item::before {
    margin-bottom: 18px;
  }

  .stat-value {
    font-size: clamp(32px, 11vw, 48px);
    line-height: .95;
  }

  .stat-value-word {
    font-size: clamp(21px, 6vw, 30px);
  }

  .stat-label {
    font-size: 12px;
    line-height: 1.35;
  }

  .stats-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .partners-track span {
    min-width: 150px;
    padding: 14px 18px;
    font-size: 10px;
  }

  /* Products 2-col */
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-body {
    padding: 18px;
  }

  .product-card-body h3 {
    font-size: 15px;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }

  .product-card-body p {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .product-card-line {
    margin-bottom: 12px;
    width: 24px;
  }

  .link-arrow {
    font-size: 12px;
  }

  /* Features 2-col */
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-col {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .feature-col h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-col p {
    font-size: 12px;
    line-height: 1.45;
  }

  /* Specs 2-col */
  .specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .spec-item {
    padding: 18px;
    border-radius: 14px;
  }

  .spec-item h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .spec-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Capabilities 2-col */
  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .capability-card {
    padding: 18px;
    border-radius: 16px;
  }

  .capability-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
  }

  .capability-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  /* Config stays 1-col (has images) */
  .config-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .config-card-body {
    padding: 20px;
  }

  .config-card-body h3 {
    font-size: 18px;
  }

  /* Gallery 2-col */
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-label {
    font-size: 9px;
    padding: 4px 10px;
    bottom: 10px;
    left: 12px;
  }

  /* Timeline compact */
  .process-timeline .process-title {
    font-size: 14px;
  }

  .process-timeline .process-text {
    font-size: 11px;
  }

  /* CTA buttons smart layout */
  .btn-group,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .btn-group .btn:first-child,
  .contact-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .btn {
    text-align: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  /* Hero image */
  .hero-image-card {
    border-radius: 24px;
  }

  .hero-glass-badge {
    padding: 10px 14px;
    bottom: 14px;
    left: 14px;
    border-radius: 10px;
  }

  .hero-glass-badge .badge-title {
    font-size: 12px;
  }

  .hero-glass-badge .badge-sub {
    font-size: 10px;
  }

  /* Product hero image */
  .product-hero-image {
    border-radius: 20px;
  }

  .product-hero .btn-group {
    margin-bottom: 40px;
  }

  /* Subtitle */
  .subtitle {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 14px;
  }

  /* Footer compact */
  .footer {
    padding: 40px 0 32px;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 32px;
  }
}

/* ========================================
   Tiny screens < 380px
   ======================================== */

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

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

  .process-timeline .process-step {
    padding-bottom: 28px;
  }
}
