/* STECOM — styles.css
   Premium industrial B2B design (fast, accessible, SEO-friendly)
   Notes:
   - Pure CSS, no framework
   - Designed to work with the existing HTML structure/classes
*/

/* -----------------------------
   Design tokens
------------------------------ */
:root{
  /* Colors */
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f0f4f9;
  --text: #0b1220;
  --muted: #455468;
  --muted-2:#6b7b91;
  --border: rgba(11,18,32,.10);
  --border-strong: rgba(11,18,32,.16);

  /* Brand accent (industrial blue) */
  --accent: #0b5fff;
  --accent-2: #00a3ff;
  
  /* Unified color system for visual coherence */
  --brand-blue-light: rgba(11,95,255,.75); /* Hero main blue - soft, professional */
  --brand-blue-dark: #0a1628; /* Dark navy for contrast sections */
  --brand-blue-darker: #071426; /* Deeper navy */
  --brand-accent-red: #ff4500; /* Accent color (red/orange) */
  --neutral-bg: #f6f8fb; /* Light grey background */
  --neutral-surface: #ffffff; /* White surfaces */

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(11,18,32,.06), 0 1px 3px rgba(11,18,32,.04);
  --shadow:    0 8px 24px rgba(11,18,32,.10), 0 2px 6px rgba(11,18,32,.06);
  --shadow-lg: 0 16px 48px rgba(11,18,32,.14), 0 4px 12px rgba(11,18,32,.08);

  /* Radius & spacing */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;

  --container: 1120px;
  --pad: 24px;

  /* Typography */
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* Dark-mode support (keeps industrial vibe) */
@media (prefers-color-scheme: dark){
  :root{
    --bg:#0b0f14;
    --surface:#0f1720;
    --surface-2:#111c27;
    --text:#e7edf6;
    --muted:#a7b6c9;
    --muted-2:#8ea1b7;
    --border: rgba(231,237,246,.12);
    --border-strong: rgba(231,237,246,.18);
    --shadow-sm: 0 6px 20px rgba(0,0,0,.35);
    --shadow:    0 16px 46px rgba(0,0,0,.45);
    --shadow-lg: 0 26px 70px rgba(0,0,0,.55);
  }
}

/* -----------------------------
   Base / reset
------------------------------ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1100px 520px at 12% -10%, rgba(11,95,255,.12), transparent 60%),
              radial-gradient(900px 420px at 88% 0%, rgba(0,163,255,.10), transparent 55%),
              var(--bg);
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
a:hover{ color: var(--accent); }
p{ margin: 0 0 16px; color: var(--muted); }
strong{ color: var(--text); }

:focus-visible{
  outline: 3px solid rgba(11,95,255,.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; scroll-behavior:auto !important; }
}

/* -----------------------------
   Layout helpers
------------------------------ */
.container{
  width: min(var(--container), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}
.section{
  padding: 100px 0;
  position: relative;
}
.section:not(.bg-light){
  background: var(--bg);
  box-shadow: none;
}
main > .section:first-of-type{
  box-shadow: none;
}
.bg-light{
  background: linear-gradient(180deg, rgba(11,18,32,.05) 0%, rgba(11,18,32,.07) 35%, rgba(11,18,32,.04) 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 0 rgba(11,18,32,.03);
}
.bg-light::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--border) 180%, transparent), transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.bg-light::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--border) 180%, transparent), transparent);
}
.bg-light > .container{
  position: relative;
}
.bg-light > .container::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: .2;
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 2px rgba(11,95,255,.08);
}
main > .section:first-of-type{
  padding-top: 112px;
  position: relative;
}
main > .section:first-of-type:not(.bg-light)::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--border) 160%, transparent), transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.text-center{ text-align:center; }

/* Titles */
h1,h2,h3{
  margin:0 0 12px;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 700;
}
h1{
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2{
  font-size: clamp(22px, 2.1vw, 30px);
  line-height:1.2;
  font-weight: 700;
}
h3{
  font-size: 18px;
  line-height:1.25;
  font-weight: 700;
}
.section-title{
  margin-bottom: 40px;
  position: relative;
  padding-top: 8px;
}
.section-title::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .4;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(11,95,255,.15);
}
.bg-light .section-title::before{
  opacity: .5;
  width: 60px;
  height: 4px;
}
.section-title p{
  margin-bottom: 0;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}
.section-subtitle{
  margin-top: 10px;
  margin-bottom: 32px;
  color: var(--muted-2);
  max-width: 78ch;
  font-size: 16px;
}

/* -----------------------------
   Header / navigation
------------------------------ */
header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 150%, transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,.95) inset, 0 4px 16px rgba(11,18,32,.06), 0 1px 2px rgba(11,18,32,.04);
}
.header-container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.logo{
  display: inline-flex;
  align-items: center;
  height: 56px;
  background: transparent !important;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.logo a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  background: transparent !important;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

/* Desktop */
.logo img{
  height: 78px;
  transition: height 0.3s ease;
}

header.scrolled .logo img{
  height: 78px;
}

/* Premium scroll effect - Logo reduction */
/* Header scroll state - transparent background */
header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

header.scrolled .logo {
  height: 56px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

header.scrolled .logo a {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

header.scrolled .logo img {
  height: 78px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remove any pseudo-elements that could create backgrounds */
.logo::before,
.logo::after,
.logo a::before,
.logo a::after,
.logo img::before,
.logo img::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
}

nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  gap: 10px;
}
nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: color-mix(in srgb, var(--text) 85%, var(--muted));
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
nav a:hover{
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--text);
  transform: translateY(-1px);
}
nav a.active{
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), color-mix(in srgb, var(--accent) 14%, transparent));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  box-shadow: 0 3px 8px rgba(11,95,255,.12), 0 1px 2px rgba(11,95,255,.08), inset 0 1px 0 rgba(255,255,255,.4);
  color: var(--text);
}

/* Mobile nav */
.menu-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow-sm);
  cursor:pointer;
  user-select:none;
  transition: transform .18s var(--ease), background .18s var(--ease);
}
.menu-toggle:hover{ transform: translateY(-1px); }

/* -----------------------------
   Buttons
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(11,95,255,.14), 0 2px 4px rgba(11,95,255,.08), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  position: relative;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,95,255,.20), 0 3px 8px rgba(11,95,255,.12), inset 0 1px 0 rgba(255,255,255,.7);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 16%, transparent), color-mix(in srgb, var(--accent) 12%, transparent));
}
.btn:active{ transform: translateY(0); }

.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(11,95,255,.25), 0 2px 6px rgba(11,95,255,.15), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn.primary:hover{
  box-shadow: 0 8px 28px rgba(11,95,255,.32), 0 4px 10px rgba(11,95,255,.18), inset 0 1px 0 rgba(255,255,255,.25);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 95%, white), color-mix(in srgb, var(--accent-2) 95%, white));
}

/* -----------------------------
   Hero
------------------------------ */
.hero{
  padding: 160px 0 140px;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(11,95,255,.75) 0%, rgba(0,82,230,.65) 50%, rgba(0,61,204,.55) 100%);
  background-size: 150% 150%, cover;
  background-position: 0% 0%, center;
  background-attachment: fixed;
  min-height: 700px;
  display: flex;
  align-items: center;
  animation: heroGradientMove 20s ease-in-out infinite;
}
@keyframes heroGradientMove {
  0%, 100% {
    background-position: 0% 0%, center;
  }
  50% {
    background-position: 100% 100%, center;
  }
}
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10,31,68,.55) 0%, rgba(10,31,68,.48) 50%, rgba(10,31,68,.42) 100%),
    radial-gradient(ellipse 900px 700px at 50% 45%, transparent 0%, rgba(10,31,68,.2) 40%, rgba(10,31,68,.32) 65%, rgba(10,31,68,.48) 100%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='techGrid' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='120' r='1.2' fill='%23ffffff'/%3E%3Cline x1='0' y1='0' x2='40' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='80' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='120' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='120' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='120' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='120' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='0' x2='0' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='0' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='0' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='40' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='0' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='80' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23techGrid)'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 120px 120px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  animation: techPatternMove 100s linear infinite;
  mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%);
}
@keyframes techPatternMove {
  0% { background-position: 0 0, 0 0, 0 0; }
  50% { background-position: 0 0, 0 0, 60px 60px; }
  100% { background-position: 0 0, 0 0, 120px 120px; }
}
/* Clean dark gradient fade - cinematic transition to next section */
.hero::after{
  content:"";
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(246,248,251,.25) 35%,
    rgba(246,248,251,.55) 65%,
    rgba(246,248,251,.85) 85%,
    #f6f8fb 100%);
  z-index: 2;
  pointer-events: none;
}
/* Remove decorative line that creates visible edge */
.hero + main > .section:first-of-type::before{
  display: none;
  content: none;
}
.hero .container{
  position: relative;
  z-index: 3;
  max-width: 900px;
}
@media (min-width: 981px){
  .hero .container::before{
    content: "";
    position: absolute;
    inset: -50%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    mix-blend-mode: overlay;
    z-index: -1;
    pointer-events: none;
  }
}
.hero h1{
  color: #ffffff;
  text-shadow: 0 0 12px rgba(11,95,255,.25), 0 2px 8px rgba(0,0,0,.4), 0 4px 16px rgba(0,0,0,.2);
  margin-bottom: 24px;
  position: relative;
  display: block;
}
.hero h1::before{
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4500, #ff5500);
  box-shadow: 0 0 8px rgba(255,69,0,.6);
  animation: underlineGrow 1.2s ease-out 0.8s forwards;
}
@keyframes underlineGrow {
  to {
    width: 100%;
  }
}
.hero-line{
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: heroTitleFadeIn 0.8s ease-out forwards;
  white-space: nowrap;
}
.hero-line:nth-child(1){
  animation-delay: 0.1s;
}
.hero-line:nth-child(2){
  animation-delay: 0.3s;
}
.hero-line:nth-child(3){
  animation-delay: 0.5s;
}
.hero-line:nth-child(4){
  animation-delay: 0.7s;
}
@keyframes heroTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero h1::after{
  content:"";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff4500;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 0 20px rgba(255,69,0,.7), 0 0 40px rgba(255,69,0,.5), 0 0 60px rgba(255,69,0,.3);
  animation: pulseGlow 3.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255,69,0,.7), 0 0 40px rgba(255,69,0,.5), 0 0 60px rgba(255,69,0,.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(255,69,0,1), 0 0 60px rgba(255,69,0,.85), 0 0 90px rgba(255,69,0,.7), 0 0 120px rgba(255,69,0,.4);
  }
}
.hero p{
  font-size: 16px;
  max-width: 85%;
  margin: 24px 0 40px;
  color: rgba(255,255,255,.95);
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.01em;
}
.hero p::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff4500;
  border-radius: 1px;
  box-shadow: 0 0 4px rgba(255,69,0,.5);
}
.hero .btn{ 
  padding: 16px 32px; 
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4500 0%, #ff5500 50%, #ff4500 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255,69,0,.32), 0 3px 10px rgba(255,69,0,.22), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-position .25s var(--ease);
  position: relative;
  z-index: 2;
  overflow: hidden;
  animation: ctaGradientShift 4s ease-in-out infinite, ctaPulseGlow 3s ease-in-out infinite;
}
.hero .btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: ctaShine 3s ease-in-out infinite;
}
@keyframes ctaGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes ctaGradientShiftHover {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes ctaPulseGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255,69,0,.32), 0 3px 10px rgba(255,69,0,.22), inset 0 1px 0 rgba(255,255,255,.2);
  }
  50% {
    box-shadow: 0 8px 28px rgba(255,69,0,.42), 0 4px 14px rgba(255,69,0,.32), inset 0 1px 0 rgba(255,255,255,.25);
  }
}
@keyframes ctaShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.hero .btn:hover{
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 12px 40px rgba(255,69,0,.35), 0 6px 24px rgba(255,69,0,.25), 0 2px 8px rgba(255,69,0,.2), inset 0 1px 0 rgba(255,255,255,.3);
  animation: ctaGradientShiftHover 2s ease-in-out infinite, ctaPulseGlow 3s ease-in-out infinite;
}
.hero .btn:active{
  transform: translateY(0) scale(1);
}

/* -----------------------------
   Cards / grids
------------------------------ */
.services-grid,
.features-grid,
.clients-grid,
.sectors-grid,
.team-grid,
.commitments,
.process-steps,
.certifications,
.locations-grid{
  display:grid;
  gap: 24px;
}

/* Responsive grids */
.services-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.features-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.clients-grid{ grid-template-columns: repeat(6, minmax(0, 1fr)); }
.sectors-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.commitments{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-steps{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
.certifications{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.locations-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card,
.feature,
.sector-card,
.team-member,
.commitment,
.certification,
.service-detail,
.client-placeholder,
.process-step,
.location-card{
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 97%, var(--bg)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(11,18,32,.06), 0 1px 4px rgba(11,18,32,.04), inset 0 1px 0 rgba(255,255,255,.9);
  padding: 28px;
  position: relative;
  overflow:hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.feature{
  border-left: 2px solid transparent;
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 96%, var(--bg)) 100%);
  box-shadow: 0 5px 20px rgba(11,18,32,.07), 0 2px 6px rgba(11,18,32,.05), inset 0 1px 0 rgba(255,255,255,.9);
  padding: 32px;
}
.feature:hover{
  border-left-color: color-mix(in srgb, var(--accent) 30%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(11,18,32,.13), 0 4px 10px rgba(11,18,32,.09), inset 0 1px 0 rgba(255,255,255,.95);
  border-color: color-mix(in srgb, var(--border-strong) 130%, transparent);
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 99%, var(--bg)) 100%);
}
.service-card:hover,
.sector-card:hover,
.team-member:hover,
.commitment:hover,
.certification:hover,
.service-detail:hover,
.process-step:hover,
.location-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11,18,32,.12), 0 3px 8px rgba(11,18,32,.08), inset 0 1px 0 rgba(255,255,255,.95);
  border-color: color-mix(in srgb, var(--border-strong) 120%, transparent);
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 99%, var(--bg)) 100%);
}

/* Subtle top accent line */
.service-card::before,
.sector-card::before,
.team-member::before,
.commitment::before,
.certification::before,
.service-detail::before,
.process-step::before,
.location-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .4;
  transition: opacity .2s var(--ease);
}
.feature::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .45;
  transition: opacity .2s var(--ease);
}
.service-card:hover::before,
.sector-card:hover::before,
.team-member:hover::before,
.commitment:hover::before,
.certification:hover::before,
.service-detail:hover::before,
.process-step:hover::before,
.location-card:hover::before{
  opacity: .55;
}
.feature:hover::before{
  opacity: .65;
}

.service-card h3,
.feature h3,
.sector-card h3,
.team-member h3,
.commitment h3,
.certification h3,
.service-detail h3,
.process-step h3,
.location-card h3{
  margin-bottom: 10px;
}

.service-content p,
.commitment p,
.feature p,
.process-step p,
.location-card p{
  margin:0;
  line-height: 1.6;
}

.service-detail{
  padding: 24px 24px 20px;
}
.service-detail .small{
  margin-top: 12px;
  font-family: var(--mono);
  letter-spacing: .01em;
  color: var(--muted-2);
}

/* Clients placeholders */
.client-placeholder{
  padding: 18px 14px;
  text-align:center;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: none;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
}
.client-placeholder:hover{
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--border-strong);
}

/* Process steps */
.process-step{
  text-align: center;
}

/* Location cards */
.location-card{
  text-align: center;
}

/* Team members */
.member-photo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.position{
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Coverage areas */
.coverage{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.coverage-area{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.coverage-area h3{
  margin-bottom: 12px;
}
.coverage-area ul{
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.coverage-area li{
  margin-bottom: 8px;
}

/* CTA section */
.cta-section{
  text-align: center;
  margin-top: 48px;
}
.cta-section p{
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--muted);
}

/* -----------------------------
   About layout
------------------------------ */
.about-content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:start;
}
.about-image{
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  border-radius: var(--radius-lg);
  min-height: 240px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px;
  overflow: hidden;
}
.about-image::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .4;
}
.about-text .service-detail{ margin-top: 18px; }

.image-placeholder{
  background: color-mix(in srgb, var(--surface-2) 80%, var(--bg)) !important;
  border-radius: var(--radius) !important;
  box-shadow: inset 0 2px 4px rgba(11,18,32,.04);
}

/* -----------------------------
   Contact
------------------------------ */
.contact-container{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items:start;
}
.contact-info{
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 98%, var(--bg)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.8);
  padding: 28px;
  position: sticky;
  top: 92px;
}
.contact-info h2{
  margin-bottom: 20px;
}
.contact-info h3{
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}
.contact-info p{ 
  margin-bottom: 12px; 
  line-height: 1.6;
}

.contact-form{
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 98%, var(--bg)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.8);
  padding: 32px;
}
.contact-form h2{
  margin-bottom: 24px;
}
.form-group{ margin-bottom: 20px; }
label{
  display:block;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
}
.form-control,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"]{
  width:100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 98%, var(--bg)) 100%);
  color: var(--text);
  box-shadow: inset 0 2px 4px rgba(11,18,32,.04), 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
  font-family: var(--font);
  font-size: 15px;
}
textarea{ resize: vertical; min-height: 140px; }
.form-control:focus,
select:focus,
textarea:focus,
input:focus{
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  box-shadow: 0 0 0 4px rgba(11,95,255,.12), inset 0 2px 4px rgba(11,18,32,.04), 0 1px 0 rgba(255,255,255,.8);
  outline: none;
  transform: translateY(-1px);
}
.form-actions{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:flex-start;
  margin-top: 16px;
}

/* Checkbox */
.checkbox-container{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-weight: 600;
  color: var(--muted);
  user-select:none;
  font-size: 14px;
  line-height: 1.5;
}
.checkbox-container input{
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

/* -----------------------------
   Footer - Premium Dark Design
   Modern B2B corporate footer with elegant dark theme
------------------------------ */
footer{
  position: relative;
  padding: 40px 0 25px;
  /* Seamless transition from Why STECOM - same lightened palette */
  margin-top: -60px;
  padding-top: 80px;
  /* Lightened dark blue palette - brand closing, elegant finish */
  background:
    linear-gradient(180deg, #0c1a2f 0%, #0a1628 50%, #081426 100%);
  overflow: hidden;
}

/* Remove footer overlays - clean, compact design */
footer::before,
footer::after{
  display: none;
  content: none;
}

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

/* Unified typography rhythm - consistent spacing across sections */
/* Unified typography hierarchy - luxury feel, consistent rhythm */
.expertise-section .section-title h2,
.why-stecom .section-title h2{
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}

.expertise-section .section-title{
  margin-bottom: 56px;
}

.expertise-section .section-title p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.why-stecom .section-title{
  margin-bottom: 64px;
}

.why-stecom .section-title p{
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* Unified section padding rhythm */
.section{
  padding: 100px 0; /* Base padding */
}

.expertise-section{
  padding: 120px 0;
}

.why-stecom{
  padding: 120px 0;
}

.footer-content{
  display: flex;
  gap: 32px; /* Compact spacing for premium efficiency */
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px; /* Reduced spacing after removing separator */
  padding-bottom: 0; /* Removed padding after removing separator */
}

.footer-section{
  flex: 1;
  min-width: 200px;
}

/* Company branding section - left */
.footer-section:first-child h3{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.footer-section:first-child p{
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 280px;
}

/* Section headings - strong hierarchy */
.footer-section h3{
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.footer-section p{
  margin-bottom: 8px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.footer-section ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li{
  margin-bottom: 10px;
}

/* Link styling with micro-hover effects */
.footer-section ul li a,
.footer-section a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  display: inline-block;
  position: relative;
  padding-left: 0;
  font-size: 13px;
  line-height: 1.55;
}

.footer-section ul li a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s cubic-bezier(.2,.8,.2,1);
}

.footer-section ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
  transform: translateX(2px);
}

.footer-section ul li a:hover::before{
  width: 20px;
}

/* Contact info styling */
.footer-section:last-child p{
  color: rgba(255,255,255,.75);
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.55;
}

.footer-section:last-child p:first-of-type{
  margin-top: 4px;
}

/* Footer bottom - copyright */
.footer-bottom{
  padding-top: 0; /* Removed padding after removing separator */
  margin-top: 0; /* Removed margin after removing separator */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p{
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* Social links section */
.social-links{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.8);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  font-size: 14px;
  text-decoration: none;
  box-shadow: 
    0 4px 12px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.social-link:hover{
  transform: translateY(-3px);
  background: rgba(11,95,255,.2);
  border-color: rgba(11,95,255,.4);
  color: #ffffff;
  box-shadow: 
    0 8px 24px rgba(11,95,255,.3),
    0 4px 12px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.2);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .footer-section ul li a,
  .social-link{
    transition: none;
  }
  .footer-section ul li a:hover{
    transform: none;
    padding-left: 0;
  }
  .social-link:hover{
    transform: none;
  }
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 980px){
  .section{ padding: 80px 0; }
  main > .section:first-of-type{ padding-top: 88px; }
  .hero{ 
    padding: 120px 0 100px;
    background-attachment: scroll;
    min-height: 600px;
  }
  .hero::after {
    height: 180px;
  }
  .expertise-section {
    margin-top: -160px;
    padding-top: 280px;
  }
  .why-stecom {
    margin-top: -40px;
    padding-top: 120px;
  }
  .expertise-section{
    padding: 100px 0;
    background-attachment: scroll;
  }
  .expertise-section .section-title{
    margin-bottom: 50px;
  }
  .expertise-section .services-grid{
    gap: 32px;
  }
  .expertise-section .service-image{
    height: 220px;
  }
  .expertise-section .service-content{
    padding: 40px;
  }
  .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .features-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sectors-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .clients-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .process-steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .certifications{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .locations-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-content{ grid-template-columns: 1fr; }
  .about-image{ position: relative; top: 0; }
  .contact-container{ grid-template-columns: 1fr; }
  .contact-info{ position: relative; top: 0; }
  .coverage{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .section{ padding: 72px 0; }
  main > .section:first-of-type{ padding-top: 80px; }
  .hero{ 
    padding: 100px 0 80px;
    min-height: auto;
  }
  .hero::after {
    height: 140px;
  }
  .expertise-section {
    margin-top: -120px;
    padding-top: 260px;
  }
  .why-stecom {
    margin-top: -30px;
    padding-top: 100px;
  }
  .expertise-section{
    padding: 80px 0;
    background-attachment: scroll;
  }
  .expertise-section .section-title{
    margin-bottom: 40px;
  }
  .expertise-section .services-grid{
    gap: 28px;
  }
  .expertise-section .service-image{
    height: 200px;
  }
  .expertise-section .service-content{
    padding: 32px;
  }
  .expertise-section .service-content h3{
    font-size: 1.125rem;
  }
  .hero .container::after{
    display: none;
  }
  .hero h1::after{
    display: none;
  }
  .logo{
    height: 48px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .logo a {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  
@media (max-width: 720px){

  /* Taille normale mobile */
  .logo img{
    height: 60px; /* au lieu de 48 */
  }

  /* Taille au scroll (identique) */
  header.scrolled .logo img{
    height: 60px;
  }
}
  
  header.scrolled .logo a {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  header.scrolled .logo img {
    height: 60px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  nav ul{ gap: 4px; }
  nav a{ padding: 10px 10px; }
  .services-grid,
  .features-grid,
  .sectors-grid,
  .team-grid,
  .commitments,
  .certifications,
  .locations-grid{ grid-template-columns: 1fr; }
  .clients-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-steps{ grid-template-columns: 1fr; }
  .footer-content{ 
    flex-direction: column; 
    gap: 28px;
    padding-bottom: 0;
    margin-bottom: 16px;
  }
  .footer-section:first-child p{
    max-width: 100%;
  }
  .footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .menu-toggle{ display:flex; }
  nav{
    position: relative;
  }
  nav ul{
    position:absolute;
    top: 54px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display:none;
  }
  nav.open ul{ display:flex; }
  nav a{ border-radius: 14px; }
}

/* Utility */
.small{ font-size: 14px; color: var(--muted-2); }

/* === LOGO HEADER === */
/* Logo styles are defined above at line 257 - removed duplicate to avoid conflicts */

/* =============================
   EXPERTISE SECTION - PREMIUM
   Unified with global design system
   Smooth transitions from Hero and to Why STECOM
============================= */

.expertise-section{
  position: relative;
  padding: 140px 0;
  /* Transparent start to reveal hero dark fade, then gradual background reveal - no white overlay, no blur */
  background: 
    linear-gradient(180deg, transparent 0%, transparent 25%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0.35) 70%, rgba(255,255,255,0.55) 85%, rgba(255,255,255,0.75) 100%),
    linear-gradient(180deg, transparent 0%, transparent 85%, rgba(12,26,47,.2) 92%, rgba(12,26,47,.45) 100%),
    url("../assets/ladefense.jpg") center/cover no-repeat;
}

/* Remove all overlays - clean transition */
/* Background image with blur - cinematic effect */
.expertise-section::after{
  content:"";
  position:absolute;
  inset:0;
  background: 
    url("../assets/ladefense.jpg") center/cover no-repeat;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transform: scale(1.08);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

/* Content above background layers */
.expertise-section .container{
  position:relative;
  z-index: 3;
}

/* Bottom fade to why-stecom section */
.expertise-section .container::after{
  content:"";
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(246,248,251,.15) 25%,
    rgba(246,248,251,.4) 50%,
    rgba(246,248,251,.7) 75%,
    #f6f8fb 100%);
  z-index: 4;
  pointer-events: none;
}

/* Titres - White with shadow for readability */
.expertise-section .section-title h2,
.expertise-section h2{
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3) !important;
}

.expertise-section .section-title p,
.expertise-section .section-title .subtitle{
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3) !important;
}

/* Other titles and text in section */
.expertise-section h3{
  color:#0b1220;
}

.expertise-section p:not(.section-title p){
  color:#455468;
}

/* Cards - unified shadow system and hover effects */
.expertise-section .service-card{
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg); /* Consistent 18px via variable */
  overflow:hidden;
  /* Unified shadow system - premium depth */
  box-shadow: 
    0 4px 20px rgba(11,18,32,.08),
    0 2px 8px rgba(11,18,32,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.expertise-section .service-card:hover{
  transform: translateY(-10px) scale(1.01); /* Subtle floating effect */
  /* Enhanced shadow on hover - unified system */
  box-shadow: 
    0 24px 56px rgba(11,18,32,.16),
    0 10px 28px rgba(11,18,32,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.service-image{
  height:240px;
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.6s var(--ease); /* Unified transition timing */
}

.expertise-section .service-card:hover img{
  transform: scale(1.06); /* Subtle zoom - consistent across site */
}

.service-content{
  padding:36px;
}

.service-link{
  font-weight:700;
  color:#0b5fff;
}
.service-link:hover{
  text-decoration:underline;
}

/* =============================
   WHY STECOM - PREMIUM
============================= */

.bg-light{
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(11,95,255,.08), transparent),
    linear-gradient(180deg, #f2f5f9 0%, #e9eef5 100%);
}

.features-grid{
  gap: 32px;
}

.feature{
  position: relative;
  padding: 40px 36px 38px;
  border-radius: 20px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: 
    0 10px 30px rgba(11,18,32,.10),
    inset 0 1px 0 rgba(255,255,255,.8);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}

.feature::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius:4px 0 0 4px;
  opacity:.35;
}

.feature:hover{
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(11,18,32,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.feature-icon{
  font-size: 26px;
  margin-bottom: 18px;
  width:48px;
  height:48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg,
    rgba(11,95,255,.15),
    rgba(0,163,255,.15));
  box-shadow:
    0 6px 16px rgba(11,95,255,.25),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.feature h3{
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

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

/* =============================
   WHY STECOM - PREMIUM
   Unified with Hero blue family
   Smooth transition from Expertise section
============================= */

.why-stecom{
  position: relative;
  padding: 120px 0;
  /* Lightened dark blue palette - natural evolution from Hero blues */
  background:
    radial-gradient(ellipse 1200px 500px at 15% 0%, rgba(11,95,255,.22), transparent 70%),
    radial-gradient(ellipse 1000px 400px at 85% 100%, rgba(0,163,255,.18), transparent 65%),
    linear-gradient(180deg, #0c1a2f 0%, #0a1628 50%, #081426 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

/* Smooth fade transition at top - removes hard line from previous section */
.why-stecom::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:120px;
  background: linear-gradient(
    #0b1d34 0%,
    rgba(11,29,52,0.85) 30%,
    rgba(11,29,52,0.45) 60%,
    rgba(11,29,52,0.15) 80%,
    transparent 100%
  );
  z-index:1;
  pointer-events:none;
}

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

.why-stecom .section-title h2{
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.why-stecom .section-title p{
  color: rgba(255,255,255,.85);
}

.why-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:32px;
}

.why-card{
  position: relative;
  border-radius: var(--radius-lg); /* Unified border-radius */
  overflow:hidden;
  /* Unified shadow system for dark backgrounds */
  box-shadow: 
    0 8px 32px rgba(0,0,0,.4),
    0 2px 12px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.why-card:hover{
  transform: translateY(-10px) scale(1.01); /* Subtle floating effect - consistent */
  /* Enhanced shadow on hover - consistent with other cards */
  box-shadow: 
    0 28px 72px rgba(0,0,0,.55),
    0 10px 28px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.why-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

/* dark overlay for readability */
.why-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(5,15,30,.15),
    rgba(5,15,30,.85)
  );
}

.why-content{
  position:absolute;
  bottom:0;
  padding:28px;
  z-index:2;
}

.why-content h3{
  color:#fff;
  font-size:18px;
  margin-bottom:10px;
}

.why-content p{
  color: rgba(255,255,255,.85);
  font-size:14.5px;
  line-height:1.6;
}

/* responsive */
@media(max-width:1100px){
  .why-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:600px){
  .why-grid{
    grid-template-columns: 1fr;
  }
}

/* =============================
   SOLUTIONS PAGE - PREMIUM
   Two main solution cards + detailed sections
============================= */

/* Solutions Hero - consistent with homepage */
.solutions-hero{
  padding: 140px 0 120px;
  min-height: 500px;
}

.solutions-hero h1{
  max-width: 900px;
  margin: 0 auto 24px;
}

.solutions-hero p{
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* Main Solution Cards - Two Column Layout */
.solutions-main{
  padding: 80px 0;
  margin-top: -60px;
  padding-top: 140px;
}

.solutions-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
}

.solution-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  /* Premium shadow system */
  box-shadow: 
    0 8px 32px rgba(11,18,32,.12),
    0 2px 12px rgba(11,18,32,.08),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.solution-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 24px 64px rgba(11,18,32,.18),
    0 8px 24px rgba(11,18,32,.14),
    inset 0 1px 0 rgba(255,255,255,.15);
}

/* Background images */
.solution-card-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.solution-card-gsm .solution-card-bg{
  background-image: url("../assets/gsm.jpg");
}

.solution-card-vms .solution-card-bg{
  background-image: url("../assets/camera.jpg");
}

.solution-card:hover .solution-card-bg{
  transform: scale(1.08);
}

/* Dark overlay for text readability */
.solution-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5,15,30,.2) 30%,
    rgba(5,15,30,.6) 60%,
    rgba(5,15,30,.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.solution-card:hover .solution-card-overlay{
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5,15,30,.25) 30%,
    rgba(5,15,30,.65) 60%,
    rgba(5,15,30,.9) 100%
  );
}

/* Card content */
.solution-card-content{
  position: relative;
  z-index: 2;
  padding: 48px 40px 40px;
  width: 100%;
}

.solution-card-content h3{
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.solution-intro{
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.solution-features{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.solution-features li{
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.solution-features li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 16px;
}

.solution-cta{
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
}

/* Solution Detail Sections */
.solution-detail-section{
  padding: 100px 0;
}

.solution-detail-content{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.solution-detail-text h2{
  margin-bottom: 16px;
}

.solution-detail-text h3{
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text);
}

.solution-detail-text p{
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 15px;
}

/* Content blocks with soft cards for better visual rhythm */
.content-block{
  margin-bottom: 24px;
}

.content-card{
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(11, 95, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.content-card:hover{
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 95, 255, 0.12);
}

.content-card h3{
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.content-card p{
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Subtle separator between content blocks */
.content-separator{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 95, 255, 0.1), transparent);
  margin: 20px 0;
  border: none;
}

.solution-detail-text strong{
  color: var(--text);
  font-weight: 700;
}

/* Detail lists for better readability - Compact version */
.detail-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.detail-list li{
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.6;
  color: var(--muted);
  font-size: 14px;
}

.detail-list li::before{
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Human touch paragraph - emphasizes experience - Compact */
.human-touch{
  margin-top: 32px !important;
  padding: 20px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.06), rgba(0, 163, 255, 0.04));
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  position: relative;
  font-size: 15px;
}

.human-touch::before{
  content: """;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Gallery */
.solution-detail-gallery{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.gallery-item{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}

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

/* Micro CTA Sections - Soft calls to action after long content */
.micro-cta-section{
  padding: 60px 0;
  background: linear-gradient(180deg, var(--neutral-bg) 0%, var(--surface-2) 100%);
}

.micro-cta{
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 95, 255, 0.1);
}

.micro-cta-text{
  font-size: 18px;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.micro-cta-btn{
  display: inline-flex;
  padding: 14px 32px;
  font-size: 16px;
}

/* Intro section */
.intro-section{
  padding: 60px 0;
  background: var(--bg);
}

.intro-text{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

/* Proof of Trust Stats Band */
.proof-trust-band{
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.05), rgba(0, 163, 255, 0.03));
  border-top: 1px solid rgba(11, 95, 255, 0.1);
  border-bottom: 1px solid rgba(11, 95, 255, 0.1);
}

.proof-trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.proof-stat{
  text-align: center;
  position: relative;
}

.proof-stat-number{
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Fallback font for slash to ensure proper rendering */
.proof-stat-number .proof-stat-slash {
  font-family: Arial, Helvetica, "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.proof-stat-label{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.proof-stat-desc{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Premium Client Logo Cards */
.client-logo{
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(11, 95, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  overflow: hidden;
}

.client-logo::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.client-logo:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 95, 255, 0.2);
}

.client-logo:hover::before{
  opacity: 1;
}

.client-placeholder{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.client-logo:hover .client-placeholder{
  color: var(--accent);
}

/* Premium Sector Cards with Icons */
.sector-card{
  position: relative;
  padding-left: 56px;
}

.sector-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.12), rgba(0, 163, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.sector-industry::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7'%3E%3C/rect%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.sector-tertiary::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.sector-health::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-8.56'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.sector-mobility::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-6.219-8.56'%3E%3C/path%3E%3Cpath d='M8 12h8'%3E%3C/path%3E%3Cpath d='M12 8v8'%3E%3C/path%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.sector-card:hover::before{
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.18), rgba(0, 163, 255, 0.14));
}

/* Mini Case Studies */
.case-studies-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.case-study{
  background: var(--surface);
  border: 1px solid rgba(11, 95, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.case-study:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 95, 255, 0.2);
}

.case-study h3{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.case-project{
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-result{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Trust Block */
.trust-block{
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

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

/* Premium Trust Cards - Glassmorphism with Blue Tech Aesthetic */
.trust-item{
  position: relative;
  /* Glassmorphism base */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Subtle blue gradient overlay */
  background-image: 
    linear-gradient(135deg, rgba(11, 95, 255, 0.08) 0%, rgba(0, 163, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%);
  border: 1px solid rgba(11, 95, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 
    0 8px 32px rgba(11, 18, 32, 0.08),
    0 2px 12px rgba(11, 95, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  overflow: hidden;
  z-index: 1;
  /* Scroll animation - CSS only */
  opacity: 0;
  transform: translateY(30px);
  animation: trustCardFadeIn 0.8s var(--ease) forwards;
}

/* Staggered entrance animations */
.trust-item:nth-child(1){ animation-delay: 0.1s; }
.trust-item:nth-child(2){ animation-delay: 0.2s; }
.trust-item:nth-child(3){ animation-delay: 0.3s; }
.trust-item:nth-child(4){ animation-delay: 0.4s; }

@keyframes trustCardFadeIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Large watermark icon in background */
.trust-item::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Contextual watermark icons for each card */
.trust-item:nth-child(1)::before{
  /* Directive RED - Certificate/Regulation icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.trust-item:nth-child(2)::before{
  /* ANFR/ARCEP - Checkmark/Compliance icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-8.56'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.trust-item:nth-child(3)::before{
  /* RGPD - Shield/Lock/Privacy icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cpath d='M9 12l2 2 4-4'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.trust-item:nth-child(4)::before{
  /* 24/7 Support - Headphones/Support icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24' fill='none' stroke='%230b5fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'%3E%3C/path%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Premium badge top-left - Enhanced hierarchy */
.trust-item::after{
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 
    0 2px 8px rgba(11, 95, 255, 0.25),
    0 1px 3px rgba(11, 95, 255, 0.2);
  z-index: 3;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  font-family: var(--font);
}

.trust-item:nth-child(1)::after{
  content: "CERTIFIED";
}

.trust-item:nth-child(2)::after{
  content: "COMPLIANT";
}

.trust-item:nth-child(3)::after{
  content: "RGPD";
}

.trust-item:nth-child(4)::after{
  content: "24/7";
}

/* Premium hover effects - Subtle and refined */
.trust-item:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 20px 56px rgba(11, 18, 32, 0.1),
    0 8px 24px rgba(11, 95, 255, 0.12),
    0 0 0 1px rgba(11, 95, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(11, 95, 255, 0.22);
}

.trust-item:hover::before{
  opacity: 0.11;
  transform: translateY(-50%) scale(1.08);
}

.trust-item:hover::after{
  box-shadow: 
    0 4px 12px rgba(11, 95, 255, 0.35),
    0 2px 6px rgba(11, 95, 255, 0.25);
  transform: translateY(-1px);
}

/* Content positioning above background elements */
.trust-item > *{
  position: relative;
  z-index: 2;
}

/* Contextual premium icon styling - Icons match content */
.trust-icon{
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin-bottom: 28px;
  box-shadow: 
    0 6px 20px rgba(11, 95, 255, 0.28),
    0 2px 8px rgba(11, 95, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

/* Hide default checkmark and use SVG icons */
.trust-icon::before{
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

/* Contextual icons for each card - matching watermark theme */
.trust-item:nth-child(1) .trust-icon::before{
  /* Directive RED - Document/Certificate */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpath d='M14 2v6h6'%3E%3C/path%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.trust-item:nth-child(2) .trust-icon::before{
  /* ANFR/ARCEP - Check Circle */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-8.56'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}

.trust-item:nth-child(3) .trust-icon::before{
  /* RGPD - Shield Check */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cpolyline points='9 12 11 14 15 10'%3E%3C/polyline%3E%3C/svg%3E");
}

.trust-item:nth-child(4) .trust-icon::before{
  /* 24/7 Support - Headphones */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'%3E%3C/path%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'%3E%3C/path%3E%3C/svg%3E");
}

.trust-item:hover .trust-icon{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 10px 28px rgba(11, 95, 255, 0.35),
    0 4px 12px rgba(11, 95, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.trust-item:hover .trust-icon::before{
  transform: scale(1.08);
  opacity: 1;
}

/* Enhanced visual hierarchy */
.trust-item h3{
  margin-bottom: 16px;
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.trust-item p{
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
  font-size: 15px;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* Responsive Solutions Page */
@media (max-width: 980px){
  .solutions-cards{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .solution-card{
    min-height: 500px;
  }
  
  .solution-detail-content{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .solution-detail-gallery{
    position: relative;
    top: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid{
    grid-template-columns: 1fr;
  }
  
  .trust-item{
    padding: 36px 32px;
  }
  
  .trust-item::before{
    width: 140px;
    height: 140px;
    right: -15px;
  }
  
  .proof-trust-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .micro-cta{
    padding: 32px;
  }
}

@media (max-width: 720px){
  .solutions-hero{
    padding: 100px 0 80px;
    min-height: auto;
  }
  
  .solutions-main{
    padding: 60px 0;
    margin-top: -40px;
    padding-top: 100px;
  }
  
  .solution-card{
    min-height: 450px;
  }
  
  .solution-card-content{
    padding: 36px 28px 32px;
  }
  
  .solution-card-content h3{
    font-size: 24px;
  }
  
  .solution-detail-gallery{
    grid-template-columns: 1fr;
  }
  
  .solution-detail-section{
    padding: 80px 0;
  }
  
  .trust-block{
    padding: 80px 0;
  }
  
  .trust-item{
    padding: 32px 28px;
  }
  
  .micro-cta-section{
    padding: 50px 0;
  }
  
  .micro-cta{
    padding: 28px 24px;
  }
  
  .micro-cta-text{
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .micro-cta-btn{
    padding: 12px 28px;
    font-size: 15px;
  }
  
  .proof-trust-band{
    padding: 60px 0;
  }
  
  .proof-trust-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .proof-stat-number{
    font-size: 40px;
  }
  
  .proof-stat-label{
    font-size: 17px;
  }
  
  .proof-stat-desc{
    font-size: 13px;
  }
  
  .case-studies-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .clients-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-section{
    padding: 50px 0;
  }
  
  .intro-text{
    font-size: 16px;
  }
  
  .human-touch{
    padding: 18px;
    margin-top: 24px !important;
    font-size: 14px;
  }
  
  .detail-list li{
    font-size: 13px;
    margin-bottom: 6px;
    padding-left: 20px;
  }
  
  .content-card{
    padding: 20px;
  }
  
  .proof-trust-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .proof-stat-number{
    font-size: 36px;
  }
  
  .proof-stat-label{
    font-size: 16px;
  }
  
  .case-studies-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .client-logo{
    min-height: 100px;
    padding: 24px 20px;
  }
  
  .client-placeholder{
    font-size: 14px;
  }
  
  .sector-card{
    padding-left: 48px;
  }
  
  .sector-card::before{
    width: 36px;
    height: 36px;
    background-size: 20px 20px;
  }
  
  .intro-text{
    font-size: 15px;
  }
  
  .content-card h3{
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .content-card p{
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .content-separator{
    margin: 16px 0;
  }
  
  .content-block{
    margin-bottom: 20px;
  }
  
  .trust-item::before{
    width: 120px;
    height: 120px;
    right: -10px;
    opacity: 0.06;
  }
  
  .trust-item::after{
    top: 16px;
    left: 16px;
    padding: 5px 10px;
    font-size: 10px;
  }
  
  .trust-icon{
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
  }
  
  .trust-icon::before{
    width: 24px;
    height: 24px;
  }
  
  .trust-item h3{
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.35;
  }
  
  .trust-item p{
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Respect reduced motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .trust-item,
  .trust-item::before,
  .trust-item::after,
  .trust-icon,
  .trust-icon::before{
    transition: none;
    animation: none;
  }
  
  .trust-item{
    opacity: 1;
    transform: none;
  }
  
  .trust-item:hover{
    transform: none;
  }
  
  .trust-item:hover::before{
    transform: translateY(-50%);
    opacity: 0.08;
  }
  
  .trust-item:hover .trust-icon{
    transform: none;
  }
  
  .trust-item:hover .trust-icon::before{
    transform: none;
  }
  
  .trust-item:hover::after{
    transform: none;
  }
}

/* CLIENT LOGOS */
.client-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.client-card img {
  max-height: 45px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .8;
  transition: all .3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,110,255,0.15);
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* PREMIUM CASE STUDY CARDS - Réalisations récentes */
.case-study {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 18, 32, 0.08), 0 2px 8px rgba(11, 18, 32, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(11, 18, 32, 0.12), 0 4px 16px rgba(11, 18, 32, 0.08);
}

.case-study-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b5fff 0%, #00a3ff 100%);
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.case-study:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(11, 31, 68, 0.3) 50%,
    rgba(11, 31, 68, 0.75) 100%
  );
  z-index: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study:hover .case-study-overlay {
  opacity: 0.9;
}

.case-study-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  color: #ffffff;
}

.case-study-header .case-project {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.case-study-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.case-study-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.case-study-content .case-result {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0 0 24px 0;
  flex: 1;
}

.case-study-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #0b5fff;
  background: rgba(11, 95, 255, 0.08);
  border: 2px solid rgba(11, 95, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  width: fit-content;
}

.case-study-cta:hover {
  background: linear-gradient(135deg, #0b5fff 0%, #00a3ff 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 95, 255, 0.3);
}

.case-study-cta:active {
  transform: translateY(0);
}

/* Responsive adjustments for premium case studies */
@media (max-width: 980px) {
  .case-study-image {
    height: 240px;
  }

  .case-study-header {
    padding: 24px;
  }

  .case-study-header h3 {
    font-size: 22px;
  }

  .case-study-content {
    padding: 24px;
  }

  .case-study-content .case-result {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 720px) {
  .case-study-image {
    height: 220px;
  }

  .case-study-header {
    padding: 20px;
  }

  .case-study-header .case-project {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .case-study-header h3 {
    font-size: 20px;
  }

  .case-study-content {
    padding: 20px;
  }

  .case-study-content .case-result {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .case-study-cta {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .case-study {
    border-radius: 16px;
  }
}

/* CLIENT LOGOS - Full Color Display */
/* CLIENT LOGOS - Premium Hover Effects (References Page) */
.client-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.client-card img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transition: transform 0.15s ease !important;
}

.client-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 14px 32px rgba(0, 110, 255, 0.14) !important;
}

.client-card:hover img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.03) !important;
}

/* HERO INTRO PARAGRAPH - References Page */
.hero-intro {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.hero-intro::before {
  display: none;
}

@media (max-width: 720px) {
  .hero-intro {
    font-size: 15px;
    margin: 24px auto 0;
    padding: 0 16px;
    max-width: 100%;
  }
}

/* HERO REFERENCES - Premium Polish */
.hero-references {
  max-height: 65vh !important;
  min-height: 500px !important;
  padding: 100px 0 80px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Grid background pattern inherited from .hero::before */
.hero-references::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    linear-gradient(180deg, rgba(10,31,68,.55) 0%, rgba(10,31,68,.48) 50%, rgba(10,31,68,.42) 100%),
    radial-gradient(ellipse 900px 700px at 50% 45%, transparent 0%, rgba(10,31,68,.2) 40%, rgba(10,31,68,.32) 65%, rgba(10,31,68,.48) 100%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='techGrid' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='120' r='1.2' fill='%23ffffff'/%3E%3Cline x1='0' y1='0' x2='40' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='80' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='120' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='120' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='120' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='120' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='0' x2='0' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='0' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='0' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='40' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='0' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='80' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23techGrid)'/%3E%3C/svg%3E") !important;
  background-size: 100% 100%, 100% 100%, 120px 120px !important;
  background-position: 0 0, 0 0, 0 0 !important;
  opacity: 1 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  animation: techPatternMove 100s linear infinite !important;
  mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%) !important;
  -webkit-mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%) !important;
}

/* Smooth gradient fade to next section */
.hero-references::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 150px !important;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(246, 248, 251, 0.3) 40%,
    rgba(246, 248, 251, 0.7) 70%,
    rgba(246, 248, 251, 0.95) 90%,
    #f6f8fb 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.55);
  animation: scrollBounce 2.5s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.hero-scroll-indicator:hover {
  opacity: 0.85;
  transform: translateX(-50%) translateY(3px);
  color: rgba(255, 255, 255, 0.75);
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  display: block;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.7;
  }
}

/* Subtle parallax on desktop */
@media (min-width: 981px) {
  .hero-references {
    background-attachment: fixed !important;
  }
}

.hero-references .container {
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

@media (max-width: 980px) {
  .hero-references {
    max-height: 60vh !important;
    min-height: 450px !important;
    padding: 80px 0 60px !important;
    background-attachment: scroll !important;
  }
  
  .hero-references::after {
    height: 100px !important;
  }
  
  .hero-scroll-indicator {
    bottom: 25px;
  }
}

@media (max-width: 720px) {
  .hero-references {
    max-height: 55vh !important;
    min-height: 400px !important;
    padding: 60px 0 50px !important;
  }
  
  .hero-references::after {
    height: 80px !important;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
  
  .hero-scroll-indicator svg {
    width: 18px;
    height: 18px;
  }
}

/* HERO ABOUT - Unified Content Layout */
.hero-about {
  min-height: 70vh !important;
  padding: 100px 0 120px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Remove any fade effect from general .hero::after on about page */
.hero-about::after {
  display: none !important;
  content: none !important;
}

/* Grid background pattern - consistent with other pages */
.hero-about::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    linear-gradient(180deg, rgba(10,31,68,.55) 0%, rgba(10,31,68,.48) 50%, rgba(10,31,68,.42) 100%),
    radial-gradient(ellipse 900px 700px at 50% 45%, transparent 0%, rgba(10,31,68,.2) 40%, rgba(10,31,68,.32) 65%, rgba(10,31,68,.48) 100%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='techGrid' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='0' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='40' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='80' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='0' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='80' cy='120' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='120' cy='120' r='1.2' fill='%23ffffff'/%3E%3Cline x1='0' y1='0' x2='40' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='80' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='120' y2='0' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='120' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='120' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='120' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='0' x2='0' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='0' x2='40' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='0' x2='80' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='0' x2='120' y2='40' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='40' x2='0' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='40' x2='40' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='40' x2='80' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='40' x2='120' y2='80' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='0' y1='80' x2='0' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='40' y1='80' x2='40' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='80' y1='80' x2='80' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3Cline x1='120' y1='80' x2='120' y2='120' stroke='%23ffffff' stroke-width='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23techGrid)'/%3E%3C/svg%3E") !important;
  background-size: 100% 100%, 100% 100%, 120px 120px !important;
  background-position: 0 0, 0 0, 0 0 !important;
  opacity: 1 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  animation: techPatternMove 100s linear infinite !important;
  mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%) !important;
  -webkit-mask-image: radial-gradient(ellipse 900px 700px at 50% 45%, black 30%, rgba(0,0,0,.25) 50%, black 100%) !important;
}

.hero-about .container {
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* History text block in hero - Below subtitle, after red line */
.hero-history {
  max-width: 700px !important;
  margin: 32px auto 0 !important;
  padding: 0 20px !important;
  text-align: left !important;
  opacity: 0.9 !important;
}

.hero-history p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 1.1em !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  letter-spacing: 0.01em !important;
}

.hero-history p:last-child {
  margin-bottom: 0 !important;
}

/* Subtle parallax on desktop */
@media (min-width: 981px) {
  .hero-about {
    background-attachment: fixed !important;
  }
}

@media (max-width: 980px) {
  .hero-about {
    min-height: 65vh !important;
    padding: 80px 0 70px !important;
    background-attachment: scroll !important;
  }
  
  .hero-history {
    max-width: 650px !important;
    margin-top: 28px !important;
  }
  
  .hero-history p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 720px) {
  .hero-about {
    min-height: 60vh !important;
    padding: 70px 0 60px !important;
  }
  
  .hero-history {
    max-width: 100% !important;
    margin-top: 24px !important;
    padding: 0 16px !important;
  }
  
  .hero-history p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}

/* LOGO TO STATS FADE - Seamless Transition (References Page) */
.logo-to-stats-fade {
  height: 45px;
  margin-top: -10px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 35%,
    #f4f8fd 70%,
    #e9f1fb 100%
  );
}

/* TRUST SECTION - Vertical Spacing (References Page) */
.trust-section {
  padding-top: 60px;
  padding-bottom: 90px;
}

.trust-section h2 {
  margin-top: 0;
  margin-bottom: 40px;
}

/* SECTORS IMAGE GRID - Premium Image Gallery (References Page) */
.sectors-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}

.sector-image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.sector-image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.sector-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.sector-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.sector-image-card:hover .sector-image-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.sector-image-card:hover .sector-image-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.15);
  position: relative;
}

.sector-image-card:hover .sector-image-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.sector-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  z-index: 2;
  text-align: center;
}

.sector-image-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.sector-image-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  max-width: 100%;
}

/* Scroll reveal animations - initialized by JavaScript */
.sectors-image-grid,
.case-study,
.proof-stat {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .sectors-image-grid,
  .case-study,
  .proof-stat,
  .sector-image-card,
  .client-card {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .sectors-image-grid {
    gap: 20px;
    margin: 36px 0 50px;
  }
  
  .sector-image-content {
    padding: 28px 20px 20px;
  }
  
  .sector-image-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .sector-image-description {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .sectors-image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0 40px;
  }
  
  .sector-image-card {
    aspect-ratio: 16 / 9;
  }
  
  .sector-image-content {
    padding: 24px 18px 18px;
  }
  
  .sector-image-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .sector-image-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* Ensure comfortable tap targets on mobile */
  .client-card {
    min-height: 60px;
    padding: 20px;
  }
}

/* PROOF TRUST BAND - Compact with Count-up Animation (References Page) */
.proof-trust-band {
  padding: 42px 0 !important;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.03), rgba(0, 163, 255, 0.02)) !important;
  border-top: 1px solid rgba(11, 95, 255, 0.06) !important;
  border-bottom: 1px solid rgba(11, 95, 255, 0.06) !important;
}

.proof-trust-grid {
  gap: 36px !important;
}

.proof-stat-number {
  font-size: 36px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.7), rgba(0, 163, 255, 0.65)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 8px !important;
}

.proof-stat-label {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(15, 23, 42, 0.7) !important;
  margin-bottom: 6px !important;
}

.proof-stat-desc {
  font-size: 13px !important;
  color: rgba(100, 116, 139, 0.8) !important;
  line-height: 1.5 !important;
}

@media (max-width: 980px) {
  .proof-trust-band {
    padding: 40px 0 !important;
  }
  
  .proof-trust-grid {
    gap: 28px !important;
  }
  
  .proof-stat-number {
    font-size: 32px !important;
  }
  
  .proof-stat-label {
    font-size: 14px !important;
  }
}

@media (max-width: 720px) {
  .proof-trust-band {
    padding: 36px 0 !important;
  }
  
  .proof-stat-number {
    font-size: 28px !important;
  }
  
  .proof-stat-label {
    font-size: 13px !important;
  }
  
  .proof-stat-desc {
    font-size: 12px !important;
  }
}

/* HERO CONTACT - Reduced height for contact page */
.hero-contact {
  min-height: 40vh !important;
  max-height: 50vh !important;
  padding: 60px 0 40px !important;
}

@media (max-width: 980px) {
  .hero-contact {
    min-height: 35vh !important;
    padding: 50px 0 35px !important;
  }
}

@media (max-width: 720px) {
  .hero-contact {
    min-height: 30vh !important;
    padding: 40px 0 30px !important;
  }
}

/* PARTNERS SECTION - Partenaires technologiques (References Page) */
/* Exact same pattern and style as clients section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.partner-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.partner-card img {
  max-height: 45px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: transform 0.15s ease;
}

.partner-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 32px rgba(0, 110, 255, 0.14);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Responsive Partners Grid - same as clients-grid */
@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .partner-card {
    min-height: 60px;
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .partner-card {
    min-height: 60px;
    padding: 20px;
  }
}

/* -----------------------------
   Founders Section
------------------------------ */
.founders-section {
  padding: 100px 0;
  background: var(--bg);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.founders-card {
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 97%, var(--bg)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(11,18,32,.06), 0 1px 4px rgba(11,18,32,.04), inset 0 1px 0 rgba(255,255,255,.9);
  padding: 40px;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.founders-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,18,32,.10), 0 2px 6px rgba(11,18,32,.06), inset 0 1px 0 rgba(255,255,255,.9);
}

.founders-photo {
  margin: 0 auto 24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(11,18,32,.08);
}

.founders-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founders-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.founders-role {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.founders-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .founders-section {
    padding: 80px 0;
  }
  
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  
  .founders-card {
    padding: 32px 24px;
  }
  
  .founders-photo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  
  .founders-name {
    font-size: 20px;
  }
}

