/* ================================================
   CEN Personal – Premium Corporate Design 2026
   ================================================ */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:          #0B1120;
  --navy-mid:      #131D32;
  --navy-soft:     #1E2D48;
  --slate:         #4A6FA5;
  --slate-light:   #6B8CBF;

  --accent:        #E8621A;
  --accent-bright: #F07535;
  --accent-deep:   #C44A0A;
  --accent-subtle: rgba(232,98,26,0.09);
  --accent-border: rgba(232,98,26,0.2);

  --light-gray:    #F9FAFB;
  --border-gray:   #E8EAED;
  --border-light:  #F1F3F5;
  --text-dark:     #0B1120;
  --text-mid:      #2D3748;
  --text-light:    #64748B;
  --text-muted:    #94A3B8;
  --white:         #ffffff;
  --bg-light:      #F4F6F9;
  --bg-subtle:     #F8F9FC;

  --gradient-hero: linear-gradient(135deg, #132B4A 0%, #1E4068 50%, #2A5285 100%);
  --gradient-cta:  linear-gradient(135deg, #0F2238 0%, #1A3558 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-deep));

  --shadow-xs:  0 1px 3px rgba(11,17,32,.06);
  --shadow-sm:  0 2px 8px rgba(11,17,32,.07), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:  0 6px 24px rgba(11,17,32,.10), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg:  0 16px 48px rgba(11,17,32,.13), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:  0 28px 64px rgba(11,17,32,.17), 0 8px 24px rgba(0,0,0,.08);
  --shadow-accent: 0 8px 28px rgba(232,98,26,.28);

  --radius-sm:  0.5rem;
  --radius-md:  0.875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }

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

/* Premium top accent line */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 45%, var(--accent-bright) 55%, var(--slate) 100%);
  z-index: 200;
  pointer-events: none;
}

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  word-break: break-word;
}

h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

p {
  color: var(--text-light);
  line-height: 1.78;
}

a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--navy); }

/* ---- CONTAINER ---- */
.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
  position: fixed;
  top: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(1.9);
  -webkit-backdrop-filter: blur(24px) saturate(1.9);
  z-index: 100;
  border-bottom: 1px solid rgba(232, 234, 237, 0.8);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(11,17,32,.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: auto;
  height: 2.75rem;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.8375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s ease, background 0.2s ease;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--bg-light);
}

.nav-links a.active {
  color: var(--accent-deep);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.8375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-family: inherit;
  display: none;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .nav-cta { display: inline-flex; align-items: center; }
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* ---- HAMBURGER ---- */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover { background: var(--bg-light); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.75px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-hamburger { display: none; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: calc(3px + 4rem);
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  border-bottom: 1px solid var(--border-gray);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--bg-light);
  color: var(--navy);
}

.mobile-menu a.mobile-menu-cta {
  background: var(--navy);
  color: var(--white);
  margin-top: 0.625rem;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.mobile-menu a.mobile-menu-cta:hover {
  background: var(--accent);
}

body.menu-open { overflow: hidden; }

/* ---- MAIN ---- */
main { margin-top: calc(4rem + 3px); }

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }

.inner-hero { padding-top: 5rem; padding-bottom: 3rem; }
.section-light { background: var(--white); }

.section-dark {
  background: var(--gradient-cta);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(74,111,165,.15) 0%, transparent 65%);
  pointer-events: none;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 40%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232,98,26,.07) 0%, transparent 60%);
  pointer-events: none;
}

.section-gray { background: var(--bg-subtle); }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow,
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.875rem;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border-radius: 2rem;
  font-size: 0.6625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.125rem;
  border: 1px solid var(--border-gray);
}

.section-header h2 { color: var(--text-dark); }

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--text-light);
}

/* ================================================
   HERO
   ================================================ */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 0;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transition: transform 10s ease;
}

.hero-full:hover .hero-full-bg { transform: scale(1.025); }

.hero-full-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(19,43,74,0.88) 0%,
      rgba(30,64,104,0.72) 50%,
      rgba(42,82,133,0.55) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 1;
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
  max-width: 800px;
}

.hero-full-content .page-label {
  background: rgba(232,98,26,0.15);
  border-color: rgba(232,98,26,0.35);
  color: var(--accent-bright);
}

.hero-full-content h1 {
  color: var(--white);
  margin-bottom: 1.375rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero-full-content h1 .text-accent { color: var(--accent-bright); }

.hero-full-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat {
  padding-right: 2.25rem;
  margin-right: 2.25rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-stat-number {
  display: block;
  font-size: 2.125rem;
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.04em;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero-full { min-height: 100svh; }
  .hero-full-content { padding-top: 5.5rem; padding-bottom: 3rem; max-width: 100%; }
  .hero-full-content h1 { font-size: clamp(1.875rem, 7vw, 2.75rem); }
  .hero-stats { gap: 1.5rem 0; flex-wrap: wrap; }
  .hero-stat { padding-right: 1.5rem; margin-right: 1.5rem; }
}

/* ================================================
   SERVICES STRIP
   ================================================ */
.services-strip {
  background: var(--navy-mid);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow-x: hidden;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) { .strip-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .strip-grid { grid-template-columns: 1fr 1fr; } }

.strip-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.625rem 1.375rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  transition: background 0.22s ease, color 0.22s ease;
  text-decoration: none;
  min-width: 0;
}

.strip-card > div:last-child {
  min-width: 0;
  overflow: hidden;
}

.strip-card h4,
.strip-card p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strip-card:last-child { border-right: none; }

@media (max-width: 1024px) {
  .strip-card { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 1rem; gap: 0.75rem; }
  .strip-card:nth-child(3n) { border-right: none; }
  .strip-card:nth-last-child(-n+2),
  .strip-card:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .strip-card { padding: 1rem 0.875rem; gap: 0.625rem; }
  .strip-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .strip-card:nth-child(even) { border-right: none; }
  .strip-card:nth-last-child(-n+2) { border-bottom: none; }
  .strip-card:last-child { border-bottom: none; }
  .strip-card h4 { font-size: 0.75rem; }
  .strip-card p { font-size: 0.6875rem; }
  .strip-icon { width: 2rem; height: 2rem; flex-shrink: 0; }
  .strip-icon svg { width: 0.9rem; height: 0.9rem; }
}

.strip-card:hover {
  background: rgba(232,98,26,0.10);
  color: var(--white);
}

.strip-card:hover .strip-icon {
  background: var(--accent);
  transform: scale(1.08);
}

.strip-icon {
  width: 2.625rem;
  height: 2.625rem;
  background: var(--navy-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.22s ease;
}

.strip-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: #8BA8CC;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s ease;
}

.strip-card:hover .strip-icon svg { stroke: #fff; }

.strip-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
  letter-spacing: -0.005em;
}

.strip-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.44);
  margin: 0;
  line-height: 1.4;
}

/* ================================================
   INNER PAGE HERO
   ================================================ */
.inner-page-hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.inner-page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(74,130,200,.22) 0%, transparent 65%);
  pointer-events: none;
}

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

.inner-page-hero .page-label {
  background: rgba(232,98,26,0.15);
  border-color: rgba(232,98,26,0.35);
  color: var(--accent-bright);
}

.inner-page-hero h1 { color: var(--white); margin-bottom: 0.875rem; }
.inner-page-hero p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; }

.inner-page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.42);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.625rem;
  transition: color 0.2s;
}

.inner-page-hero .breadcrumb:hover { color: rgba(255,255,255,0.72); }

/* ---- LEGACY HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; }
}

.hero-content h1 { margin-bottom: 1.5rem; color: var(--text-dark); }
.hero-content h1 .text-accent { color: var(--accent); }
.hero-content p { font-size: 1.1rem; max-width: 500px; }

.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-image img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.hero-image:hover img { transform: scale(1.025); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.625rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-family: inherit;
  line-height: 1.4;
}

.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 0 rgba(232,98,26,0);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border-gray);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

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

.btn-group {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ================================================
   GRID
   ================================================ */
.grid { display: grid; gap: 1.5rem; }

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.875rem;
  transition: all 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--slate-light));
  opacity: 0;
  transition: opacity 0.28s ease;
}

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

.card:hover::before { opacity: 1; }

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--navy-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.card-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #8BA8CC;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

.card:hover .card-icon {
  background: var(--accent);
  transform: scale(1.05);
}

.card:hover .card-icon svg {
  stroke: #fff;
}

.card h3 { color: var(--text-dark); }
.card p { font-size: 0.875rem; line-height: 1.7; }

/* ================================================
   STATS
   ================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  background: var(--border-gray);
  gap: 1px;
}

.stat-item {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background 0.2s ease;
}

.stat-item:hover { background: var(--bg-light); }

.stat-number {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .stat-accent { color: var(--accent); }

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ================================================
   LIST CHECK
   ================================================ */
.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8125rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.list-check li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.175rem;
}

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-step { text-align: center; padding: 1rem 0.75rem; }

.process-number {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin: 0 auto 1.125rem;
  position: relative;
  transition: all 0.28s ease;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(11,17,32,.22);
}

.process-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.process-step:hover .process-number {
  background: var(--accent);
  box-shadow: var(--shadow-accent);
}

.process-step:hover .process-number::after { opacity: 1; }

/* ================================================
   HIGHLIGHT BOX
   ================================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(11,17,32,.03), rgba(74,111,165,.06));
  border: 1px solid rgba(74,111,165,.14);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.625rem;
}

/* ================================================
   BADGES
   ================================================ */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6875rem;
  background: var(--bg-light);
  color: var(--slate);
  border-radius: 0.375rem;
  font-size: 0.7375rem;
  font-weight: 600;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--border-gray);
}

.badge-primary { background: var(--navy); color: var(--white); border-color: transparent; }

.badge-accent {
  background: var(--accent-subtle);
  color: var(--accent-deep);
  border-color: var(--accent-border);
}

.tag-badge {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  background: var(--bg-light);
  color: var(--slate);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--border-gray);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-soft), var(--accent), var(--accent-bright), var(--slate));
}

footer::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at bottom right, rgba(74,111,165,.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: auto;
  height: 4.5rem;
  display: block;
  margin-bottom: 1rem;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  opacity: 0.7;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,.44);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover { color: var(--accent-bright); }

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(255,255,255,.48);
  font-size: 0.875rem;
  margin-bottom: 0.8125rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255,255,255,.48);
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--accent-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.28);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.28);
  font-size: 0.7375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-admin-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,98,26,0.07);
}

/* ================================================
   FORMS
   ================================================ */
.form-group { margin-bottom: 1.375rem; }

.form-group label {
  display: block;
  margin-bottom: 0.4375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6875rem 1rem;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  color: var(--text-dark);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.10);
}

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

/* ================================================
   TWO-COLUMN LAYOUT
   ================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .col-img { order: -1; }
}

/* ================================================
   PHOTOS
   ================================================ */
.section-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  transition: transform 0.5s ease;
}

.section-photo:hover { transform: scale(1.012); }

.photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

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

/* --- Tablet (≤ 900px) --- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 2.5rem; }
}

/* --- Phablet (≤ 768px) --- */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .inner-page-hero { padding: 5.5rem 0 2.75rem; }
  .hero { gap: 2rem; }
  .hero-stats { gap: 1.5rem 0; }
  .hero-stat { padding-right: 1.25rem; margin-right: 1.25rem; }
  .hero-stat-number { font-size: 1.625rem; }
}

/* --- Mobile (≤ 640px) --- */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .col-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .section-photo { max-height: 260px; object-fit: cover; }
  .process-step { padding: 1.5rem 1rem; }
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .inner-page-hero { padding: 5rem 0 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; padding-top: 2rem; margin-top: 2.5rem; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat-number { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav-logo img { height: 2.25rem; }
  .footer-logo { height: 3.5rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .card { padding: 1.5rem; }
  .section-header p { font-size: 0.9375rem; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.375rem, 5vw, 2rem); }
  .page-label { font-size: 0.625rem; letter-spacing: 0.08em; padding: 0.35rem 0.75rem; }
}

/* ================================================
   UTILITIES
   ================================================ */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-light); }
.text-accent { color: var(--accent); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in { animation: fadeIn 0.5s ease-out; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.23s; }
.reveal-delay-4 { transition-delay: 0.31s; }

/* ================================================
   PAGE-SPECIFIC
   ================================================ */
.page-hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.divider {
  height: 1px;
  background: var(--border-gray);
  margin: 2rem 0;
}

/* Loading spinner */
.loading {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--border-gray);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---- MODAL ---- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,17,32,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.modal.active { display: flex; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}

.modal-header h2 { margin: 0; font-size: 1.375rem; }

.modal-close {
  background: none;
  border: none;
  font-size: 1.375rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}
