/* ==================================================
   NaqlData Landing Page — Clean Structured CSS
   --------------------------------------------------
   Structure:
   01. Variables
   02. Base / Reset
   03. Global Background
   04. Layout Utilities
   05. Typography
   06. Navigation
   07. Buttons / Links / Forms
   08. Shared Cards & UI Elements
   09. Hero Section
   10. Problem Section
   11. Data Section
   12. Products Section
   13. Complete Offer Section
   14. Process Section
   15. Clients Section
   16. Trust Section
   17. Quote Section
   18. FAQ Section
   19. Newsletter Section
   20. Footer
   21. Motion / GSAP helpers
   22. Responsive
   23. Floating Actions — Scroll Progress + WhatsApp
================================================== */

/* ==================================================
   01. Variables
================================================== */
:root {
  --bg-main: #020611;
  --bg-soft: #06101d;
  --bg-card: rgba(8, 18, 34, 0.78);
  --bg-card-solid: #07111f;
  --blue-primary: #1457ff;
  --blue-glow: #2f7bff;
  --cyan-soft: #70d7ff;
  --text-main: #f5f7fb;
  --text-muted: #8f9aae;
  --line-soft: rgba(255, 255, 255, 0.09);
  --line-blue: rgba(47, 123, 255, 0.32);
  --shadow-blue: 0 30px 90px rgba(20, 87, 255, 0.2);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --hover-lift: 14px;
  --hover-scale: 1.018;
  --card-glow: 0 34px 105px rgba(20, 87, 255, 0.22);
  --card-glow-strong: 0 42px 130px rgba(20, 87, 255, 0.32);
}

/* ==================================================
   02. Base / Reset
================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 10%, rgba(20, 87, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 85% 25%, rgba(112, 215, 255, 0.09), transparent 30rem),
    linear-gradient(180deg, #020611 0%, #030712 48%, #020611 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  color: #fff;
  background: rgba(47, 123, 255, 0.45);
}

/* ==================================================
   03. Global Background
================================================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 78%);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.35'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  z-index: -3;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
}

.orb-one {
  top: -18rem;
  left: -14rem;
  background: var(--blue-primary);
}

.orb-two {
  right: -19rem;
  bottom: 3rem;
  background: #164ee8;
}

/* ==================================================
   04. Layout Utilities
================================================== */
.section-pad {
  padding: 80px 0;
}

.border-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-heading {
  max-width: 800px;
}

/* ==================================================
   05. Typography
================================================== */
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.77rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.display-title,
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text-main);
}

.display-title {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
}

.section-title {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.hero-lead,
.section-text {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-lead {
  max-width: 650px;
  margin-top: 1.4rem;
}

.mono-label {
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-positive {
  color: #6ef2a4 !important;
}

/* ==================================================
   06. Navigation
================================================== */
.premium-nav {
  padding: 18px 0;
  background: rgba(2, 6, 17, 0.5);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.premium-nav.nav-scrolled {
  padding: 10px 0;
  background: rgba(2, 6, 17, 0.82);
  border-bottom-color: var(--line-soft);
}

.brand-logo {
  width: 218px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(20, 87, 255, 0.2));
}

.navbar .nav-link {
  color: rgba(245, 247, 251, 0.74);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 0.8rem !important;
  transition: color 0.28s var(--ease-premium);
}

.navbar-toggler {
  border: 1px solid var(--line-soft);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ==================================================
   07. Buttons / Links / Forms
================================================== */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.25s var(--ease-premium),
    box-shadow 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium),
    filter 0.25s var(--ease-premium);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  z-index: -1;
  width: 70%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
  transition: left 0.58s var(--ease-premium);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), #2f7bff);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(20, 87, 255, 0.32);
}

.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
}

.ghost-btn {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 800;
}

.text-link i,
.btn i {
  transition: transform 0.3s var(--ease-premium), color 0.3s var(--ease-premium);
}

.form-label {
  color: rgba(245, 247, 251, 0.82);
  font-weight: 700;
  font-size: 0.86rem;
}

.form-control,
.form-select {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  padding: 0.95rem 1rem;
  box-shadow: none !important;
  transition:
    border-color 0.28s var(--ease-premium),
    background-color 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.form-control::placeholder {
  color: rgba(143, 154, 174, 0.62);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px rgba(7, 17, 31, 0.96) inset !important;
}

.form-select {
  color-scheme: dark;
}

/* ==================================================
   08. Shared Cards & UI Elements
================================================== */
.premium-card,
.product-card,
.client-card,
.quote-form,
.complete-panel,
.trust-panel,
.note-box {
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.premium-card,
.product-card,
.client-card,
.matrix-card,
.timeline-item,
.feature-item,
.trust-list div,
.note-box,
.quote-form,
.premium-accordion .accordion-item {
  position: relative;
  overflow: hidden;
  will-change: transform, border-color, box-shadow, background;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.premium-card::after,
.product-card::after,
.client-card::after,
.matrix-card::after,
.timeline-item::after,
.feature-item::after,
.trust-list div::after,
.note-box::after,
.quote-form::after,
.premium-accordion .accordion-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 32%, transparent 72%, rgba(112, 215, 255, 0.06)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(47, 123, 255, 0.22), transparent 17rem);
  opacity: 0;
  transition: opacity 0.42s var(--ease-premium);
}

.premium-card>*,
.product-card>*,
.client-card>*,
.matrix-card>*,
.timeline-item>*,
.feature-item>*,
.trust-list div>*,
.note-box>*,
.quote-form>*,
.premium-accordion .accordion-item>* {
  position: relative;
  z-index: 1;
}

.premium-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 13, 25, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  color: #fff;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(20, 87, 255, 0.95), rgba(112, 215, 255, 0.35));
  box-shadow: 0 14px 40px rgba(20, 87, 255, 0.22);
}

.problem-card h3,
.matrix-card h3,
.product-card h3,
.feature-item h3,
.timeline-item h3,
.client-card h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.problem-card p,
.matrix-card p,
.product-card p,
.feature-item p,
.timeline-item p,
.client-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.feature-item i {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--cyan-soft);
  font-size: 1.25rem;
  background: rgba(20, 87, 255, 0.18);
}

.feature-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.feature-item p {
  margin: 0;
}

.note-box {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.note-box i {
  color: var(--cyan-soft);
  font-size: 1.3rem;
}

.note-box p {
  margin: 0;
  color: var(--text-muted);
}

/* ==================================================
   09. Hero Section
================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(20, 87, 255, 0.12), transparent 34rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: auto, 150px 150px;
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-glow);
  box-shadow: 0 0 0 7px rgba(47, 123, 255, 0.15), 0 0 22px rgba(47, 123, 255, 0.8);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 640px;
  margin-top: 2.4rem;
}

.hero-stats>div {
  padding: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats span {
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stats p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 45% 35%, rgba(20, 87, 255, 0.32), transparent 21rem),
    linear-gradient(135deg, #08111e, #020611 58%, #040b14);
  box-shadow: var(--shadow-blue);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 80%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(2, 6, 17, 0.88), transparent);
}

.mega-word {
  position: absolute;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.12);
}

.word-top {
  top: 62px;
  left: 42px;
}

.word-bottom {
  right: 44px;
  bottom: 58px;
}

.container-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.crane-line {
  position: absolute;
  top: 55px;
  width: 2px;
  height: 260px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.04));
  transform-origin: top;
}

.line-a {
  left: 49%;
  transform: rotate(22deg);
}

.line-b {
  left: 59%;
  transform: rotate(-15deg);
}

.crane-head {
  position: absolute;
  top: 72px;
  left: 48%;
  width: 120px;
  height: 34px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f8b632, #af6d07);
  box-shadow: 0 15px 45px rgba(255, 180, 44, 0.18);
  transform: rotate(-12deg);
}

.freight-container {
  position: absolute;
  top: 235px;
  left: 24%;
  width: 340px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #0f66ff, #043cb4 65%, #021b62);
  box-shadow: 0 35px 90px rgba(20, 87, 255, 0.32);
  transform: skewY(-3deg) rotate(1deg);
}

.freight-container span {
  position: absolute;
  top: 0;
  display: block;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
}

.freight-container span:nth-child(1) {
  left: 18%;
}

.freight-container span:nth-child(2) {
  left: 36%;
}

.freight-container span:nth-child(3) {
  left: 54%;
}

.freight-container span:nth-child(4) {
  left: 72%;
}

.freight-container span:nth-child(5) {
  left: 90%;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.card-main {
  left: 34px;
  bottom: 42px;
  width: 310px;
}

.card-mini {
  right: 28px;
  top: 104px;
  width: 220px;
}

.card-side {
  right: 34px;
  bottom: 58px;
  width: 180px;
}

.card-main h3,
.card-mini strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.card-main h3 {
  margin-bottom: 1rem;
}

.card-mini strong {
  display: block;
  margin: 0.45rem 0;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.metric-row strong {
  color: #fff;
}

.premium-progress {
  height: 8px;
  margin: 1rem 0 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.premium-progress .progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-soft));
}

.floating-card small {
  color: var(--text-muted);
}

.data-bars {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 92px;
  margin-bottom: 0.8rem;
}

.data-bars span {
  width: 18px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, var(--blue-primary), var(--cyan-soft));
  opacity: 0.82;
}

/* ==================================================
   10. Problem Section
================================================== */
.problem-section {
  position: relative;
}

.problem-cinematic-section {
  overflow: hidden;
}

.problem-cinematic-frame {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 52% 42%, rgba(47, 123, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(3, 8, 19, 0.72), rgba(5, 14, 27, 0.54) 48%, rgba(2, 6, 17, 0.68));
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.problem-cinematic-frame::before,
.problem-grid-bg {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.problem-cinematic-frame::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.72), transparent 42%, rgba(2, 6, 17, 0.64)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.12), rgba(2, 6, 17, 0.7));
}

.problem-grid-bg {
  z-index: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.problem-topbar,
.problem-cinematic-content {
  position: relative;
  z-index: 4;
}

.problem-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 54px;
  color: rgba(245, 247, 251, 0.7);
  font-size: 0.78rem;
}

.problem-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.problem-brand-mark i {
  color: var(--cyan-soft);
  text-shadow: 0 0 20px rgba(47, 123, 255, 0.72);
}

.problem-top-label {
  color: rgba(245, 247, 251, 0.56);
}

.problem-ghost-title {
  position: absolute;
  top: 78px;
  left: 50%;
  z-index: 1;
  width: 100%;
  color: rgba(47, 123, 255, 0.11);
  font-size: clamp(3.2rem, 8.4vw, 8.8rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transform: translateX(-50%);
}

.problem-cinematic-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.1fr) minmax(230px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 70px);
}

.problem-left-copy {
  max-width: 460px;
}

.problem-left-copy .section-title {
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 0.98;
}

.problem-left-copy .section-text {
  max-width: 430px;
  margin-top: 22px;
}

.problem-soft-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 28px;
  padding-inline: 22px;
  color: rgba(245, 247, 251, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.problem-center-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.problem-image-device {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  overflow: hidden;
  aspect-ratio: 1.25 / 1;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 32px;
  background: rgba(7, 17, 31, 0.8);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55), 0 0 90px rgba(47, 123, 255, 0.18);
}

.problem-image-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.92) contrast(1.08);
  transform: scale(1.06);
}

.problem-image-shade {
  position: absolute;
  inset: 0;

}

.problem-orbit-line {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(112, 215, 255, 0.13);
  border-radius: 999px;
  pointer-events: none;
}

.problem-orbit-line-one {
  top: 92px;
  left: 50%;
  width: 520px;
  height: 220px;
  transform: translateX(-50%);
}

.problem-orbit-line-two {
  top: 22px;
  left: 50%;
  width: 390px;
  height: 390px;
  opacity: 0.62;
  transform: translateX(-50%);
}

.problem-signal {
  position: absolute;
  z-index: 5;
  min-width: 138px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(10, 22, 38, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
}

.problem-signal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(112, 215, 255, 0.9);
  transform: translateY(-50%);
}

.problem-signal span,
.problem-signal strong {
  display: block;
  padding-left: 20px;
}

.problem-signal span {
  color: rgba(245, 247, 251, 0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.problem-signal strong {
  margin-top: 2px;
  color: #ffffff;
  font-size: 0.95rem;
}

.problem-signal-price {
  left: 2%;
  bottom: 54px;
}

.problem-signal-capacity {
  top: 68px;
  right: 0;
}

.problem-right-metrics {
  display: grid;
  gap: 22px;
}

.problem-metric {
  position: relative;
  padding-left: 24px;
}

.problem-metric::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(112, 215, 255, 0.8), rgba(47, 123, 255, 0.05));
  box-shadow: 0 0 18px rgba(47, 123, 255, 0.42);
}

.problem-metric span,
.problem-strip-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.problem-metric span {
  margin-bottom: 12px;
  color: rgba(112, 215, 255, 0.72);
  font-size: 0.76rem;
}

.problem-metric strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.problem-metric p,
.problem-strip-card p {
  margin: 0;
  color: rgba(245, 247, 251, 0.62);
  line-height: 1.55;
}

.problem-bottom-strip {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  gap: 18px;
  margin-top: 22px;
}

.problem-strip-card {
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 16%, rgba(47, 123, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.problem-strip-card span {
  margin-bottom: 18px;
  color: rgba(112, 215, 255, 0.7);
  font-size: 0.72rem;
}

.problem-strip-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.problem-strip-card p {
  margin-top: 14px;
}

.problem-strip-card-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

/* ==================================================
   11. Data Section
================================================== */
.data-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.matrix-line {
  position: absolute;
  inset: 8%;
  z-index: -1;
  border: 1px solid rgba(47, 123, 255, 0.2);
  border-radius: 40px;
}

.matrix-card {
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.matrix-card span,
.timeline-item span,
.product-period {
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-weight: 700;
}

.visual-enhanced-panel .section-title {
  font-size: clamp(2.15rem, 3.6vw, 4.15rem);
}

.section-visual-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 12%, rgba(47, 123, 255, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 22px 70px rgba(20, 87, 255, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.section-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 70%, rgba(112, 215, 255, 0.08));
  opacity: 0.65;
}

.section-visual-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 24px;
}

.section-visual-card figcaption {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 3;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(18px);
}

.section-visual-card figcaption strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.compact-stack .feature-item {
  padding: 1rem;
}

.compact-stack .feature-item i {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.compact-stack .feature-item h3 {
  font-size: 1.02rem;
}

.compact-stack .feature-item p {
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ==================================================
   12. Products Section
================================================== */
.products-section {
  overflow: visible;
}

.products-section .row {
  flex-wrap: wrap !important;
}

.products-motion-track {
  transform: none !important;
}

.products-motion-track>[class*="col-"] {
  flex: initial !important;
  max-width: initial !important;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 25% 0%, rgba(47, 123, 255, 0.16), transparent 18rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card.highlighted,
.product-card.complete {
  border-color: var(--line-blue);
  background: linear-gradient(180deg, rgba(20, 87, 255, 0.14), rgba(8, 18, 34, 0.78));
}

.product-card.highlighted::before,
.product-card.complete::before {
  opacity: 1;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.product-tag {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.product-card ul {
  display: grid;
  flex: 1;
  gap: 0.65rem;
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
}

.product-card li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(245, 247, 251, 0.78);
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-glow);
  box-shadow: 0 0 20px rgba(47, 123, 255, 0.8);
}

.product-card .btn {
  margin-top: auto;
}

.ribbon {
  position: absolute;
  top: 12px;
  left: 73%;
  width: 165px;
  padding: 0.38rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-primary), var(--cyan-soft));
  font-size: 7px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(38deg);
}

/* ==================================================
   13. Complete Offer Section
================================================== */
.complete-section,
.complete-section-bleed {
  position: relative;
  overflow: hidden;
}

.complete-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  transform: translateZ(0);
}

.complete-panel>* {
  position: relative;
}

.complete-section-bleed {
  padding-inline: 0;
  background: transparent;
}

.complete-section-bleed::before,
.complete-section-bleed::after,
.complete-bleed-panel::after,
.complete-bleed-bg {
  display: none;
}

.complete-section-bleed .complete-bleed-panel {
  width: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  padding: clamp(56px, 7vw, 110px) clamp(20px, 5vw, 88px);
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.complete-bleed-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 38%, rgba(47, 123, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 17, 0.12), transparent 48%, rgba(2, 6, 17, 0.16));
}

.complete-bleed-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  width: min(100%, 1480px);
  margin-inline: auto;
}

.complete-copy,
.complete-copy .section-title {
  max-width: 680px;
}

.complete-copy .section-text {
  max-width: 610px;
}

.complete-feature-stack {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.complete-section-bleed .feature-item {
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.complete-visual-side {
  position: relative;
  min-width: 0;
}

.complete-image-card {
  position: relative;
  min-height: clamp(460px, 46vw, 680px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
  border-radius: 36px 0 0 36px;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.76), rgba(3, 8, 19, 0.82));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42), 0 0 90px rgba(20, 87, 255, 0.12);
}

.complete-image-wrap,
.complete-image-overlay,
.complete-map-grid {
  position: absolute;
  inset: 0;
}

.complete-image-wrap {
  overflow: hidden;
}

.complete-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.68);
  transform: scale(1.04);
}



.complete-map-grid {
  z-index: 3;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 28px 0 0 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, black, transparent 76%);
  pointer-events: none;
}

.complete-image-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  left: 26px;
  z-index: 4;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 123, 255, 0.78), rgba(112, 215, 255, 0.58), transparent);
  box-shadow: 0 0 26px rgba(47, 123, 255, 0.46);
}

.complete-data-card {
  position: absolute;
  z-index: 5;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.42);
}

.complete-data-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 251, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.complete-data-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.15;
}

.complete-data-card small {
  display: block;
  margin-top: 10px;
  color: rgba(245, 247, 251, 0.62);
}

.complete-data-card-main {
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.complete-data-card-mini {
  top: 44px;
  right: 42px;
  min-width: 136px;
  text-align: center;
}

.complete-data-card-bottom {
  top: 44px;
  left: 42px;
  max-width: 230px;
}

.complete-data-card-mini strong {
  color: #ffffff;
  font-size: 2rem;
  text-shadow: 0 0 28px rgba(47, 123, 255, 0.76);
}

/* ==================================================
   14. Process Section
================================================== */
#process {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.025);
  transform: none !important;
}

.timeline-motion-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(47, 123, 255, 0), rgba(47, 123, 255, 0.95), rgba(112, 215, 255, 0.95));
  box-shadow: 0 0 34px rgba(47, 123, 255, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
}

.timeline-item {
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid var(--line-soft);
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  transform-style: flat;
}

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

.timeline-item span {
  display: inline-block;
  margin-bottom: 4rem;
}

.timeline-item h3 {
  font-size: 1.3rem;
}

.timeline-item-active {
  border-color: rgba(47, 123, 255, 0.38);
  box-shadow: 0 24px 80px rgba(20, 87, 255, 0.16);
}

.timeline-item-active span {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(47, 123, 255, 0.85);
}

/* ==================================================
   15. Clients Section
================================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.client-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-grid-compact .client-card {
  min-height: 100%;
}

.client-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 15px;
  color: var(--cyan-soft);
  font-size: 1.2rem;
  background: rgba(20, 87, 255, 0.15);
}

.client-card h3 {
  font-size: 1.15rem;
}

.offer-visual,
.client-visual {
  max-width: 620px;
}

.client-visual {
  margin: 0 auto;
}

/* ==================================================
   16. Trust Section
================================================== */
.trust-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
}

.trust-panel>* {
  position: relative;
}

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

.trust-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  color: rgba(245, 247, 251, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.trust-list i {
  margin-top: 0.1rem;
  color: #6ef2a4;
  font-size: 1.1rem;
}

.trust-section-bleed {
  position: relative;
  overflow: hidden;
  padding: clamp(128px, 12vw, 190px) 0;
  min-height: auto;
  background: transparent !important;
}

.trust-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/trust-freight-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.44) saturate(0.86) contrast(1.08);
  transform: scale(1.03);
}

.trust-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

}

.trust-bleed-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(34px, 6.5vw, 116px);
}

.trust-section-bleed .trust-panel,
.trust-panel-bleed {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.trust-copy {
  max-width: 680px;
  overflow: visible;
  padding-left: clamp(18px, 2vw, 34px);
}

.trust-section-bleed .section-kicker,
.trust-copy .section-kicker,
.trust-panel-bleed .section-kicker {
  display: inline-flex;
  overflow: visible !important;
  margin-bottom: 24px;
  padding-left: 0;
  clip-path: none !important;
  white-space: nowrap;
}

.trust-copy .section-title {
  max-width: 680px;
  margin-bottom: 24px;
}

.trust-copy .section-text {
  max-width: 590px;
  margin-top: 0;
}

.trust-content {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 22px;
}

.trust-highlight-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(7, 17, 31, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.trust-highlight-card span {
  display: block;
  margin-bottom: 24px;
  color: rgba(112, 215, 255, 0.82);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.trust-highlight-card strong {
  display: block;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 0 34px rgba(47, 123, 255, 0.58);
}

.trust-highlight-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(245, 247, 251, 0.72);
  line-height: 1.6;
}

.trust-section-bleed .trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-section-bleed .trust-list div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 20px;
  color: rgba(245, 247, 251, 0.82);
  background: rgba(7, 17, 31, 0.44);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.trust-section-bleed .trust-list i {
  flex: 0 0 auto;
  color: rgba(112, 215, 255, 0.92);
  font-size: 1.18rem;
  text-shadow: 0 0 20px rgba(47, 123, 255, 0.72);
}

.trust-section-bleed .trust-list span {
  display: block;
  line-height: 1.45;
}

/* ==================================================
   17. Quote Section
================================================== */
.quote-form {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(110, 242, 164, 0.25);
  border-radius: var(--radius-md);
  color: #b6ffd2;
  background: rgba(110, 242, 164, 0.1);
  font-weight: 700;
}

.form-success.show {
  display: flex;
}

/* ==================================================
   18. FAQ Section
================================================== */
.premium-accordion .accordion-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.premium-accordion .accordion-button {
  padding: 1.2rem;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-heading);
  font-weight: 700;
}

.premium-accordion .accordion-button::after {
  filter: invert(1);
}

.premium-accordion .accordion-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==================================================
   19. Newsletter Section
================================================== */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.newsletter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(110deg, black 0%, transparent 78%);
  opacity: 0.42;
}

.newsletter-bg-glow {
  position: absolute;
  top: 50%;
  right: -120px;
  z-index: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 123, 255, 0.22), transparent 68%);
  filter: blur(12px);
  transform: translateY(-50%);
}

.newsletter-panel .row {
  position: relative;
  z-index: 3;
}

.newsletter-copy {
  max-width: 720px;
}

.newsletter-copy .section-title {
  max-width: 680px;
  margin-bottom: 18px;
}

.newsletter-copy .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(47, 123, 255, 0.48);
  background: rgba(7, 17, 31, 0.9);
  box-shadow: 0 26px 86px rgba(20, 87, 255, 0.16), 0 0 0 4px rgba(47, 123, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.newsletter-input-wrap>i {
  margin-left: 18px;
  color: rgba(112, 215, 255, 0.78);
  font-size: 1.15rem;
  text-shadow: 0 0 18px rgba(47, 123, 255, 0.45);
}

.newsletter-input-wrap input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font-size: 0.98rem;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(245, 247, 251, 0.46);
}

.newsletter-input-wrap button {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1457ff 0%, #2f7bff 58%, #70d7ff 100%);
  box-shadow: 0 16px 46px rgba(20, 87, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.newsletter-input-wrap button:hover {
  filter: brightness(1.08);
  box-shadow: 0 20px 60px rgba(20, 87, 255, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.newsletter-input-wrap button i {
  transition: transform 0.28s ease;
}

.newsletter-input-wrap button:hover i {
  transform: translateX(4px);
}

.newsletter-note {
  margin: 14px 0 0;
  color: rgba(245, 247, 251, 0.54);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==================================================
   20. Footer — Premium Background Image Version
================================================== */

.footer-luxury {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(86px, 8vw, 130px) 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-main);
  isolation: isolate;
}

/* Background image */
.footer-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.42) saturate(0.8) contrast(1.08);
  transform: scale(1.04);
}

/* Dark premium overlay */
.footer-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(2, 6, 17, 0.96) 0%,
      rgba(2, 6, 17, 0.78) 38%,
      rgba(2, 6, 17, 0.66) 64%,
      rgba(2, 6, 17, 0.94) 100%),
    linear-gradient(180deg,
      rgba(2, 6, 17, 0.88) 0%,
      rgba(2, 6, 17, 0.52) 48%,
      rgba(2, 6, 17, 0.96) 100%),
    radial-gradient(circle at 70% 22%,
      rgba(47, 123, 255, 0.16),
      transparent 34%);
}

/* Subtle grid lines inspired by the reference */
.footer-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 33.333% 100%, 33.333% 100%;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.footer-container {
  position: relative;
  z-index: 5;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.35fr) minmax(300px, 0.9fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 16px 38px rgba(47, 123, 255, 0.22));
}

.footer-brand-block p {
  margin: 0;
  color: rgba(245, 247, 251, 0.82);
  line-height: 1.75;
  font-size: 0.98rem;
}

.footer-address {
  display: block;
  margin-top: 18px;
  color: rgba(245, 247, 251, 0.62);
  line-height: 1.65;
  font-size: 0.92rem;
}

.footer-links-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.footer-links-column h3,
.footer-contact-label {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(112, 215, 255, 0.78);
}

.footer-links-column a {
  display: table;
  margin: 0 0 15px;
  color: rgba(245, 247, 251, 0.82);
  font-weight: 700;
  line-height: 1.35;
  transition:
    color 0.28s var(--ease-premium, ease),
    transform 0.28s var(--ease-premium, ease);
}

.footer-links-column a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-contact-block {
  max-width: 360px;
}

.footer-phone,
.footer-email {
  display: table;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  transition:
    color 0.28s var(--ease-premium, ease),
    text-shadow 0.28s var(--ease-premium, ease);
}

.footer-phone {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.footer-email {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--cyan-soft);
  text-shadow: 0 0 28px rgba(112, 215, 255, 0.42);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
  color: rgba(245, 247, 251, 0.44);
}

.footer-socials a {
  margin: 0;
  color: rgba(245, 247, 251, 0.76);
  font-weight: 700;
  font-size: 0.94rem;
  transition:
    color 0.28s var(--ease-premium, ease),
    transform 0.28s var(--ease-premium, ease);
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: 28px;
}

.footer-bottom-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 247, 251, 0.64);
  font-size: 0.92rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal-links a {
  margin: 0;
  color: rgba(245, 247, 251, 0.64);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.28s var(--ease-premium, ease);
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 21vw, 22rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255, 255, 255, 0.095);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Remove old footer link spacing conflict */
.footer-luxury a {
  margin-left: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
  .footer-luxury {
    min-height: auto;
    padding: 82px 0 42px;
  }

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

  .footer-brand-block,
  .footer-contact-block {
    max-width: 100%;
  }

  .footer-links-block {
    max-width: 720px;
  }

  .footer-socials {
    margin-top: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 72px;
  }

  .footer-watermark {
    font-size: clamp(6rem, 26vw, 13rem);
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .footer-luxury {
    padding: 70px 0 38px;
  }

  .footer-bg-image {
    background-position: center right;
    filter: brightness(0.36) saturate(0.76) contrast(1.08);
  }

  .footer-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(2, 6, 17, 0.97) 0%,
        rgba(2, 6, 17, 0.82) 45%,
        rgba(2, 6, 17, 0.98) 100%);
  }

  .footer-grid-lines {
    background-size: 50% 100%, 50% 100%;
    opacity: 0.14;
  }

  .footer-logo {
    width: 184px;
  }

  .footer-links-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-phone {
    font-size: 1.65rem;
  }

  .footer-email {
    font-size: 1.25rem;
    word-break: break-word;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }

  .footer-watermark {
    bottom: -0.1em;
    font-size: clamp(4.6rem, 24vw, 8rem);
  }
}

/* ==================================================
   21. Motion / GSAP helpers
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

html.gsap-ready .reveal,
html.gsap-ready .delay-1,
html.gsap-ready .delay-2,
html.gsap-ready .delay-3,
html.gsap-ready .delay-4 {
  transition: none;
  transition-delay: 0s;
}

.motion-magnetic,
.motion-magnetic i {
  will-change: transform;
}

.motion-shine {
  position: relative;
  overflow: hidden;
}

.motion-shine::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -75%;
  width: 55%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
}

@keyframes naqldataStraightShine {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(410%);
  }
}

.motion-shine.is-shining::after {
  animation: naqldataStraightShine 0.78s ease forwards;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==================================================
   22. Responsive
================================================== */
@media (max-width: 1399.98px) {
  .section-visual-card figcaption strong {
    font-size: 0.96rem;
  }

  .compact-stack .feature-item {
    gap: 0.85rem;
  }
}

@media (max-width: 1199.98px) {
  .hero-visual {
    height: 560px;
  }

  .freight-container {
    left: 18%;
  }

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

  .timeline-item:nth-child(2) {
    border-right: none;
  }

  .timeline-item:nth-child(1),
  .timeline-item:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 86px 0;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: rgba(2, 6, 17, 0.94);
  }

  .display-title {
    max-width: 100%;
  }

  .hero-visual {
    height: 590px;
  }

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

  .complete-bleed-inner,
  .problem-cinematic-content,
  .trust-section-bleed .trust-panel,
  .trust-panel-bleed {
    grid-template-columns: 1fr;
  }

  .complete-bleed-inner {
    gap: 44px;
  }

  .complete-copy {
    max-width: 760px;
  }

  .complete-image-card {
    min-height: 500px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
  }

  .complete-map-grid {
    border-radius: 24px;
  }

  .complete-data-card-main {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .complete-data-card-mini {
    top: 30px;
    right: 30px;
  }

  .complete-data-card-bottom {
    top: 30px;
    left: 30px;
  }

  .problem-cinematic-frame {
    min-height: auto;
  }

  .problem-topbar {
    margin-bottom: 36px;
  }

  .problem-ghost-title {
    top: 86px;
    font-size: clamp(3rem, 12vw, 6rem);
  }

  .problem-left-copy {
    max-width: 720px;
  }

  .problem-center-visual {
    min-height: 440px;
  }

  .problem-right-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .problem-bottom-strip {
    grid-template-columns: 1fr;
  }

  .problem-strip-card,
  .problem-strip-card-large {
    min-height: auto;
  }

  .trust-section-bleed {
    padding: 96px 0;
  }

  .trust-section-bleed .trust-panel,
  .trust-panel-bleed {
    gap: 52px;
  }

  .trust-copy {
    max-width: 760px;
  }

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

  .trust-highlight-card {
    min-height: auto;
  }

  .trust-highlight-card p {
    max-width: 520px;
  }

  .newsletter-panel {
    padding: 34px;
  }

  .newsletter-copy {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  :root {
    --hover-lift: 8px;
    --hover-scale: 1.01;
  }

  .brand-logo {
    width: 172px;
  }

  .hero-section {
    padding-top: 80px;
  }

  .display-title {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .hero-stats,
  .data-matrix,
  .client-grid,
  .client-grid-compact,
  .trust-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .hero-visual {
    height: 530px;
    border-radius: 24px;
  }

  .mega-word {
    font-size: 4.4rem;
  }

  .word-top {
    top: 54px;
    left: 22px;
  }

  .word-bottom {
    right: 24px;
    bottom: 42px;
  }

  .freight-container {
    top: 220px;
    left: 15%;
    width: 250px;
    height: 115px;
  }

  .crane-head {
    left: 46%;
    width: 92px;
  }

  .card-main {
    right: 18px;
    bottom: 26px;
    left: 18px;
    width: auto;
  }

  .card-mini {
    top: 92px;
    right: 18px;
    width: 180px;
  }

  .card-side {
    display: none;
  }

  .section-visual-card {
    border-radius: 24px;
  }

  .section-visual-card figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .timeline-item,
  .timeline-item:nth-child(2) {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .timeline-item:last-child {
    border-bottom: none;
  }

  .timeline-item span {
    margin-bottom: 1.8rem;
  }

  .premium-card,
  .product-card,
  .client-card,
  .matrix-card,
  .timeline-item,
  .feature-item,
  .trust-list div,
  .note-box,
  .quote-form,
  .premium-accordion .accordion-item {
    will-change: auto;
  }

  .footer a {
    display: inline-block;
    margin: 1rem 1rem 0 0;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-lead,
  .section-text {
    font-size: 1rem;
  }

  .product-card,
  .premium-card,
  .client-card {
    padding: 1.25rem;
  }

  .hero-visual {
    height: 500px;
  }

  .section-visual-card {
    padding: 0.55rem;
  }

  .section-visual-card img {
    border-radius: 19px;
    aspect-ratio: 0.92 / 1;
  }

  .section-visual-card figcaption {
    padding: 0.85rem;
  }

  .section-visual-card figcaption strong {
    font-size: 0.9rem;
  }

  .card-mini {
    display: none;
  }

  .complete-section-bleed .complete-bleed-panel {
    padding: 52px 18px;
  }

  .complete-bleed-inner {
    gap: 34px;
  }

  .complete-feature-stack {
    margin-top: 28px;
  }

  .complete-image-card {
    min-height: 420px;
    border-radius: 26px;
  }

  .complete-map-grid {
    inset: 16px;
    border-radius: 20px;
  }

  .complete-data-card {
    padding: 15px 16px;
    border-radius: 18px;
  }

  .complete-data-card-bottom {
    display: none;
  }

  .complete-data-card-mini {
    top: 22px;
    right: 22px;
    min-width: 108px;
  }

  .complete-data-card-mini strong {
    font-size: 1.55rem;
  }

  .complete-data-card-main {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .problem-cinematic-frame {
    padding: 22px;
    border-radius: 26px;
  }

  .problem-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .problem-ghost-title {
    position: relative;
    top: auto;
    left: auto;
    margin: 10px 0 22px;
    font-size: clamp(2.4rem, 14vw, 4.6rem);
    text-align: left;
    white-space: normal;
    transform: none;
  }

  .problem-center-visual {
    min-height: auto;
  }

  .problem-image-device {
    border-radius: 24px;
  }

  .problem-orbit-line {
    display: none;
  }

  .problem-signal {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
  }

  .problem-right-metrics {
    grid-template-columns: 1fr;
  }

  .problem-strip-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .trust-section-bleed {
    padding: 82px 0;
  }

  .trust-bleed-inner {
    padding-inline: 26px;
  }

  .trust-copy {
    padding-left: 12px;
  }

  .trust-bg-image {
    background-position: center right;
    filter: brightness(0.38) saturate(0.84) contrast(1.08);
  }

  .trust-bg-overlay {
    background: linear-gradient(180deg, rgba(2, 6, 17, 0.96) 0%, rgba(2, 6, 17, 0.72) 46%, rgba(2, 6, 17, 0.96) 100%);
  }

  .trust-section-bleed .trust-panel,
  .trust-panel-bleed {
    gap: 38px;
  }

  .trust-section-bleed .section-kicker,
  .trust-copy .section-kicker,
  .trust-panel-bleed .section-kicker {
    margin-bottom: 18px;
  }

  .trust-highlight-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .trust-highlight-card strong {
    font-size: 3.8rem;
  }

  .trust-section-bleed .trust-list div {
    align-items: flex-start;
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
    font-size: 0.94rem;
  }

  .newsletter-panel {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
  }

  .newsletter-input-wrap>i {
    position: absolute;
    top: 30px;
    left: 18px;
    margin-left: 0;
  }

  .newsletter-input-wrap input {
    width: 100%;
    padding-left: 36px;
  }

  .newsletter-input-wrap button {
    width: 100%;
  }

  .newsletter-note {
    text-align: center;
  }
}


/* --------------------------------------------------
   Floating Actions — Scroll Progress + WhatsApp
-------------------------------------------------- */

.floating-actions {
  position: fixed;
  right: clamp(18px, 2.2vw, 30px);
  bottom: clamp(18px, 2.2vw, 30px);
  z-index: 999;
  display: grid;
  gap: 14px;
  pointer-events: none;
}

.scroll-progress-btn,
.floating-whatsapp-btn {
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.86), rgba(3, 8, 19, 0.92));
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(20, 87, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.32s var(--ease-premium, ease),
    border-color 0.32s var(--ease-premium, ease),
    box-shadow 0.32s var(--ease-premium, ease),
    background 0.32s var(--ease-premium, ease);
}

.scroll-progress-btn {
  padding: 0;
  cursor: pointer;
}

.scroll-ring {
  position: absolute;
  inset: 0;
  width: 58px;
  height: 58px;
  transform: rotate(-90deg);
}

.scroll-ring-bg,
.scroll-ring-progress {
  fill: none;
  stroke-width: 2.5;
}

.scroll-ring-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.scroll-ring-progress {
  stroke: url("#scrollGradient");
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  filter: drop-shadow(0 0 8px rgba(47, 123, 255, 0.75));
  transition: stroke-dashoffset 0.16s linear;
}

/* fallback because SVG gradient is not injected */
.scroll-ring-progress {
  stroke: var(--cyan-soft, #70d7ff);
}

.scroll-percent {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(245, 247, 251, 0.86);
  transform: translateY(-1px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-progress-btn i {
  position: absolute;
  font-size: 1.35rem;
  opacity: 0;
  transform: translateY(8px);
  color: #ffffff;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-progress-btn.is-ready:hover .scroll-percent {
  opacity: 0;
  transform: translateY(-8px);
}

.scroll-progress-btn.is-ready:hover i {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp-btn {
  text-decoration: none;
}

.floating-whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(112, 215, 255, 0.18), transparent 66%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.floating-whatsapp-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(112, 215, 255, 0.55);
}

.scroll-progress-btn:hover,
.floating-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.035);
  border-color: rgba(112, 215, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(10, 25, 46, 0.94), rgba(4, 11, 24, 0.96));
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(20, 87, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.floating-whatsapp-btn:hover::before {
  opacity: 1;
}

.scroll-progress-btn:focus-visible,
.floating-whatsapp-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(47, 123, 255, 0.22),
    0 20px 70px rgba(20, 87, 255, 0.28);
}

@media (max-width: 575.98px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .scroll-progress-btn,
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .scroll-ring {
    width: 52px;
    height: 52px;
  }

  .scroll-percent {
    font-size: 0.63rem;
  }

  .floating-whatsapp-btn i,
  .scroll-progress-btn i {
    font-size: 1.25rem;
  }
}



/* ==================================================
   Contact Page
================================================== */

.contact-hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.contact-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(20, 87, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 32%, rgba(112, 215, 255, 0.09), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.86;
}

.contact-hero-title {
  max-width: 10ch;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 70% 18%, rgba(47, 123, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-hero-metric {
  margin-top: 32px;
  margin-bottom: 30px;
}

.contact-hero-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: #ffffff;
  text-shadow: 0 0 34px rgba(47, 123, 255, 0.55);
}

.contact-hero-metric p {
  max-width: 290px;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-signal-list {
  display: grid;
  gap: 12px;
}

.contact-signal-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 247, 251, 0.82);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-signal-list i {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(47, 123, 255, 0.6);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.contact-info-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 22%, rgba(47, 123, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-note-box {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
}

.contact-note-box i {
  color: var(--cyan-soft);
  font-size: 1.25rem;
}

.contact-note-box p {
  margin: 0;
  line-height: 1.65;
}

.contact-page-form {
  background: rgba(7, 17, 31, 0.62);
}

.service-area-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 55% 42%, rgba(47, 123, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.88), rgba(2, 6, 17, 0.96));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    0 0 90px rgba(20, 87, 255, 0.12);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.map-route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(112, 215, 255, 0.72), transparent);
  box-shadow: 0 0 22px rgba(47, 123, 255, 0.6);
  transform-origin: left center;
}

.route-one {
  width: 46%;
  left: 24%;
  top: 42%;
  transform: rotate(12deg);
}

.route-two {
  width: 38%;
  left: 34%;
  top: 58%;
  transform: rotate(-18deg);
}

.route-three {
  width: 34%;
  left: 42%;
  top: 32%;
  transform: rotate(28deg);
}

.map-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 247, 251, 0.86);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-point span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(47, 123, 255, 0.13),
    0 0 24px rgba(112, 215, 255, 0.86);
}

.point-casa {
  left: 28%;
  top: 48%;
}

.point-tanger {
  left: 44%;
  top: 23%;
}

.point-agadir {
  left: 58%;
  top: 68%;
}

.point-marrakech {
  left: 48%;
  top: 54%;
}

.map-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(18px);
}

.map-caption span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.contact-cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47, 123, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-cta-panel .section-title {
  max-width: 780px;
}

.contact-cta-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.contact-cta-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 240px;
}




.contact-reason-card span {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-reason-card h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.contact-reason-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}


/* Responsive */
@media (max-width: 991.98px) {
  .contact-hero-section {
    min-height: auto;
    padding-top: 130px;
  }

  .contact-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-cta-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }

  .contact-hero-card,
  .contact-form-panel,
  .contact-cta-panel {
    border-radius: 26px;
  }

  .service-area-map {
    min-height: 420px;
    border-radius: 26px;
  }

  .map-point {
    font-size: 0.64rem;
  }

  .point-casa {
    left: 16%;
    top: 48%;
  }

  .point-tanger {
    left: 42%;
    top: 22%;
  }

  .point-agadir {
    left: 52%;
    top: 66%;
  }

  .point-marrakech {
    left: 36%;
    top: 55%;
  }

  .map-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

/* ==================================================
   Demander un devis Page
================================================== */

.devis-hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.devis-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 87, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 86% 34%, rgba(112, 215, 255, 0.1), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.9;
}

.devis-hero-title {
  max-width: 11ch;
}

.devis-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.devis-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 70% 18%, rgba(47, 123, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.devis-hero-metric {
  margin-top: 32px;
  margin-bottom: 30px;
}

.devis-hero-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: #ffffff;
  text-shadow: 0 0 34px rgba(47, 123, 255, 0.55);
}

.devis-hero-metric p {
  max-width: 290px;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.devis-hero-list {
  display: grid;
  gap: 12px;
}

.devis-hero-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 247, 251, 0.82);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.devis-hero-list i {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(47, 123, 255, 0.6);
}

.devis-step-card span,
.devis-trust-item i {
  display: inline-flex;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.devis-step-card h3,
.devis-trust-item h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.devis-step-card p,
.devis-trust-item p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.devis-form-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 22%, rgba(47, 123, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.devis-side-box {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
}

.devis-side-box i {
  color: var(--cyan-soft);
  font-size: 1.25rem;
}

.devis-side-box p {
  margin: 0;
  line-height: 1.65;
}

.devis-page-form {
  background: rgba(7, 17, 31, 0.62);
}

.devis-form-group {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.devis-form-group h3 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.devis-form-group:last-of-type {
  border-bottom: 0;
  margin-bottom: 20px;
}

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

.devis-trust-item {
  position: relative;
  min-height: 220px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.devis-trust-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(20, 87, 255, 0.18);
  font-size: 1.25rem;
}

.devis-final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47, 123, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.devis-final-panel .section-title {
  max-width: 780px;
}

.devis-final-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.devis-final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 250px;
}


/* Dark select field */
.form-select {
  color: #fff;
  background-color: rgba(7, 17, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 0.95rem 1rem;
  box-shadow: none !important;
  color-scheme: dark;
}

/* Native options - limited browser support */
.form-select option {
  color: #ffffff;
  background-color: #07111f;
}

/* Placeholder option */
.form-select option[value=""] {
  color: rgba(245, 247, 251, 0.58);
}

/* Focus */
.form-select:focus {
  color: #fff;
  background-color: rgba(7, 17, 31, 0.96);
  border-color: rgba(47, 123, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(47, 123, 255, 0.14),
    0 14px 50px rgba(20, 87, 255, 0.12) !important;
}


/* Responsive */
@media (max-width: 991.98px) {
  .devis-hero-section {
    min-height: auto;
    padding-top: 130px;
  }

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

  .devis-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .devis-final-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .devis-hero-actions {
    flex-direction: column;
  }

  .devis-hero-actions .btn,
  .devis-final-actions .btn {
    width: 100%;
  }

  .devis-hero-card,
  .devis-form-panel,
  .devis-final-panel {
    border-radius: 26px;
  }

  .devis-form-panel {
    padding: 24px 18px;
  }

  .devis-page-form {
    padding: 1.2rem;
  }
}

/* ==================================================
   Choices.js — Premium Dark Selects + Devis Form Z-index Fix
================================================== */

/* Allow Choices dropdowns to appear above following form fields */
.devis-form-panel,
.devis-page-form,
.devis-form-group,
.devis-form-group .row,
.devis-form-group [class*="col-"] {
  overflow: visible !important;
}

/* Form stacking context */
.devis-page-form {
  position: relative;
  overflow: visible !important;
}

/* Each form group needs its own stacking level */
.devis-page-form .devis-form-group {
  position: relative;
  overflow: visible !important;
}

/* Important: earlier groups must appear above later groups when dropdown is open */
.devis-page-form .devis-form-group:nth-of-type(1) {
  z-index: 40;
}

.devis-page-form .devis-form-group:nth-of-type(2) {
  z-index: 30;
}

.devis-page-form .devis-form-group:nth-of-type(3) {
  z-index: 20;
}

/* When a Choices dropdown is open, raise its whole form group */
.devis-page-form .devis-form-group:has(.choices.is-open),
.devis-page-form .devis-form-group:has(.choices-premium.is-open) {
  z-index: 99999 !important;
}

/* Main Choices wrapper */
.choices-premium {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  color: #fff;
  z-index: 2;
}

.choices-premium.is-focused,
.choices-premium.is-open {
  z-index: 9999 !important;
}

/* Closed select style */
.choices-premium .choices__inner {
  min-height: 57px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  transition:
    border-color 0.28s var(--ease-premium, ease),
    background 0.28s var(--ease-premium, ease),
    box-shadow 0.28s var(--ease-premium, ease);
}

.choices-premium.is-focused .choices__inner,
.choices-premium.is-open .choices__inner {
  border-color: rgba(47, 123, 255, 0.72);
  background: rgba(7, 17, 31, 0.96);
  box-shadow:
    0 0 0 4px rgba(47, 123, 255, 0.14),
    0 14px 50px rgba(20, 87, 255, 0.12);
}

.choices-premium .choices__list--single {
  padding: 0;
}

.choices-premium .choices__item {
  color: rgba(245, 247, 251, 0.9);
  font-size: 1rem;
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
}

.choices-premium .choices__placeholder {
  color: rgba(245, 247, 251, 0.52);
  opacity: 1;
}

/* Arrow */
.choices-premium[data-type*="select-one"]::after {
  right: 18px;
  margin-top: -4px;
  border-color: rgba(245, 247, 251, 0.58) transparent transparent;
  transition:
    transform 0.25s var(--ease-premium, ease),
    border-color 0.25s var(--ease-premium, ease);
}

.choices-premium[data-type*="select-one"].is-open::after {
  margin-top: -4px;
  transform: rotate(180deg);
  border-color: rgba(112, 215, 255, 0.9) transparent transparent;
}

/* Dropdown menu */
.choices-premium .choices__list--dropdown,
.choices-premium .choices__list[aria-expanded] {
  position: absolute;
  margin-top: 10px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(47, 123, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 123, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(3, 8, 19, 0.98));
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(20, 87, 255, 0.16);
  backdrop-filter: blur(18px);
  z-index: 9999 !important;
}

/* Dropdown list scroll */
.choices-premium .choices__list--dropdown .choices__list,
.choices-premium .choices__list[aria-expanded] .choices__list {
  max-height: 260px;
  overflow-y: auto;
}

/* Dropdown options */
.choices-premium .choices__list--dropdown .choices__item,
.choices-premium .choices__list[aria-expanded] .choices__item {
  padding: 14px 16px;
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.96rem;
  white-space: normal;
  word-break: normal;
  transition:
    color 0.22s var(--ease-premium, ease),
    background 0.22s var(--ease-premium, ease),
    transform 0.22s var(--ease-premium, ease);
}

/* Hovered option */
.choices-premium .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices-premium .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(47, 123, 255, 0.22), rgba(255, 255, 255, 0.035));
  transform: translateX(4px);
}

/* Hide disabled placeholder from dropdown */
.choices-premium .choices__item--disabled {
  display: none;
}

/* Remove default Choices helper text */
.choices-premium .choices__list--dropdown .choices__item--selectable::after,
.choices-premium .choices__list[aria-expanded] .choices__item--selectable::after {
  display: none;
}

/* Scrollbar inside dropdown */
.choices-premium .choices__list--dropdown .choices__list::-webkit-scrollbar,
.choices-premium .choices__list[aria-expanded] .choices__list::-webkit-scrollbar {
  width: 6px;
}

.choices-premium .choices__list--dropdown .choices__list::-webkit-scrollbar-track,
.choices-premium .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.choices-premium .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb,
.choices-premium .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(112, 215, 255, 0.36);
}

/* Mobile */
@media (max-width: 575.98px) {
  .choices-premium .choices__inner {
    min-height: 54px;
    padding: 0.88rem 0.95rem;
  }

  .choices-premium .choices__list--dropdown .choices__item,
  .choices-premium .choices__list[aria-expanded] .choices__item {
    padding: 13px 15px;
  }
}


/* ==================================================
   À propos Page
================================================== */

/* Hero */
.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/about-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.46) saturate(0.88) contrast(1.08);
  transform: scale(1.04);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.7) 42%, rgba(2, 6, 17, 0.38)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.75), rgba(2, 6, 17, 0.92)),
    radial-gradient(circle at 72% 32%, rgba(47, 123, 255, 0.2), transparent 34%);
  z-index: 1;
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  opacity: 0.55;
}

.about-hero-content {
  position: relative;
  z-index: 4;
  max-width: 850px;
}

.about-hero-title {
  max-width: 11ch;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 18rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  white-space: nowrap;
}

/* Intro visual */
.about-intro-visual {
  position: relative;
  min-height: 560px;
}

.about-intro-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: var(--bg-card-solid);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(20, 87, 255, 0.12);
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9) contrast(1.06);
  transform: scale(1.04);
}



.about-intro-card {
  position: absolute;
  z-index: 3;
  padding: 22px;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.115);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.42);
}

.about-intro-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.about-intro-card strong {
  display: block;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-intro-card p {
  margin: 14px 0 0;
  color: rgba(245, 247, 251, 0.68);
  line-height: 1.6;
}

.about-intro-card-main {
  left: 34px;
  bottom: 34px;
  max-width: 290px;
}

.about-intro-card-main strong {
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.about-intro-card-small {
  top: 34px;
  right: 34px;
  max-width: 270px;
}

.about-intro-card-small strong {
  font-size: 1.35rem;
}

/* Mission / vision */
.about-story-grid {
  display: grid;
  gap: 28px;
}

.about-story-panel {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.about-story-panel-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-story-panel-reverse .about-story-image {
  order: 2;
}

.about-story-image {
  position: relative;
  overflow: hidden;
  min-height: 470px;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}


.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 62px);
}

.about-story-copy span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story-copy h3 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-story-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Values */
.about-values-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(20, 87, 255, 0.12);
}

.about-values-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}


.about-values-overlay-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 31, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.about-values-overlay-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-values-overlay-card strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
}

.about-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-values-list div {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.about-values-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--cyan-soft);
  background: rgba(20, 87, 255, 0.18);
}

.about-values-list h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.about-values-list p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Credibility */
.about-credibility-section {
  position: relative;
  overflow: hidden;
}

.about-credibility-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/about-trust.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.about-credibility-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.74) 50%, rgba(2, 6, 17, 0.88)),
    radial-gradient(circle at 76% 28%, rgba(47, 123, 255, 0.18), transparent 34%);
}

.about-credibility-panel {
  position: relative;
  z-index: 3;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(7, 17, 31, 0.42);
  backdrop-filter: blur(14px);
}

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

.about-credibility-grid div {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(255, 255, 255, 0.04);
}

.about-credibility-grid span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-weight: 700;
}

.about-credibility-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
}

.about-credibility-grid p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Final CTA */
.about-final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47, 123, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.about-final-panel .section-title {
  max-width: 780px;
}

.about-final-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.about-final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 240px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-hero-section {
    min-height: auto;
    padding: 140px 0 110px;
  }

  .about-intro-visual {
    min-height: 500px;
  }

  .about-story-panel,
  .about-story-panel-reverse {
    grid-template-columns: 1fr;
  }

  .about-story-panel-reverse .about-story-image {
    order: initial;
  }

  .about-story-image {
    min-height: 360px;
  }

  .about-values-visual,
  .about-values-visual img {
    min-height: 500px;
  }

  .about-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-final-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn,
  .about-final-actions .btn {
    width: 100%;
  }

  .about-intro-visual {
    min-height: auto;
  }

  .about-intro-image {
    position: relative;
    min-height: 420px;
  }

  .about-intro-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    margin-top: 14px;
    max-width: none;
  }

  .about-story-panel,
  .about-values-visual,
  .about-credibility-panel,
  .about-final-panel {
    border-radius: 26px;
  }

  .about-values-list,
  .about-credibility-grid {
    grid-template-columns: 1fr;
  }

  .about-values-visual,
  .about-values-visual img {
    min-height: 420px;
  }

  .about-credibility-panel {
    padding: 24px 18px;
  }

  .about-hero-watermark {
    white-space: normal;
    font-size: clamp(4.5rem, 22vw, 8rem);
  }
}

/* ==================================================
   Produits & Rapports Page
================================================== */

/* Hero */
.products-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/products-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.44) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97), rgba(2, 6, 17, 0.74) 44%, rgba(2, 6, 17, 0.42)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.7), rgba(2, 6, 17, 0.95)),
    radial-gradient(circle at 76% 30%, rgba(47, 123, 255, 0.22), transparent 34%);
  z-index: 1;
}

.products-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.55;
}

.products-hero-section .container {
  position: relative;
  z-index: 4;
}

.products-hero-title {
  max-width: 11ch;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.products-hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.72);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.46),
    0 0 110px rgba(20, 87, 255, 0.16);
}

.products-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.products-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.05), rgba(2, 6, 17, 0.86)),
    radial-gradient(circle at 72% 26%, rgba(47, 123, 255, 0.28), transparent 34%);
}

.products-hero-chip {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.42);
}

.products-hero-chip span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.products-hero-chip strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.chip-one {
  left: 32px;
  bottom: 34px;
}

.chip-two {
  top: 34px;
  right: 30px;
}

.chip-three {
  left: 34px;
  top: 38px;
}

.products-hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  white-space: nowrap;
}

/* Product logic */
.products-logic-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    0 0 90px rgba(20,87,255,0.12);
}

.logic-image {
  position: absolute;
  inset: 0;
}

.logic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.products-logic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.82), rgba(2, 6, 17, 0.28)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.08), rgba(2, 6, 17, 0.88)),
    radial-gradient(circle at 70% 28%, rgba(47,123,255,0.28), transparent 34%);
}

.logic-stack {
  position: absolute;
  z-index: 4;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  gap: 14px;
}

.logic-stack div {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255,255,255,0.105);
  backdrop-filter: blur(18px);
}

.logic-stack span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.logic-stack strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  color: #fff;
}

.logic-stack p {
  margin: 0;
  color: rgba(245,247,251,0.66);
  line-height: 1.55;
}

/* Reports grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow:
    0 28px 90px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.045);
}

.report-card-small {
  grid-column: span 2;
}

.report-card-featured {
  grid-column: span 2;
  border-color: rgba(47, 123, 255, 0.34);
}

.report-card-wide {
  grid-column: span 3;
  min-height: 560px;
}

.report-card-link {
  position: absolute;
  inset: 0;
  z-index: 8;
}

.report-image {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
}

.report-card-wide .report-image {
  min-height: 300px;
}

.report-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.report-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.02), rgba(2, 6, 17, 0.88)),
    radial-gradient(circle at 70% 24%, rgba(47, 123, 255, 0.24), transparent 34%);
}

.report-period,
.report-badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(7, 17, 31, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.report-badge {
  left: auto;
  right: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(20,87,255,0.92), rgba(112,215,255,0.34));
}

.report-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.report-tag {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-content h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: -0.045em;
}

.report-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.report-content ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.report-content li {
  position: relative;
  padding-left: 20px;
  color: rgba(245,247,251,0.78);
  line-height: 1.5;
}

.report-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-glow);
  box-shadow: 0 0 18px rgba(47,123,255,0.78);
}

.report-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 800;
}

.report-cta i {
  color: var(--cyan-soft);
}

/* Complete offer */
.products-complete-offer {
  position: relative;
  overflow: hidden;
}

.complete-offer-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/offer-complete.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.complete-offer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.78) 44%, rgba(2, 6, 17, 0.9)),
    radial-gradient(circle at 72% 30%, rgba(47,123,255,0.2), transparent 34%);
}

.complete-offer-panel {
  position: relative;
  z-index: 3;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(7, 17, 31, 0.38);
  backdrop-filter: blur(14px);
}

.complete-offer-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.complete-offer-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: rgba(245,247,251,0.82);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.complete-offer-points i {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(47, 123, 255, 0.58);
}

.complete-offer-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.105);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.42),
    0 0 90px rgba(20,87,255,0.16);
}

.complete-offer-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.92) contrast(1.08);
  transform: scale(1.04);
}

.complete-offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.05), rgba(2, 6, 17, 0.86)),
    radial-gradient(circle at 70% 22%, rgba(47,123,255,0.28), transparent 34%);
}

.offer-data-card {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0,0,0,0.42);
}

.offer-data-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-data-card strong {
  color: #fff;
  font-family: var(--font-heading);
}

.offer-data-main {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.offer-data-mini {
  top: 28px;
  right: 28px;
  max-width: 260px;
}

/* Final CTA */
.products-final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47,123,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.055);
}

.products-final-panel .section-title {
  max-width: 760px;
}

.products-final-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.products-final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 240px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .report-card-small,
  .report-card-featured,
  .report-card-wide {
    grid-column: span 3;
  }
}

@media (max-width: 991.98px) {
  .products-hero-section {
    min-height: auto;
    padding: 140px 0 110px;
  }

  .products-hero-visual,
  .products-hero-visual img {
    min-height: 500px;
  }

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

  .report-card-small,
  .report-card-featured,
  .report-card-wide {
    grid-column: span 1;
  }

  .products-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-final-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .products-hero-actions,
  .products-final-actions {
    flex-direction: column;
  }

  .products-hero-actions .btn,
  .products-final-actions .btn {
    width: 100%;
  }

  .products-hero-visual,
  .products-hero-visual img {
    min-height: 430px;
  }

  .products-hero-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 12px 18px;
  }

  .products-hero-visual {
    padding-bottom: 14px;
  }

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

  .report-card {
    min-height: auto;
    border-radius: 26px;
  }

  .report-image,
  .report-card-wide .report-image {
    min-height: 240px;
  }

  .complete-offer-panel,
  .complete-offer-visual,
  .products-final-panel {
    border-radius: 26px;
  }

  .complete-offer-visual,
  .complete-offer-visual img {
    min-height: 420px;
  }

  .offer-data-mini {
    display: none;
  }
}


/* ==================================================
   Données Disponibles Page
================================================== */

/* Hero */
.data-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.data-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/data-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.data-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97), rgba(2, 6, 17, 0.72) 44%, rgba(2, 6, 17, 0.44)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.72), rgba(2, 6, 17, 0.96)),
    radial-gradient(circle at 75% 32%, rgba(47, 123, 255, 0.22), transparent 34%);
}

.data-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.55;
  pointer-events: none;
}

.data-hero-section .container {
  position: relative;
  z-index: 4;
}

.data-hero-title {
  max-width: 11ch;
}

.data-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.data-hero-visual {
  position: relative;
  min-height: 610px;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(7, 17, 31, 0.72);
  box-shadow:
    0 42px 130px rgba(0,0,0,0.46),
    0 0 110px rgba(20,87,255,0.16);
}

.data-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.data-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,17,0.04), rgba(2,6,17,0.86)),
    radial-gradient(circle at 72% 26%, rgba(47,123,255,0.28), transparent 34%);
}

.data-hero-panel {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0,0,0,0.42);
}

.data-hero-panel span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.data-hero-panel strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.panel-main {
  left: 30px;
  bottom: 34px;
  right: 30px;
}

.panel-small {
  top: 34px;
  right: 30px;
}

.panel-bottom {
  top: 38px;
  left: 34px;
  max-width: 260px;
}

.data-hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(6.8rem, 17vw, 20rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  white-space: nowrap;
}

/* Data type panels */
.data-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.data-type-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.045);
}

.data-type-image {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.data-type-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.data-type-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,17,0.04), rgba(2,6,17,0.88)),
    radial-gradient(circle at 74% 26%, rgba(47,123,255,0.26), transparent 34%);
}

.data-type-content {
  padding: 30px;
}

.data-type-content span,
.market-metric-card span,
.data-field-item i {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.data-type-content h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.data-type-content p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* Transporter section */
.data-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.data-mini-stats div {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.04);
}

.data-mini-stats strong {
  display: block;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.6rem;
}

.data-mini-stats span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.transporter-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    0 0 90px rgba(20,87,255,0.12);
}

.transporter-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.transporter-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,17,0.84), rgba(2,6,17,0.2)),
    linear-gradient(180deg, rgba(2,6,17,0.05), rgba(2,6,17,0.88)),
    radial-gradient(circle at 70% 25%, rgba(47,123,255,0.3), transparent 34%);
}

.transporter-field-card {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7,17,31,0.76);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0,0,0,0.42);
}

.transporter-field-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.transporter-field-card strong {
  color: #fff;
  font-family: var(--font-heading);
}

.field-one {
  left: 30px;
  top: 34px;
}

.field-two {
  right: 30px;
  top: 42%;
}

.field-three {
  left: 30px;
  right: 30px;
  bottom: 30px;
}

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

.data-field-item {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.data-field-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(20,87,255,0.18);
  font-size: 1.25rem;
}

.data-field-item h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.data-field-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Market data */
.market-data-section {
  position: relative;
  overflow: hidden;
}

.market-data-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/data-market-map.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.36) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.market-data-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,17,0.96), rgba(2,6,17,0.78) 46%, rgba(2,6,17,0.9)),
    radial-gradient(circle at 72% 28%, rgba(47,123,255,0.22), transparent 34%);
}

.market-data-section .container {
  position: relative;
  z-index: 3;
}

.market-data-panel {
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(7,17,31,0.38);
  backdrop-filter: blur(14px);
}

.market-indicator-board {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.market-indicator-main,
.market-indicator-list div {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.095);
  backdrop-filter: blur(16px);
}

.market-indicator-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.market-indicator-main span,
.market-indicator-list span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-indicator-main strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #fff;
}

.market-indicator-main p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.market-indicator-list {
  display: grid;
  gap: 14px;
}

.market-indicator-list strong {
  color: #fff;
  font-family: var(--font-heading);
}

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

.market-metric-card {
  padding: 26px;
  min-height: 230px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(7,17,31,0.42);
  backdrop-filter: blur(14px);
}

.market-metric-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.market-metric-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Quality */
.data-quality-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.38),
    0 0 90px rgba(20,87,255,0.12);
}

.data-quality-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.data-quality-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,17,0.05), rgba(2,6,17,0.86)),
    radial-gradient(circle at 60% 20%, rgba(47,123,255,0.24), transparent 34%);
}

.quality-overlay-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(7,17,31,0.74);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
}

.quality-overlay-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quality-overlay-card strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.quality-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.quality-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  color: rgba(245,247,251,0.82);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-soft);
}

.quality-list i {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(47,123,255,0.58);
}

/* Final CTA */
.data-final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47,123,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.055);
}

.data-final-panel .section-title {
  max-width: 780px;
}

.data-final-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.data-final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 240px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .data-hero-section {
    min-height: auto;
    padding: 140px 0 110px;
  }

  .data-hero-visual,
  .data-hero-visual img {
    min-height: 500px;
  }

  .data-type-grid,
  .market-indicator-board,
  .market-metrics-grid {
    grid-template-columns: 1fr;
  }

  .data-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-final-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .data-hero-actions,
  .data-final-actions {
    flex-direction: column;
  }

  .data-hero-actions .btn,
  .data-final-actions .btn {
    width: 100%;
  }

  .data-hero-visual,
  .data-hero-visual img {
    min-height: 430px;
  }

  .data-hero-panel,
  .transporter-field-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 12px 18px;
  }

  .data-hero-visual,
  .transporter-visual {
    padding-bottom: 14px;
  }

  .data-type-panel,
  .transporter-visual,
  .market-data-panel,
  .data-quality-visual,
  .data-final-panel {
    border-radius: 26px;
  }

  .data-mini-stats,
  .data-field-grid {
    grid-template-columns: 1fr;
  }

  .transporter-visual,
  .transporter-visual img,
  .data-quality-visual,
  .data-quality-visual img {
    min-height: 420px;
  }

  .market-metric-card {
    min-height: auto;
  }
}



/* ==================================================
   Solutions par Secteur Page
================================================== */

/* Hero */
.solutions-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.solutions-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/solutions-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97), rgba(2, 6, 17, 0.72) 44%, rgba(2, 6, 17, 0.44)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.72), rgba(2, 6, 17, 0.96)),
    radial-gradient(circle at 75% 32%, rgba(47, 123, 255, 0.22), transparent 34%);
}

.solutions-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.55;
  pointer-events: none;
}

.solutions-hero-section .container {
  position: relative;
  z-index: 4;
}

.solutions-hero-title {
  max-width: 11ch;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.solutions-hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(7, 17, 31, 0.72);
  box-shadow:
    0 42px 130px rgba(0,0,0,0.46),
    0 0 110px rgba(20,87,255,0.16);
}

.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.solutions-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,17,0.04), rgba(2,6,17,0.86)),
    radial-gradient(circle at 72% 26%, rgba(47,123,255,0.28), transparent 34%);
}

.solutions-hero-chip {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 76px rgba(0,0,0,0.42);
}

.solutions-hero-chip span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.solutions-hero-chip strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.chip-main {
  left: 30px;
  bottom: 34px;
  right: 30px;
}

.chip-top {
  top: 34px;
  right: 30px;
}

.chip-bottom {
  top: 38px;
  left: 34px;
  max-width: 240px;
}

.solutions-hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(6.8rem, 17vw, 20rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  white-space: nowrap;
}

/* Sector overview */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.sector-card {
  position: relative;
  min-height: 520px;
  grid-column: span 2;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.035);
  box-shadow:
    0 28px 90px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.045);
}

.sector-card-large {
  grid-column: span 3;
}

.sector-card-link {
  position: absolute;
  inset: 0;
  z-index: 8;
}

.sector-card-image {
  position: absolute;
  inset: 0;
}

.sector-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,17,0.04), rgba(2,6,17,0.9)),
    radial-gradient(circle at 70% 24%, rgba(47,123,255,0.22), transparent 34%);
  z-index: 1;
}

.sector-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
}

.sector-card-content span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sector-card-content h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.sector-card-content p {
  max-width: 520px;
  color: rgba(245,247,251,0.72);
  line-height: 1.7;
}

.sector-card-content strong {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-size: 0.92rem;
}

/* Sector stories */
.sector-story-stack {
  display: grid;
  gap: 28px;
}

.sector-story-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.035);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.055);
}

.sector-story-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.sector-story-reverse .sector-story-image {
  order: 2;
}

.sector-story-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.sector-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.sector-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,17,0.12), rgba(2,6,17,0.72)),
    radial-gradient(circle at 72% 30%, rgba(47,123,255,0.24), transparent 34%);
}

.sector-story-copy {
  padding: clamp(28px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-story-copy span,
.sector-fit-main span,
.sector-fit-list span,
.sector-extra-card span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sector-story-copy h3 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.sector-story-copy p {
  color: var(--text-muted);
  line-height: 1.8;
}

.sector-story-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.sector-story-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(245,247,251,0.78);
}

.sector-story-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-glow);
  box-shadow: 0 0 18px rgba(47,123,255,0.78);
}

/* Data fit */
.sector-data-fit-section {
  position: relative;
  overflow: hidden;
}

.sector-data-fit-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/solutions-data-fit.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.36) saturate(0.86) contrast(1.08);
  transform: scale(1.04);
}

.sector-data-fit-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,17,0.96), rgba(2,6,17,0.78) 46%, rgba(2,6,17,0.9)),
    radial-gradient(circle at 72% 28%, rgba(47,123,255,0.22), transparent 34%);
}

.sector-data-fit-section .container {
  position: relative;
  z-index: 3;
}

.sector-data-fit-panel {
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(7,17,31,0.38);
  backdrop-filter: blur(14px);
}

.sector-fit-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.sector-fit-main,
.sector-fit-list div {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.095);
  backdrop-filter: blur(16px);
}

.sector-fit-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-fit-main strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #fff;
}

.sector-fit-main p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.sector-fit-list {
  display: grid;
  gap: 14px;
}

.sector-fit-list strong {
  color: #fff;
  font-family: var(--font-heading);
}

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

.sector-extra-card {
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.095);
  background: rgba(7,17,31,0.44);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.sector-extra-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.9) contrast(1.08);
}

.sector-extra-card div {
  padding: 24px;
}

.sector-extra-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.sector-extra-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Final CTA */
.solutions-final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 26%, rgba(47,123,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  box-shadow:
    0 34px 110px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.055);
}

.solutions-final-panel .section-title {
  max-width: 780px;
}

.solutions-final-panel .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.solutions-final-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 240px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .sector-card,
  .sector-card-large {
    grid-column: span 3;
  }

  .sector-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .solutions-hero-section {
    min-height: auto;
    padding: 140px 0 110px;
  }

  .solutions-hero-visual,
  .solutions-hero-visual img {
    min-height: 500px;
  }

  .sector-story-panel,
  .sector-story-reverse {
    grid-template-columns: 1fr;
  }

  .sector-story-reverse .sector-story-image {
    order: initial;
  }

  .sector-fit-board {
    grid-template-columns: 1fr;
  }

  .solutions-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutions-final-actions {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .solutions-hero-actions,
  .solutions-final-actions {
    flex-direction: column;
  }

  .solutions-hero-actions .btn,
  .solutions-final-actions .btn {
    width: 100%;
  }

  .solutions-hero-visual,
  .solutions-hero-visual img {
    min-height: 430px;
  }

  .solutions-hero-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 12px 18px;
  }

  .solutions-hero-visual {
    padding-bottom: 14px;
  }

  .sector-grid,
  .sector-extra-grid {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .sector-card-large {
    grid-column: span 1;
    min-height: 460px;
    border-radius: 26px;
  }

  .sector-story-panel,
  .sector-data-fit-panel,
  .sector-extra-card,
  .solutions-final-panel {
    border-radius: 26px;
  }

  .sector-story-image {
    min-height: 340px;
  }
}


/* ==================================================
   NaqlData Animated Statistics Marquee
================================================== */

.naql-stats-marquee-section {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 24vw, 390px);
  margin-top: clamp(42px, 6vw, 76px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 3vw, 42px);
  background: transparent;
  isolation: isolate;
}

.naql-stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.naql-stats-row {
  position: relative;
  z-index: 3;
  width: 128vw;
  margin-left: -14vw;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(20, 87, 255, 0.12);
  will-change: transform;
}

.naql-stats-row-primary {
  transform: rotate(-3.2deg);
  background:
    linear-gradient(90deg, #ffffff 0%, #f4f8ff 42%, #dfeaff 100%);
  color: #020611;
}

.naql-stats-row-secondary {
  transform: rotate(3deg);
  background:
    linear-gradient(90deg, rgba(3, 8, 19, 0.98), rgba(7, 17, 31, 0.98));
  color: #ffffff;
}

.naql-stats-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.naql-stats-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.naql-stats-group span {
  display: inline-flex;
  align-items: center;
  padding: clamp(16px, 2vw, 28px) clamp(22px, 3vw, 52px);
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-size: clamp(2rem, 5.6vw, 6.6rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.naql-stats-row-primary .naql-stats-group span {
  color: rgba(2, 6, 17, 0.96);
}

.naql-stats-row-secondary .naql-stats-group span {
  color: rgba(245, 247, 251, 0.94);
}

.naql-stats-arrow {
  padding-inline: clamp(8px, 1.5vw, 22px) !important;
}

.naql-stats-row-primary .naql-stats-arrow {
  color: #1457ff !important;
}

.naql-stats-row-secondary .naql-stats-arrow {
  color: #70d7ff !important;
  text-shadow: 0 0 28px rgba(112, 215, 255, 0.5);
}

/* Hover */
@media (hover: hover) and (pointer: fine) {
  .naql-stats-row {
    transition:
      filter 0.36s var(--ease-premium, ease),
      box-shadow 0.36s var(--ease-premium, ease);
  }

  .naql-stats-row:hover {
    filter: brightness(1.06);
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .naql-stats-marquee-section {
    min-height: 300px;
    margin-top: 54px;
  }

  .naql-stats-group span {
    font-size: clamp(2.2rem, 8vw, 5rem);
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .naql-stats-marquee-section {
    min-height: 250px;
    margin-top: 42px;
    gap: 24px;
  }

  .naql-stats-row {
    width: 145vw;
    margin-left: -22.5vw;
  }

  .naql-stats-row-primary {
    transform: rotate(-4.5deg);
  }

  .naql-stats-row-secondary {
    transform: rotate(4deg);
  }

  .naql-stats-group span {
    padding: 16px 24px;
    font-size: clamp(2rem, 13vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .naql-stats-track {
    transform: none !important;
  }
}