/* ============================================
   UNIFIA — PREMIUM CSS
   Modern B2B Textile Brand | Maroc
   ============================================ */

/* 1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy: #0B1828;
  --navy-light: #152538;
  --navy-mid: #1a2f48;
  --orange: #FF4B1F;
  --orange-hover: #E03D14;
  --orange-light: rgba(255,75,31,0.1);
  --white: #FFFFFF;
  --off-white: #F7F5F1;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-500: #6B7280;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --dark: #111827;
  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(11,24,40,0.08);
  --shadow-md: 0 8px 32px rgba(11,24,40,0.12);
  --shadow-lg: 0 20px 60px rgba(11,24,40,0.15);
  --shadow-orange: 0 8px 24px rgba(255,75,31,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 76px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Guard against any horizontal scroll on mobile */
  overflow-x: hidden;
  width: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font);
}

/* 3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--dark);
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  line-height: 1.75;
  color: var(--grey-700);
}

.lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--grey-700);
}

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: var(--white);
}

/* 4. LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section--sm {
  padding: 60px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.72);
}

.section--grey {
  background: var(--off-white);
}

.section--navy-light {
  background: var(--navy-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

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

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header--center p {
  margin-top: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

/* 5. BUTTONS
   ============================================ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid var(--orange);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid var(--orange);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--navy);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Arrow icon in buttons */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.btn-arrow:hover {
  gap: 10px;
}

/* 6. HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.site-header.header--scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11,24,40,0.1);
}

.site-header.header--scrolled .logo-white {
  display: none;
}

.site-header.header--scrolled .logo-color {
  display: block;
}

.site-header:not(.header--scrolled) .logo-white {
  display: block;
}

.site-header:not(.header--scrolled) .logo-color {
  display: none;
}

.site-header.header--dark-page .logo-white {
  display: none;
}

.site-header.header--dark-page .logo-color {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 38px;
  width: auto;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header--scrolled .nav-link {
  color: var(--grey-700);
}

.header--scrolled .nav-link:hover,
.header--scrolled .nav-link.active {
  color: var(--dark);
  background: var(--grey-100);
}

/* Dropdown / Mega menu */
.has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(14px);
  width: min(680px, calc(100vw - 48px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(11,24,40,0.22);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  border: 1px solid var(--grey-200);
}

/* Invisible hover bridge so the menu doesn't close in the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
  pointer-events: all;
}

.nav-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--dark);
}

.dropdown-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item__text small {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-500);
  line-height: 1.4;
}

.dropdown-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--orange);
  transition: all var(--transition-fast);
  margin-top: 1px;
}

.dropdown-item:hover .dropdown-icon {
  background: var(--orange);
  color: var(--white);
}

.nav-mega__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.nav-mega__cta:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.nav-mega__cta svg {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header--scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 999;
  padding: 24px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--grey-200);
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--orange);
}

.mobile-dropdown-menu {
  display: none;
  padding: 8px 0 8px 16px;
}

.mobile-dropdown-menu.open {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  transition: color var(--transition-fast);
}

.mobile-sub-link:hover {
  color: var(--orange);
}

/* 7. HERO SECTION — centered text over background image
   ============================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + 72px) 0 88px;
}

/* Full-bleed background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Readability overlay + brand glow over the photo */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(255,75,31,0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11,24,40,0.86) 0%, rgba(11,24,40,0.72) 45%, rgba(11,24,40,0.94) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: var(--orange);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 38px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  max-width: 620px;
}

.hero__trust li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.hero__trust strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 2px;
}

/* 8. SECTOR STRIP
   ============================================ */
.sector-strip {
  background: var(--off-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}

.sector-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 40px;
}

.sector-strip-inner::-webkit-scrollbar {
  display: none;
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  text-decoration: none;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.sector-pill:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* 9. SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--grey-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 10px;
}

/* Featured solution banner (stands alone, not in the grid) */
.service-feature {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-feature::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,31,0.18) 0%, transparent 70%);
}

.service-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-feature__icon {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
}

.service-feature__body {
  position: relative;
  flex: 1;
}

.service-feature__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.service-feature__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.service-feature__body p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 620px;
}

.service-feature__cta {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all var(--transition-fast);
}

.service-feature:hover .service-feature__cta {
  background: var(--orange);
  border-color: var(--orange);
  gap: 12px;
}

@media (max-width: 768px) {
  .service-feature {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px 24px;
    gap: 20px;
  }

  .service-feature__cta {
    width: 100%;
    justify-content: center;
  }
}

/* 10. STATS SECTION
   ============================================ */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 40px 32px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* 11. WHY CHOOSE / BENEFITS
   ============================================ */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.benefit-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  color: var(--white);
}

.benefit-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 15px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* Feature image */
.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

/* 12. PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(to right, var(--orange) 0%, var(--grey-200) 100%);
  z-index: 0;
}

.process-step {
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 28px;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover .process-step__number {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.08);
}

.process-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.65;
}

/* 13. SECTORS / CATEGORIES
   ============================================ */
.sector-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
}

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

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

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,24,40,0.92) 0%, rgba(11,24,40,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.sector-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.sector-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sector-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition-fast);
}

.sector-card:hover .sector-card__link {
  color: var(--white);
  gap: 10px;
}

/* 14. CTA SECTIONS
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,31,0.12) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,31,0.08) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
}

.cta-section--orange {
  background: var(--orange);
}

.cta-section--orange::before,
.cta-section--orange::after {
  display: none;
}

/* 15. FAQ SECTION
   ============================================ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  gap: 20px;
  font-family: var(--font);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--dark);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-icon svg {
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--grey-500);
  line-height: 1.75;
}

/* 16. CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-detail-text {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

/* Form styles */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
}

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

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-label span {
  color: var(--orange);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,75,31,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-300);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-honey {
  display: none !important;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
}

/* Alert messages */
.alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
}

.alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

/* 17. FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 80px 40px 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* 18. PAGE HERO (service pages, small)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,31,0.07) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

.breadcrumb-current {
  color: rgba(255,255,255,0.8);
}

.page-hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  font-size: 17px;
  margin-bottom: 36px;
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

.page-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
}

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

/* 19. CONTENT BLOCKS
   ============================================ */
.content-block {
  padding: 80px 0;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Highlight box */
.highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.highlight-box p {
  font-size: 16px;
  color: var(--grey-800);
  font-weight: 500;
  line-height: 1.65;
}

/* Text link underline animation */
.link-animated {
  display: inline-block;
  position: relative;
  color: var(--orange);
  font-weight: 600;
}

.link-animated::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.link-animated:hover::after {
  width: 100%;
}

/* 20. REALISATIONS GALLERY
   ============================================ */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.gallery-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--grey-100);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,24,40,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

/* Disclaimer box */
.disclaimer-box {
  background: var(--grey-100);
  border: 1.5px dashed var(--grey-300);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.disclaimer-box svg {
  color: var(--grey-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-box p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.65;
}

/* 21. ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-mission-copy h2 {
  margin-bottom: 24px;
}

.placeholder-box {
  background: var(--off-white);
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--grey-500);
  font-size: 14px;
  gap: 8px;
}

.placeholder-img {
  width: 100%;
  min-height: 320px;
  background: var(--off-white);
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey-500);
  font-size: 15px;
  gap: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
}

.value-card__number {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--grey-500);
}

/* 22. 404 PAGE
   ============================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.error-number {
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -10px;
  line-height: 0.85;
  margin-bottom: 32px;
  opacity: 0.9;
}

.error-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.error-desc {
  font-size: 17px;
  color: var(--grey-500);
  max-width: 460px;
  margin: 0 auto 40px;
}

/* 23. LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.legal-placeholder {
  display: inline-block;
  background: var(--grey-100);
  border: 1px dashed var(--grey-300);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
  color: var(--grey-500);
  font-style: italic;
}

/* 24. INTRO SECTION
   ============================================ */
.intro-section {
  padding: 100px 0;
  text-align: center;
}

.intro-section .intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro-section h2 {
  margin-bottom: 24px;
}

.intro-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* 25. SERVICES SECTION
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

/* 26. UTILITY CLASSES
   ============================================ */
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey-500); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-800 { font-weight: 800; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Feature grid for service pages */
.features-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* 2-column variant (used inside half-width columns). Single-class on purpose
   so the responsive breakpoints below still win on tablet/mobile — unlike an
   inline grid-template override. */
.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}

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

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.65;
}

/* 27. BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.blog-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-100);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.blog-card__title a {
  color: var(--dark);
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--orange);
}

.blog-card__excerpt {
  font-size: 14.5px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition-fast);
}

.blog-card__link:hover {
  gap: 10px;
}

/* Single article */
/* Article title — smaller than a page H1 and centered for readability */
.article-title {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.8px;
  max-width: 720px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
}

.article-meta__sep {
  color: rgba(255,255,255,0.35);
}

.article-cover {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--grey-700);
}

.article-body .content-list {
  margin: 18px 0 26px;
}

.article-body .highlight-box {
  margin: 28px 0;
}

.article-body a:not(.link-animated) {
  color: var(--orange);
  font-weight: 600;
}

.article-foot {
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* 28. FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  color: #fff;
}

.wa-float svg {
  width: 31px;
  height: 31px;
}

@media (max-width: 480px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* 1280px — large desktop */
@media (max-width: 1280px) {
  .container {
    max-width: 1100px;
  }

  .footer-grid {
    gap: 40px;
  }
}

/* 1024px — small desktop / large tablet */
@media (max-width: 1024px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 28px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 0;
    padding: calc(var(--header-height) + 60px) 0 72px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header-actions .btn-primary {
    display: none;
  }

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

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

  .process-grid::before {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .page-hero-image {
    height: 320px;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .feature-image img {
    min-height: 360px;
  }
}

/* 768px — tablet */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  h1 { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1.5px; }
  h2 { font-size: clamp(26px, 6vw, 36px); letter-spacing: -1px; }
  h3 { font-size: 20px; }

  .hero {
    padding: calc(var(--header-height) + 44px) 0 56px;
  }

  .hero__title {
    letter-spacing: -1.5px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    gap: 12px;
    width: 100%;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    flex: 1 1 auto;
    justify-content: center;
  }

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

  .stat-item::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 24px;
  }

  .features-3col {
    grid-template-columns: 1fr;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-image img {
    min-height: 260px;
  }

  .article-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .article-foot .btn-primary,
  .article-foot .btn-outline-dark {
    justify-content: center;
  }

  .footer-main {
    padding: 64px 24px 48px;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-logo img {
    height: 52px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 28px;
    gap: 10px;
  }

  .footer-legal-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn-primary,
  .btn-group .btn-secondary {
    justify-content: center;
  }

  .page-hero {
    padding: 110px 0 60px;
  }

  .legal-content {
    padding: 60px 20px;
  }
}

/* 560px — large phones: stack hero CTAs so long labels never clip */
@media (max-width: 560px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    width: 100%;
  }
}

/* 480px — mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 34px;
    letter-spacing: -1.3px;
  }

  .hero__trust {
    gap: 14px 28px;
    padding-top: 26px;
  }

  .hero__trust strong {
    font-size: 22px;
  }

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

  .service-card {
    padding: 28px 24px;
  }

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

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

  .stat-item::after {
    display: none;
  }

  .gallery-tabs {
    gap: 8px;
  }

  .gallery-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .sector-strip-inner {
    padding: 0 20px;
  }

  .error-number {
    letter-spacing: -5px;
  }

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

  /* Let long French CTA labels wrap instead of overflowing on small phones */
  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .btn-outline,
  .btn-outline-dark {
    white-space: normal;
    text-align: center;
  }

  /* Keep generous tap targets / no edge clipping */
  .container {
    padding: 0 18px;
  }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .hamburger,
  .mobile-menu,
  .btn-primary,
  .cta-section {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a { text-decoration: underline; }
}
