/* ─── RESET & BASE ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: #3a3f4b;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  color: #1a1d26;
  font-weight: 600;
  line-height: 1.2;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --orange: #E8640A;
  --orange-dark: #C8540A;
  --orange-light: #FEF0E6;
  --orange-bg: #FFF8F3;
  --navy: #1a1d26;
  --text-primary: #1a1d26;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --bg-white: #ffffff;
  --bg-subtle: #fafafa;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-orange: 0 8px 32px rgba(232,100,10,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(232,100,10,0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary i { font-size: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 12px 23px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}
.btn-outline i { font-size: 18px; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--orange);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all var(--transition);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 23px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-brand { display: flex; align-items: center; }
.nav-logo img {
  height: 40px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.nav-cta:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.nav.scrolled .nav-cta {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(232,100,10,0.2);
}
.nav.scrolled .nav-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(232,100,10,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  width: 28px;
  height: 20px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

@media (max-width: 900px) {
  .nav { padding: 0 5%; height: 64px; }
  .nav-logo img { height: 32px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 16px 5%;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary) !important;
  }
  .nav-links a:hover { color: var(--orange) !important; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding-top: 72px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(12,14,20,0.88) 0%, rgba(12,14,20,0.7) 40%, rgba(12,14,20,0.35) 75%, rgba(12,14,20,0.2) 100%),
    linear-gradient(to top, rgba(12,14,20,0.7) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 6% 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,100,10,0.15);
  border: 1px solid rgba(232,100,10,0.25);
  color: #fbbf7a;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 14px; }

.hero-content h1 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}
.hero-content h1 span { color: var(--orange); }

.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline--light {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ─── STAT CARDS (floating bar) ─── */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 6% 48px;
  margin-top: auto;
}

.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #f59e0b);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-md);
  background: rgba(232,100,10,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,100,10,0.25);
}
.stat-icon i { color: var(--orange); font-size: 20px; }

.stat-num {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1000px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero-content { padding: 60px 5% 32px; }
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 0 5% 32px;
  }
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 72px 6%;
}

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

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 6%;
}

/* ─── PILLARS (3-col) ─── */
.pillars {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.pillar:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pillar:hover::after { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.pillar-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0,0,0,0.06);
}
.pillar-icon i { font-size: 24px; }

.pillar h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

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

/* ─── INTEGRATION (orange section) ─── */
.integration-section {
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}

.integration-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.integration-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.integration-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(180,60,4,0.55) 0%, rgba(232,100,10,0.42) 40%, rgba(200,84,10,0.38) 100%),
    linear-gradient(to top, rgba(140,40,0,0.12) 0%, transparent 50%);
}

.integration-section .section-header {
  position: relative;
  z-index: 2;
}
.integration-section .eyebrow { color: rgba(255,255,255,0.7); }
.integration-section .section-title { color: #fff; }
.integration-section .section-sub { color: rgba(255,255,255,0.75); }

.int-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.int-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.int-card {
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.int-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateX(4px);
}

.int-icon {
  min-width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.int-icon i { color: #fff; font-size: 21px; }

.int-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.int-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.int-right {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.int-right-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.int-right-title i { font-size: 18px; }

.sensor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sensor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.sensor-item:hover {
  background: rgba(255,255,255,0.14);
}

.sensor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.sensor-info { flex: 1; }
.sensor-name { font-size: 13px; font-weight: 600; color: #fff; }
.sensor-use { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.sensor-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.2px;
}

.int-bottom {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
}
.int-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.int-bottom strong { color: #fff; font-weight: 600; }

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

/* ─── EXPERIENCE SECTION ─── */
.exp-section {
  background: var(--bg-subtle);
}

.exp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.exp-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}
.exp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.exp-num {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,100,10,0.25);
}

.exp-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.exp-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

/* ─── CURAMA SECTION ─── */
.curama-section {
  background: var(--orange-bg);
  border-top: 1px solid #FCDCC5;
  border-bottom: 1px solid #FCDCC5;
  position: relative;
  overflow: hidden;
}

.curama-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.curama-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.curama-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.curama-inner h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  color: #0f1118;
}
.curama-inner h2 span { color: var(--orange-dark); }

.curama-desc {
  font-size: 14px;
  color: #3a3f4b;
  line-height: 1.8;
  margin-bottom: 24px;
}

.curama-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.curama-mod {
  border: 1px solid var(--border);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.curama-mod:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.curama-mod-logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  object-fit: contain;
}

.curama-mod-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
}
.curama-mod-desc {
  font-size: 12px;
  color: #4a4f5b;
  margin-top: 2px;
  line-height: 1.4;
}

.curama-features { display: flex; flex-direction: column; gap: 16px; }

.curama-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.curama-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fde0c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(232,100,10,0.12);
}
.curama-check i { color: var(--orange); font-size: 15px; }

.curama-feature p {
  font-size: 13px;
  color: #3a3f4b;
  line-height: 1.6;
}
.curama-feature strong {
  color: #0f1118;
  font-weight: 600;
}

@media (max-width: 900px) {
  .curama-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ─── CLIENTS ─── */
.clients {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.client-pill {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  transition: all var(--transition);
}
.client-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.client-pill i { color: var(--orange); font-size: 18px; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 80px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(12,14,20,0.85) 0%, rgba(12,14,20,0.7) 50%, rgba(12,14,20,0.6) 100%),
    linear-gradient(to top, rgba(12,14,20,0.5) 0%, transparent 40%);
}

.cta-section h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.cta-section > p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-form-inline {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.cta-form-inline input {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background: rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
  transition: all var(--transition);
  flex: 1;
  min-width: 160px;
}
.cta-form-inline input::placeholder { color: rgba(255,255,255,0.55); }
.cta-form-inline input:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 32px;
}
.footer-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-links a {
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
}
