/* ============================================================
   UTC REFRONT 2026 — Design System
   Full Frontend Redesign for Une Terre Culturelle
   Fonts: Sora (headings) + DM Sans (body)
   ============================================================ */

/* ---- 1. DESIGN TOKENS ---- */
:root {
  /* Brand — from UTC Logo palette */
  --utc-orange: #EAA030;
  --utc-orange-hover: #D88E1C;
  --utc-orange-light: #FEF5E7;
  --utc-orange-rgb: 234, 160, 48;
  --utc-amber: #FBAE00;
  --utc-teal: #25848D;
  --utc-teal-hover: #1C6A72;
  --utc-teal-light: #E6F4F5;
  --utc-teal-rgb: 37, 132, 141;
  --utc-navy: #1E3D6F;
  --utc-navy-light: #2A5299;

  /* Neutrals */
  --utc-black: #1A1A2E;
  --utc-dark: #2D2D3A;
  --utc-text: #4A4A5A;
  --utc-muted: #8B8B9A;
  --utc-border: #E8E6E1;
  --utc-light: #F4F3F0;
  --utc-bg: #FAFAF8;
  --utc-white: #FFFFFF;

  /* Override legacy Poorex theme variables */
  --tp-theme-1: #EAA030;
  --tp-theme-2: #25848D;
  --tp-theme-3: #1C6A72;
  --tp-common-orange: #EAA030;
  --tp-heading-primary: #1A1A2E;
  --tp-text-body: #4A4A5A;
  --tp-grey-1: #F4F3F0;
  --tp-border-2: #E8E6E1;

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --section-py: 100px;
  --gap: 24px;
  --gap-lg: 32px;
  --gap-sm: 16px;

  /* Shape */
  --card-radius: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.03);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow-orange: 0 8px 32px rgba(234, 160, 48, 0.25);
  --shadow-glow-teal: 0 8px 32px rgba(37, 132, 141, 0.20);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --transition: all var(--duration) var(--ease);

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 900;
  --z-floating: 50;
}

/* ---- 2. BASE OVERRIDES ---- */
body {
  background: var(--utc-bg);
  color: var(--utc-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background: rgba(var(--utc-orange-rgb), 0.2);
  color: var(--utc-black);
}
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6,
.utc-section-title,
.utc-hero__title,
.utc-breadcrumb__title,
.utc-cta__title,
.utc-card__title,
.utc-feature-card__title,
.utc-footer__heading,
.utc-footer__cta-title {
  font-family: var(--font-heading);
}

/* ---- 3. TYPOGRAPHY ---- */
.utc-section-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--utc-orange-light);
  color: var(--utc-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.utc-section-label--teal {
  background: var(--utc-teal-light);
  color: var(--utc-teal);
}
.utc-section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--utc-black);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.utc-section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--utc-text);
  max-width: 640px;
}
.utc-section-desc.centered { margin-inline: auto; }
.utc-kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--utc-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

/* ---- 4. LAYOUT ---- */
.utc-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.utc-section {
  padding-block: var(--section-py);
}
.utc-section--alt {
  background: var(--utc-light);
}
.utc-section--dark {
  background: var(--utc-black);
  color: var(--utc-white);
}
.utc-section--teal {
  background: var(--utc-teal);
  color: var(--utc-white);
}
.utc-section--navy {
  background: var(--utc-navy);
  color: var(--utc-white);
}
.utc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- 5. BENTO GRID ---- */
.utc-bento {
  display: grid;
  gap: var(--gap);
}
.utc-bento--2 { grid-template-columns: repeat(2, 1fr); }
.utc-bento--3 { grid-template-columns: repeat(3, 1fr); }
.utc-bento--4 { grid-template-columns: repeat(4, 1fr); }
.utc-bento--5 { grid-template-columns: repeat(5, 1fr); }
.utc-bento--auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.utc-span-2 { grid-column: span 2; }
.utc-span-3 { grid-column: span 3; }
.utc-row-2 { grid-row: span 2; }

/* ---- 6. CARDS ---- */
.utc-card {
  background: var(--utc-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.utc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.utc-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.utc-card__body {
  padding: 28px;
}
.utc-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.utc-card__text {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.65;
}
.utc-card--flat {
  box-shadow: none;
  border: 1px solid var(--utc-border);
}
.utc-card--flat:hover {
  border-color: var(--utc-orange);
  box-shadow: var(--shadow-md);
}
.utc-card--glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---- 7. BUTTONS ---- */
.utc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.utc-btn:hover {
  transform: translateY(-2px);
}
.utc-btn--primary {
  background: var(--utc-orange);
  color: var(--utc-white);
}
.utc-btn--primary:hover {
  background: var(--utc-orange-hover);
  color: var(--utc-white);
  box-shadow: var(--shadow-glow-orange);
}
.utc-btn--teal {
  background: var(--utc-teal);
  color: var(--utc-white);
}
.utc-btn--teal:hover {
  background: var(--utc-teal-hover);
  color: var(--utc-white);
  box-shadow: var(--shadow-glow-teal);
}
.utc-btn--navy {
  background: var(--utc-navy);
  color: var(--utc-white);
}
.utc-btn--navy:hover {
  background: var(--utc-navy-light);
  color: var(--utc-white);
}
.utc-btn--outline {
  background: transparent;
  border-color: var(--utc-white);
  color: var(--utc-white);
}
.utc-btn--outline:hover {
  background: var(--utc-white);
  color: var(--utc-black);
}
.utc-btn--outline-dark {
  background: transparent;
  border-color: var(--utc-black);
  color: var(--utc-black);
}
.utc-btn--outline-dark:hover {
  background: var(--utc-black);
  color: var(--utc-white);
}
.utc-btn--ghost {
  background: transparent;
  color: var(--utc-orange);
  padding: 10px 20px;
}
.utc-btn--ghost:hover {
  background: var(--utc-orange-light);
}
.utc-btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}
.utc-btn--sm {
  padding: 10px 22px;
  font-size: 13px;
}
.utc-btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* ---- 8. PILLS / BADGES ---- */
.utc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.utc-pill--orange {
  background: var(--utc-orange-light);
  color: var(--utc-orange);
}
.utc-pill--teal {
  background: var(--utc-teal-light);
  color: var(--utc-teal);
}
.utc-pill--dark {
  background: var(--utc-black);
  color: var(--utc-white);
}
.utc-pill--white {
  background: rgba(255,255,255,0.15);
  color: var(--utc-white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   HEADER
   ============================================================ */
.utc-topbar {
  background: var(--utc-black);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 0;
  transition: var(--transition);
}
.utc-topbar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.utc-topbar a:hover { color: var(--utc-orange); }
.utc-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utc-topbar__contact {
  display: flex;
  gap: 24px;
  align-items: center;
}
.utc-topbar__contact i {
  margin-right: 6px;
  color: var(--utc-orange);
}
.utc-topbar__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.utc-topbar__social a {
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.utc-topbar__social a:hover {
  background: var(--utc-orange);
  color: var(--utc-white);
}

.utc-header {
  background: var(--utc-white);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.utc-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--utc-border);
}
.utc-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}
.utc-header.scrolled .utc-header__inner {
  height: 68px;
}
.utc-header__logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}
.utc-header.scrolled .utc-header__logo img {
  height: 40px;
}
.utc-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.utc-header__nav > li {
  list-style: none;
  position: relative;
}
.utc-header__nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--utc-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-body);
}
.utc-header__nav > li > a:hover,
.utc-header__nav > li.active > a {
  color: var(--utc-orange);
  background: var(--utc-orange-light);
}
.utc-header__nav > li > a .caret {
  font-size: 10px;
  transition: var(--transition);
}
.utc-header__nav > li:hover > a .caret {
  transform: rotate(180deg);
}

/* Dropdown */
.utc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--utc-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  z-index: var(--z-header);
}
.utc-header__nav > li:hover .utc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.utc-dropdown li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--utc-text);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.utc-dropdown li a:hover {
  background: var(--utc-orange-light);
  color: var(--utc-orange);
  padding-left: 20px;
}

.utc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.utc-header__search-btn {
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--utc-dark);
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}
.utc-header__search-btn:hover {
  background: var(--utc-light);
  color: var(--utc-orange);
}
.utc-hamburger {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.utc-hamburger:hover { background: var(--utc-light); }
.utc-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--utc-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.utc-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.utc-hamburger.active span:nth-child(2) { opacity: 0; }
.utc-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.utc-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--utc-white);
  z-index: calc(var(--z-header) + 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.utc-mobile-nav.open { transform: translateX(0); }
.utc-mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.utc-mobile-nav__close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--utc-dark);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.utc-mobile-nav__close:hover { background: var(--utc-light); }
.utc-mobile-nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.utc-mobile-nav__links > li {
  border-bottom: 1px solid var(--utc-border);
}
.utc-mobile-nav__links > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--utc-dark);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-heading);
}
.utc-mobile-nav__links > li > a:hover { color: var(--utc-orange); }
.utc-mobile-sub {
  list-style: none;
  padding: 0 0 12px 16px;
  display: none;
}
.utc-mobile-sub.open { display: block; }
.utc-mobile-sub a {
  display: block;
  padding: 10px 4px;
  font-size: 15px;
  color: var(--utc-text);
  text-decoration: none;
  transition: var(--transition);
}
.utc-mobile-sub a:hover { color: var(--utc-orange); }
.utc-mobile-nav__cta {
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.utc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--utc-black);
}
.utc-hero__slide {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  width: 100%;
}
.utc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.swiper-slide-active .utc-hero__bg {
  transform: scale(1.05);
}
.utc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(30,61,111,0.4) 50%, rgba(26,26,46,0.3) 100%);
}
.utc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}
.utc-hero__subtitle {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(var(--utc-orange-rgb), 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--utc-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--utc-orange-rgb), 0.3);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.utc-hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--utc-white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.utc-hero__title span { color: var(--utc-orange); }
.utc-hero__text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.utc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.utc-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.utc-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero navigation */
.utc-hero__nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.utc-hero__nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--utc-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.utc-hero__nav button:hover {
  background: var(--utc-orange);
  border-color: var(--utc-orange);
  box-shadow: var(--shadow-glow-orange);
}

/* Floating decorative pills on hero */
.utc-hero__float {
  position: absolute;
  z-index: 2;
  padding: 12px 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  color: var(--utc-white);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  animation: floatPill 4s ease-in-out infinite;
}
.utc-hero__float--1 { top: 20%; right: 8%; animation-delay: 0s; }
.utc-hero__float--2 { bottom: 30%; right: 12%; animation-delay: 1.5s; }
.utc-hero__float--3 { top: 35%; right: 4%; animation-delay: 3s; }
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   PAGE HERO (for interior pages with full-width images)
   ============================================================ */
.utc-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--utc-black);
}
.utc-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.utc-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(30,61,111,0.5) 50%, rgba(37,132,141,0.3) 100%);
}
.utc-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 80px 0 60px;
}
.utc-page-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--utc-white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.utc-page-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION (Bento)
   ============================================================ */
.utc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--gap);
}
.utc-gallery__item {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.utc-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.utc-gallery__item--wide { grid-column: span 2; }
.utc-gallery__item--tall { grid-row: span 2; }
.utc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.utc-gallery__item:hover img {
  transform: scale(1.06);
}
.utc-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.utc-gallery__item:hover .utc-gallery__overlay {
  opacity: 1;
}
.utc-gallery__overlay h4 {
  color: var(--utc-white);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Gallery Swiper fallback for <4 items */
.utc-gallery-swiper .swiper-slide {
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 320px;
}
.utc-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.utc-about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.utc-about__img-wrap {
  position: relative;
}
.utc-about__img {
  width: 100%;
  border-radius: var(--card-radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.utc-about__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--utc-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-floating);
  overflow: hidden;
}
.utc-about__badge img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.utc-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.utc-about__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.utc-about__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--utc-orange-light);
  color: var(--utc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.utc-about__feature h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--utc-black);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.utc-about__feature p {
  font-size: 14px;
  color: var(--utc-muted);
  line-height: 1.6;
}

/* ============================================================
   IMPACT STATS
   ============================================================ */
.utc-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
}
.utc-stat-card {
  background: var(--utc-white);
  border-radius: var(--card-radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--utc-border);
}
.utc-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--utc-orange);
}
.utc-stat-card__circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.utc-stat-card__circle svg {
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
}
.utc-stat-card__circle-bg {
  fill: none;
  stroke: var(--utc-light);
  stroke-width: 6;
}
.utc-stat-card__circle-progress {
  fill: none;
  stroke: var(--utc-orange);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 2s var(--ease);
}
.utc-stat-card:nth-child(even) .utc-stat-card__circle-progress {
  stroke: var(--utc-teal);
}
.utc-stat-card__number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--utc-black);
  font-family: var(--font-heading);
}
.utc-stat-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--utc-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.utc-testimonials {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.utc-testimonial {
  text-align: center;
  padding: 40px 20px;
}
.utc-testimonial__quote-icon {
  font-size: 48px;
  color: var(--utc-orange);
  opacity: 0.3;
  margin-bottom: 24px;
  line-height: 1;
}
.utc-testimonial__text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--utc-dark);
  font-style: italic;
  margin-bottom: 32px;
}
.utc-testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.utc-testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--utc-orange-light);
}
.utc-testimonial__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--utc-black);
  font-family: var(--font-heading);
}
.utc-testimonial__role {
  font-size: 13px;
  color: var(--utc-muted);
}
.utc-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.utc-testimonials__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--utc-border);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
}
.utc-testimonials__dots .swiper-pagination-bullet-active {
  background: var(--utc-orange);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   FEATURES (Bento Cards)
   ============================================================ */
.utc-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.utc-feature-card {
  background: var(--utc-white);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--utc-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.utc-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--utc-orange);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.utc-feature-card:hover::before {
  transform: scaleX(1);
}
.utc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.utc-feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: var(--utc-orange-light);
  color: var(--utc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}
.utc-feature-card:hover .utc-feature-card__icon {
  background: var(--utc-orange);
  color: var(--utc-white);
  box-shadow: var(--shadow-glow-orange);
}
.utc-feature-card:nth-child(even) .utc-feature-card__icon {
  background: var(--utc-teal-light);
  color: var(--utc-teal);
}
.utc-feature-card:nth-child(even):hover .utc-feature-card__icon {
  background: var(--utc-teal);
  color: var(--utc-white);
  box-shadow: var(--shadow-glow-teal);
}
.utc-feature-card:nth-child(even)::before {
  background: var(--utc-teal);
}
.utc-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-black);
  margin-bottom: 12px;
}
.utc-feature-card__text {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.65;
}

/* ============================================================
   PROGRESS / PARCOURS (3-step horizontal)
   ============================================================ */
.utc-parcours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  position: relative;
}
.utc-parcours::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--utc-orange), var(--utc-teal), var(--utc-orange));
  border-radius: 2px;
  z-index: 0;
}
.utc-parcours__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.utc-parcours__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--utc-white);
  border: 4px solid var(--utc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--utc-orange);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.utc-parcours__step:nth-child(2) .utc-parcours__icon {
  border-color: var(--utc-teal);
  color: var(--utc-teal);
}
.utc-parcours__step:nth-child(3) .utc-parcours__icon {
  border-color: var(--utc-orange);
  color: var(--utc-orange);
}
.utc-parcours__step:hover .utc-parcours__icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-orange);
}
.utc-parcours__number {
  position: absolute;
  top: -8px;
  right: calc(50% - 52px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--utc-orange);
  color: var(--utc-white);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.utc-parcours__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--utc-black);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.utc-parcours__text {
  font-size: 14px;
  color: var(--utc-muted);
  line-height: 1.6;
}

/* ============================================================
   TIMELINE (Horizontal)
   ============================================================ */
.utc-timeline {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  overflow-x: auto;
}
.utc-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--utc-orange), var(--utc-teal), var(--utc-navy));
  border-radius: 2px;
  transform: translateY(-50%);
}
.utc-timeline__item {
  position: relative;
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding-top: 60px;
}
.utc-timeline__item:nth-child(even) {
  padding-top: 0;
  padding-bottom: 60px;
}
.utc-timeline__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--utc-orange);
  border: 4px solid var(--utc-white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.utc-timeline__item:nth-child(2) .utc-timeline__dot { background: var(--utc-teal); }
.utc-timeline__item:nth-child(3) .utc-timeline__dot { background: var(--utc-navy); }
.utc-timeline__year {
  font-size: 28px;
  font-weight: 800;
  color: var(--utc-orange);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.utc-timeline__item:nth-child(2) .utc-timeline__year { color: var(--utc-teal); }
.utc-timeline__item:nth-child(3) .utc-timeline__year { color: var(--utc-navy); }
.utc-timeline__label {
  font-size: 15px;
  color: var(--utc-text);
  font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.utc-cta {
  background: linear-gradient(135deg, var(--utc-orange) 0%, var(--utc-orange-hover) 100%);
  border-radius: var(--card-radius);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--utc-white);
  position: relative;
  overflow: hidden;
}
.utc-cta::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -100px;
  right: -50px;
}
.utc-cta::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -80px;
  right: 100px;
}
.utc-cta--teal {
  background: linear-gradient(135deg, var(--utc-teal) 0%, var(--utc-teal-hover) 100%);
}
.utc-cta--navy {
  background: linear-gradient(135deg, var(--utc-navy) 0%, var(--utc-navy-light) 100%);
}
.utc-cta__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}
.utc-cta__text {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 12px;
  line-height: 1.6;
}
.utc-cta__btn {
  flex-shrink: 0;
  z-index: 1;
}

/* ============================================================
   CANDIDATURE FORM
   ============================================================ */
.utc-form {
  background: var(--utc-white);
  border-radius: var(--card-radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--utc-border);
}
.utc-form__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--utc-black);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.utc-form__subtitle {
  font-size: 15px;
  color: var(--utc-muted);
  margin-bottom: 32px;
}
.utc-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.utc-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.utc-form__group--full {
  grid-column: 1 / -1;
}
.utc-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--utc-dark);
}
.utc-form__label .required {
  color: #E63946;
  margin-left: 2px;
}
.utc-form__input,
.utc-form__textarea,
.utc-form__select {
  padding: 14px 18px;
  border: 1.5px solid var(--utc-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--utc-dark);
  background: var(--utc-bg);
  transition: var(--transition);
  width: 100%;
}
.utc-form__input:focus,
.utc-form__textarea:focus,
.utc-form__select:focus {
  outline: none;
  border-color: var(--utc-orange);
  box-shadow: 0 0 0 3px rgba(var(--utc-orange-rgb), 0.15);
  background: var(--utc-white);
}
.utc-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.utc-form__file {
  position: relative;
  padding: 20px;
  border: 2px dashed var(--utc-border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--utc-bg);
}
.utc-form__file:hover {
  border-color: var(--utc-orange);
  background: var(--utc-orange-light);
}
.utc-form__file input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.utc-form__file-label {
  font-size: 14px;
  color: var(--utc-muted);
}
.utc-form__file-label i {
  font-size: 24px;
  color: var(--utc-orange);
  display: block;
  margin-bottom: 8px;
}
.utc-form__legal {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--utc-border);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.utc-footer {
  background: var(--utc-black);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.utc-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.utc-footer a:hover { color: var(--utc-orange); }

.utc-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utc-footer__brand-text {
  font-size: 15px;
  line-height: 1.7;
  margin: 20px 0;
  max-width: 320px;
}
.utc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.utc-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.utc-footer__social a:hover {
  background: var(--utc-orange);
  border-color: var(--utc-orange);
  color: var(--utc-white);
}
.utc-footer__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--utc-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.utc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.utc-footer__links li { margin-bottom: 12px; }
.utc-footer__links a { font-size: 14px; }
.utc-footer__links a:hover { padding-left: 4px; }

.utc-footer__cta-box {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.utc-footer__cta-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--utc-white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.utc-footer__cta-text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Partners */
.utc-footer__partners {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utc-footer__partners-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 24px;
}
.utc-footer__partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.utc-footer__partner-logo {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.utc-footer__partner-logo:hover { opacity: 0.9; }

/* Copyright */
.utc-copyright {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.utc-copyright__links {
  display: flex;
  gap: 24px;
}
.utc-copyright__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.utc-copyright__links a:hover { color: var(--utc-orange); }

/* ============================================================
   BREADCRUMB (for inner pages)
   ============================================================ */
.utc-breadcrumb {
  background: var(--utc-black);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.utc-breadcrumb__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.utc-breadcrumb__content {
  position: relative;
  z-index: 2;
}
.utc-breadcrumb__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--utc-white);
  margin-bottom: 16px;
}
.utc-breadcrumb__path {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.utc-breadcrumb__path a { color: rgba(255,255,255,0.6); }
.utc-breadcrumb__path a:hover { color: var(--utc-orange); }
.utc-breadcrumb__path span { color: var(--utc-orange); }

/* ============================================================
   SUPPORT CARDS
   ============================================================ */
.utc-support-card {
  background: var(--utc-white);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--utc-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.utc-support-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--utc-orange);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.utc-support-card:hover::after {
  transform: scaleX(1);
}
.utc-support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.utc-support-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--utc-orange-light);
  color: var(--utc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.utc-support-card__price {
  font-size: 36px;
  font-weight: 800;
  color: var(--utc-orange);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.utc-support-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--utc-black);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.utc-support-card__text {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.utc-support-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.utc-support-card__list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--utc-text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--utc-light);
}
.utc-support-card__list li:last-child { border-bottom: none; }
.utc-support-card__list li i {
  color: var(--utc-teal);
  font-size: 14px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.utc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.utc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.utc-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.utc-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.utc-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.utc-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.utc-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.utc-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.utc-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.utc-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.utc-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}
.utc-reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}
.utc-reveal--right {
  opacity: 0;
  transform: translateX(40px);
}
.utc-reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}
.utc-reveal--scale {
  opacity: 0;
  transform: scale(0.9);
}
.utc-reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.utc-text-center { text-align: center; }
.utc-text-left { text-align: left; }
.utc-text-orange { color: var(--utc-orange); }
.utc-text-teal { color: var(--utc-teal); }
.utc-text-white { color: var(--utc-white); }
.utc-bg-orange { background: var(--utc-orange); }
.utc-bg-teal { background: var(--utc-teal); }
.utc-bg-light { background: var(--utc-light); }
.utc-mt-0 { margin-top: 0; }
.utc-mb-0 { margin-bottom: 0; }
.utc-flex { display: flex; }
.utc-flex-center { display: flex; align-items: center; justify-content: center; }
.utc-gap { gap: var(--gap); }
.utc-hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .utc-header__nav { display: none; }
  .utc-hamburger { display: flex; }
  .utc-hero__float { display: none; }
}

@media (max-width: 991px) {
  :root {
    --section-py: 70px;
    --gap: 20px;
  }
  .utc-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .utc-features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .utc-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .utc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .utc-cta {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
  .utc-hero__nav { bottom: 20px; right: 20px; }
  .utc-parcours::before { display: none; }
  .utc-parcours { gap: 24px; }
  .utc-timeline { flex-direction: column; gap: 32px; }
  .utc-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }
  .utc-timeline__item,
  .utc-timeline__item:nth-child(even) {
    padding: 0 0 0 48px;
    text-align: left;
  }
  .utc-timeline__dot {
    left: 0;
    top: 8px;
    transform: none;
  }
  .utc-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: 56px;
    --card-radius: 18px;
    --gap: 16px;
  }
  .utc-topbar__contact { display: none; }
  .utc-topbar__social { margin-left: auto; }
  .utc-features__grid {
    grid-template-columns: 1fr;
  }
  .utc-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .utc-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .utc-gallery__item--wide { grid-column: span 1; }
  .utc-gallery__item--tall { grid-row: span 1; }
  .utc-about__features {
    grid-template-columns: 1fr;
  }
  .utc-about__badge {
    width: 90px;
    height: 90px;
    bottom: -10px;
    right: -10px;
  }
  .utc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .utc-hero { min-height: 70vh; }
  .utc-hero__slide { min-height: 70vh; }
  .utc-hero__scroll { display: none; }
  .utc-hero__nav { display: none; }
  .utc-copyright {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .utc-parcours {
    grid-template-columns: 1fr;
  }
  .utc-form {
    padding: 28px 20px;
  }
  .utc-bento--3,
  .utc-bento--4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .utc-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .utc-stat-card { padding: 24px 16px; }
  .utc-hero__content { padding: 40px 0; }
}
