/* ============================================================
   DICi — Modern IT Consulting Website
   Design: Light theme, blue/cyan palette for IT services
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ========================
   CSS VARIABLES
   ======================== */
:root {
  /* Blue palette */
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-300: #93C5FD;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A8A;

  /* Slate palette */
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  /* Cyan / Sky accent */
  --cyan-100: #CFFAFE;
  --cyan-200: #A5F3FC;
  --cyan-400: #22D3EE;
  --cyan-500: #06B6D4;
  --cyan-600: #0891B2;
  --cyan-700: #0E7490;

  /* Emerald for success/highlight */
  --emerald-100: #D1FAE5;
  --emerald-500: #10B981;
  --emerald-600: #059669;

  /* Amber new-badge */
  --amber-100: #FEF3C7;
  --amber-200: #FDE68A;
  --amber-800: #92400E;

  /* ─── Design Tokens ─── */
  --primary:       var(--blue-700);
  --primary-hover: var(--blue-800);
  --primary-light: var(--blue-50);
  --primary-mid:   var(--blue-100);
  --accent:        var(--cyan-500);
  --success:       var(--emerald-500);

  --bg:        #F4F8FF;
  --surface:   #FFFFFF;
  --surface-2: #F1F5FB;
  --border:    var(--slate-200);
  --border-hover: var(--blue-300);

  --text:       var(--slate-900);
  --text-2:     var(--slate-700);
  --text-muted: var(--slate-500);
  --text-light: var(--slate-400);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.07), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 10px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 28px rgba(15,23,42,0.09), 0 4px 10px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 48px rgba(15,23,42,0.10), 0 8px 18px rgba(15,23,42,0.05);
  --shadow-xl: 0 32px 64px rgba(15,23,42,0.12);
  --shadow-blue: 0 8px 32px rgba(29,78,216,0.25);
  --shadow-blue-lg: 0 16px 48px rgba(29,78,216,0.32);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --r-full: 9999px;

  /* Nav height */
  --nav-h: 70px;

  /* Section spacing */
  --section-py: 100px;
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a         { color: inherit; text-decoration: none; }
img       { max-width: 100%; height: auto; display: block; }
ul, ol    { list-style: none; }
button    { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ========================
   LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.section--alt {
  background: var(--surface-2);
}

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

/* ========================
   SECTION HEADERS
   ======================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

.section-header           { margin-bottom: 56px; }
.section-header--center   { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.22s;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-sm  { padding: 9px 18px; font-size: 13px; border-radius: var(--r-xs); }
.btn-lg  { padding: 15px 34px; font-size: 15.5px; border-radius: var(--r-sm); }
.btn-xl  { padding: 18px 42px; font-size: 17px; border-radius: var(--r); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-700);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface);
  color: var(--text-2);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--primary);
  background: var(--blue-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-white {
  background: #fff;
  color: var(--blue-700);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--primary); background: var(--blue-50); }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  z-index: 900;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(15,23,42,0.06);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.navbar__logo:hover { opacity: 0.8; }

.navbar__logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(140deg, var(--blue-700) 0%, var(--cyan-500) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(29,78,216,0.30);
}
.navbar__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(29,78,216,0.20);
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.navbar__link {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.navbar__link:hover,
.navbar__link.active { color: var(--primary); background: var(--blue-50); }

/* Dropdown */
.navbar__dropdown { position: relative; }

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.navbar__dropdown-toggle:hover,
.navbar__dropdown.open .navbar__dropdown-toggle {
  color: var(--primary);
  background: var(--blue-50);
}

.dropdown-caret {
  width: 14px; height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.navbar__dropdown.open .dropdown-caret { transform: rotate(180deg); }

.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 260px;
  flex-direction: column;
  gap: 2px;
}
.navbar__dropdown.open .navbar__dropdown-menu { display: flex; }

.navbar__drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  transition: all 0.15s;
  cursor: pointer;
}
.navbar__drop-item:hover { background: var(--blue-50); }

.navbar__drop-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.navbar__drop-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.navbar__drop-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Actions / CTA */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__phones {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar__tel:hover { color: var(--primary); background: var(--blue-50); }

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.navbar__burger:hover { background: var(--surface-2); }

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 899;
  flex-direction: column;
  gap: 3px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.navbar__mobile.open { display: flex; }

.navbar__mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.navbar__mob-link:hover { background: var(--blue-50); color: var(--primary); }

.navbar__mob-sep {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 14px 14px 2px;
}

/* ========================
   HERO — HOMEPAGE
   ======================== */
.hero {
  padding: calc(var(--nav-h) + 88px) 0 88px;
  background: linear-gradient(145deg, #EEF3FF 0%, #DBEAFE 35%, #E0F9FF 72%, #F0FDF4 100%);
  position: relative;
  overflow: hidden;
}

.hero__blob-1 {
  position: absolute;
  top: -180px; right: -180px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(29,78,216,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero__blob-2 {
  position: absolute;
  bottom: -120px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,78,216,0.07);
  border: 1px solid rgba(29,78,216,0.18);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 26px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 26px;
}

.hero__title .grad {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 17.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 42px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero__stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(29,78,216,0.08);
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(29,78,216,0.28);
}

.hero__card-name  { font-size: 17px; font-weight: 800; color: var(--text); }
.hero__card-sub   { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

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

.hero__service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 550;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.hero__service-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Floating chips */
.hero__chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--text);
}

.hero__chip--a { top: -18px; right: -24px; }
.hero__chip--b { bottom: 12px; left: -36px; }

/* ========================
   SERVICE CARDS GRID
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.scard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.scard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.scard:hover::before { opacity: 1; }

.scard--blue::before   { background: linear-gradient(90deg, var(--blue-600), var(--cyan-500)); }
.scard--green::before  { background: linear-gradient(90deg, var(--emerald-500), var(--cyan-400)); }
.scard--purple::before { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.scard--cyan::before   { background: linear-gradient(90deg, var(--cyan-600), var(--blue-400)); }

.scard__emoji {
  font-size: 36px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.scard__title {
  font-size: 17px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.scard__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}

.scard__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  transition: gap 0.2s;
}
.scard:hover .scard__arrow { gap: 11px; }

/* ========================
   FEATURE GRID (Why us)
   ======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

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

.feature__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.feature__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================
   DETAIL / MINI CARDS
   ======================== */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.25s;
}

.dcard:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.dcard__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.dcard__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dcard__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-top: 3px;
  letter-spacing: -0.01em;
}

.dcard__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dcard__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.dcard__item::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.5px;
  font-size: 12px;
}

/* ========================
   NEW BADGE
   ======================== */
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--amber-100);
  border: 1px solid var(--amber-200);
  color: var(--amber-800);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  background: var(--cyan-100);
  border: 1px solid var(--cyan-200);
  color: var(--cyan-700);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: linear-gradient(140deg, var(--slate-900) 0%, var(--blue-900) 50%, var(--cyan-700) 100%);
  border-radius: var(--r-2xl);
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
}

.cta-banner__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  position: relative;
}

.cta-banner__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

.cta-banner__phone {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 26px; }

.cinfo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cinfo__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cinfo__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 5px;
}

.cinfo__val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

.cinfo__val a {
  color: var(--primary);
  transition: opacity 0.2s;
}
.cinfo__val a:hover { opacity: 0.7; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 5px 0;
  font-size: 13.5px;
  vertical-align: top;
}
.hours-table td:first-child { color: var(--text-muted); font-weight: 500; }
.hours-table td:last-child  { color: var(--text); font-weight: 600; text-align: right; }

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.10);
}
.form-input::placeholder { color: var(--text-light); }

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

/* ========================
   LEGAL INFO
   ======================== */
.legal-chip {
  font-size: 12px;
  color: var(--text-light);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 12px;
  display: inline-block;
  white-space: nowrap;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.75);
}

.footer__top {
  padding: 72px 0 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 52px;
}

.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(140deg, var(--blue-700), var(--cyan-500));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.footer__brand-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer__brand-name {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 28px;
}

.footer__socials { display: flex; gap: 9px; }
.footer__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer__social:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer__link:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ========================
   PAGE HERO (subpages)
   ======================== */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(145deg, #EEF3FF 0%, #DBEaFE 50%, #E0F9FF 100%);
  position: relative;
  overflow: hidden;
}

.page-hero__ring {
  position: absolute;
  right: -140px; top: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(29,78,216,0.1);
  pointer-events: none;
}

.page-hero__ring--2 {
  right: -40px; top: -40px;
  width: 300px; height: 300px;
  border-color: rgba(6,182,212,0.12);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--primary); font-weight: 600; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb__sep { color: var(--text-light); }

.page-hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero__title .grad {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ========================
   PRO PAGE — SERVICE ROWS
   ======================== */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.procard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.procard:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.procard--accent {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--cyan-600) 100%);
  border-color: transparent;
  color: #fff;
}

.procard__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.procard--accent .procard__icon {
  background: rgba(255,255,255,0.15);
}

.procard__title {
  font-size: 16px;
  font-weight: 750;
  color: var(--text);
  letter-spacing: -0.02em;
}

.procard--accent .procard__title { color: #fff; }

.procard__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.procard--accent .procard__desc { color: rgba(255,255,255,0.7); }

.procard__bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.procard__bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.procard--accent .procard__bullet { color: rgba(255,255,255,0.75); }

.procard__bullet::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.procard--accent .procard__bullet::before { color: var(--cyan-200); }

/* ========================
   DEVICE CARDS (particulier)
   ======================== */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.devcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: all 0.25s;
}

.devcard:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.devcard__emoji { font-size: 38px; margin-bottom: 14px; }

.devcard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.devcard__items { display: flex; flex-direction: column; gap: 7px; }

.devcard__item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.devcard__item::before {
  content: '·';
  color: var(--cyan-500);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ========================
   INFO BOX (highlight)
   ======================== */
.info-box {
  background: linear-gradient(135deg, var(--blue-50) 0%, #E0F2FE 100%);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.info-box__emoji { font-size: 44px; flex-shrink: 0; line-height: 1; }

.info-box__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.info-box__desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ========================
   GAMING PAGE
   ======================== */
.gaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spec-list { display: flex; flex-direction: column; gap: 14px; }

.spec-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s;
}

.spec-row:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.spec-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.spec-val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.spec-badge {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Gaming price badges */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.budget-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}

.budget-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.budget-card--featured {
  background: linear-gradient(145deg, var(--blue-700), var(--blue-800));
  border-color: transparent;
}

.budget-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.budget-card--featured .budget-card__name { color: #fff; }

.budget-card__price {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.budget-card--featured .budget-card__price { color: #fff; }

.budget-card__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.budget-card--featured .budget-card__sub { color: rgba(255,255,255,0.6); }

/* ========================
   DOWNLOAD CARD (utilitaire)
   ======================== */
.dl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.dl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

.dl-card__icon { font-size: 72px; margin-bottom: 22px; }

.dl-card__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.dl-card__desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
}

.dl-card__steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.dl-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.dl-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========================
   HERO PHOTO (homepage visual)
   ======================== */
.hero__photo-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo-img {
  width: 100%;
  max-width: 520px;
  height: 440px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  display: block;
  border: 3px solid rgba(255,255,255,0.9);
}

/* ========================
   TEAM CARDS
   ======================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-card__photo-wrap {
  height: 340px;
  overflow: hidden;
  position: relative;
  background: var(--blue-50);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.team-card:hover .team-card__photo { transform: scale(1.04); }

.team-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-600));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.team-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-card__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.team-card__role {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-top: -6px;
}

.team-card__infos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card__info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.team-card__info-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.team-card__region {
  font-size: 11.5px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-block;
  font-weight: 600;
}

/* Technicians page – full detail cards */
.tech-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tech-profile__photo {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.tech-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tech-profile__content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tech-profile__role-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--r-full);
  width: fit-content;
}

.tech-profile__name {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.tech-profile__infos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-profile__info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.tech-profile__info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tech-profile__coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-profile__cover-tag {
  background: var(--slate-100);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible          { opacity: 1; transform: none; }
.fade-up[data-delay="1"]  { transition-delay: 0.10s; }
.fade-up[data-delay="2"]  { transition-delay: 0.20s; }
.fade-up[data-delay="3"]  { transition-delay: 0.30s; }
.fade-up[data-delay="4"]  { transition-delay: 0.40s; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1080px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .detail-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__grid       { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .hero__grid         { grid-template-columns: 1fr; }
  .hero__visual       { display: none; }
  .contact-layout     { grid-template-columns: 1fr; gap: 40px; }
  .gaming-grid        { grid-template-columns: 1fr; gap: 40px; }
  .pro-grid           { grid-template-columns: 1fr; }
  .cta-banner         { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .cta-banner__side   { align-items: center; }
  .team-grid          { grid-template-columns: 1fr; max-width: 480px; }
  .tech-profile       { grid-template-columns: 1fr; }
  .tech-profile__photo { height: 320px; }
  .tech-profile__content { padding: 28px 28px 28px 28px; }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__actions { display: none; }
  .navbar__burger                { display: flex; }
  .form-row                      { grid-template-columns: 1fr; }
  .detail-grid                   { grid-template-columns: 1fr; }
  .budget-grid                   { grid-template-columns: 1fr; }
  .footer__grid                  { grid-template-columns: 1fr; }
  .hero__stats                   { gap: 28px; }
  .cta-banner                    { padding: 40px 28px; border-radius: var(--r-xl); }
  .contact-form                  { padding: 28px 22px; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .container           { padding: 0 18px; }
  .services-grid       { grid-template-columns: 1fr; }
  .features-grid       { grid-template-columns: 1fr; }
  .hero__title         { font-size: 34px; }
  .info-box            { flex-direction: column; gap: 12px; }
  .dl-card             { padding: 36px 24px; }
  .team-card__photo-wrap { height: 260px; }
  .tech-profile__photo { height: 260px; }
}
