/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --font:    'Inter', system-ui, -apple-system, sans-serif;

  /* Brand palette */
  --red:         #C8102E;
  --red-dark:    #a00c23;
  --black:       #0d0d0d;
  --dark:        #1a1a1a;
  --mid:         #2a2a2a;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --grey:        #e2e2e2;
  --grey-dark:   #555555;
  --muted:       #888888;

  /* Layout */
  --nav-h:   120px;
  --max-w:   1240px;
  --trans:   .2s ease;

  /* ── Backward-compatibility aliases (used by forms.css) ── */
  --font-heading:      var(--font);
  --color-primary:     var(--black);
  --color-primary-light: var(--red);
  --color-accent:      var(--red);
  --color-dark:        var(--black);
  --color-dark-mid:    var(--dark);
  --color-light:       var(--off-white);
  --color-white:       var(--white);
  --color-text:        var(--black);
  --color-text-muted:  var(--muted);
  --color-text-light:  #a0a0a0;
  --color-border:      var(--grey);
  --color-mt:          var(--red);
  --color-mt-bg:       rgba(200,16,46,.07);
  --color-smp:         var(--red);
  --color-smp-bg:      rgba(200,16,46,.07);
  --color-sds:         #333;
  --color-sds-bg:      #f5f5f5;
  --color-sts:         #333;
  --color-sts-bg:      #f5f5f5;
  --space-xs:   4px;  --space-sm:   8px;  --space-md:  16px;
  --space-lg:  24px;  --space-xl:  40px;  --space-2xl: 64px; --space-3xl: 96px;
  --radius-sm:   2px; --radius-md:   2px; --radius-lg:   4px;
  --radius-xl:   4px; --radius-full: 9999px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.1);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.16);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.20);
  --transition: var(--trans);
  --nav-height: var(--nav-h);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px; line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); line-height: 1.15; margin: 0 0 16px; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.se-container {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .se-container { padding: 0 20px; } }

/* ── Section base ─────────────────────────────────────────────────────────── */
.se-section { padding: 100px 0; }
.se-section--sm { padding: 64px 0; }
.se-section--dark  { background: var(--dark); color: var(--white); }
.se-section--black { background: var(--black); color: var(--white); }
.se-section--off   { background: var(--off-white); }
.se-section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.se-section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
.se-section-title--white { color: var(--white); }
.se-section-sub {
  font-size: 1.0625rem; color: var(--muted);
  max-width: 560px; line-height: 1.7;
}
.se-section-sub--white { color: rgba(255,255,255,.7); }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.se-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.9375rem;
  border-radius: 2px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  padding: 12px 28px; white-space: nowrap; line-height: 1;
}
.se-btn--primary {
  background: var(--red); color: #fff; border-color: var(--red);
}
.se-btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.se-btn--outline {
  background: transparent; color: var(--red); border-color: var(--red);
}
.se-btn--outline:hover { background: var(--red); color: #fff; }
.se-btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.se-btn--outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }
.se-btn--white {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.se-btn--white:hover { background: var(--grey); }
.se-btn--black {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.se-btn--black:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
.se-btn--ghost {
  background: transparent; color: var(--muted); border-color: transparent;
}
.se-btn--ghost:hover { color: var(--black); }
.se-btn--sm  { padding: 8px 18px; font-size: 0.8125rem; }
.se-btn--lg  { padding: 16px 40px; font-size: 1rem; }
.se-btn--full{ width: 100%; }
/* accent alias */
.se-btn--accent { background: var(--red); color: #fff; border-color: var(--red); }
.se-btn--accent:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.se-btn--white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.se-btn--white-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── Header / Navigation ───────────────────────────────────────────────────── */
.se-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 999;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--trans), box-shadow var(--trans);
}
.se-header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.se-header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

/* Logo */
.se-header__logo { display: flex; align-items: center; flex-shrink: 0; height: 100%; }
.se-header__logo img { height: 68px; width: auto; filter: drop-shadow(0 0 10px rgba(255,255,255,.5)); }
.se-header__logo-text {
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,255,255,.6);
}
.se-header__logo-text span { color: var(--red); }

/* Primary nav */
.se-nav { flex: 1; display: flex; align-items: center; height: 100%; }
.se-nav__list {
  display: flex; align-items: center; gap: 4px;
  justify-content: center; width: 100%;
}
.se-nav__list li a {
  display: block; padding: 8px 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--trans);
  position: relative;
}
.se-nav__list li a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.se-nav__list li a:hover,
.se-nav__list li.current-menu-item > a,
.se-nav__list li.current_page_item > a { color: #fff; }
.se-nav__list li a:hover::after,
.se-nav__list li.current-menu-item > a::after,
.se-nav__list li.current_page_item > a::after { transform: scaleX(1); }

/* Language switcher */
.se-lang-switch { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.se-lang-btn { display:inline-block; padding:3px 9px; border:1px solid rgba(255,255,255,.35); border-radius:3px; font-size:11px; font-weight:700; letter-spacing:.06em; text-decoration:none; color:rgba(255,255,255,.65); transition:border-color .2s,color .2s; }
.se-lang-btn:hover { border-color:#fff; color:#fff; }
.se-lang-btn--active { border-color:var(--red); color:#fff; pointer-events:none; }

/* Header actions */
.se-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.se-nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.se-nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all var(--trans);
  transform-origin: center;
}
.se-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.se-nav-toggle.open span:nth-child(2) { opacity: 0; }
.se-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
@media (max-width: 860px) {
  .se-nav-toggle { display: flex; }
  .se-nav {
    position: fixed; inset: 0;
    background: var(--black);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity var(--trans);
    z-index: 990;
  }
  .se-nav.open { opacity: 1; pointer-events: auto; }
  .se-nav__list {
    flex-direction: column; gap: 8px; text-align: center;
  }
  .se-nav__list li a { font-size: 1.5rem; letter-spacing: .02em; padding: 12px 24px; }
  .se-nav__list li a::after { bottom: 8px; }
}
@media (max-width: 860px) {
  .se-header__actions .se-btn--ghost { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.se-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.se-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.se-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.se-hero__video-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; min-width: 100%;
  height: 56.25vw; min-height: 100%;
  pointer-events: none;
}
.se-hero__video-wrap iframe,
.se-hero__video-wrap video { width: 100%; height: 100%; }
.se-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.se-hero__logo-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-repeat: repeat;
  background-size: 180px auto;
  background-position: center center;
  opacity: 0.08;
  pointer-events: none;
}
.se-hero__content {
  position: relative; z-index: 3;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  max-width: 820px;
}
.se-hero__tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
  border: 1px solid rgba(200,16,46,.5);
  padding: 4px 12px;
}
.se-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.02;
  color: var(--white); margin-bottom: 28px;
}
.se-hero__title em { color: var(--red); font-style: normal; }
.se-hero__sub {
  font-size: 1.125rem; line-height: 1.7;
  color: rgba(255,255,255,.72); margin-bottom: 44px;
  max-width: 600px;
}
.se-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.se-hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.se-hero__scroll span {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.se-hero__scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ── Services Section ──────────────────────────────────────────────────────── */
.se-services { padding: 100px 0; background: var(--white); }
.se-services__header { text-align: center; margin-bottom: 64px; }
.se-services__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
@media (max-width: 768px) { .se-services__grid { grid-template-columns: 1fr; } }

.se-svc-card {
  background: var(--off-white);
  display: flex; flex-direction: column;
  transition: background var(--trans);
  border: 2px solid transparent;
}
.se-svc-card:hover { border-color: var(--red); background: var(--white); }
.se-svc-card__img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--mid);
  position: relative;
}
.se-svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.se-svc-card:hover .se-svc-card__img img { transform: scale(1.04); }
.se-svc-card__img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--white); opacity: .2;
}
.se-svc-card__body { padding: 36px 40px 40px; flex: 1; display: flex; flex-direction: column; }
.se-svc-card__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.se-svc-card__title {
  font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--black); margin-bottom: 16px; line-height: 1.1;
}
.se-svc-card__desc {
  font-size: 1rem; color: var(--grey-dark); line-height: 1.7; flex: 1; margin-bottom: 28px;
}
.se-svc-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  border-bottom: 2px solid var(--red); padding-bottom: 4px;
  transition: color var(--trans), border-color var(--trans);
  align-self: flex-start;
}
.se-svc-card__link:hover { color: var(--red); text-decoration: none; }
.se-svc-card__link svg { transition: transform var(--trans); }
.se-svc-card__link:hover svg { transform: translateX(4px); }

/* ── Stats Section ─────────────────────────────────────────────────────────── */
.se-stats { padding: 80px 0; background: var(--black); }
.se-stats__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
@media (max-width: 600px) { .se-stats__grid { grid-template-columns: 1fr 1fr; } }
.se-stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.se-stat:last-child { border-right: none; }
@media (max-width: 600px) {
  .se-stat:nth-child(2) { border-right: none; }
  .se-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .se-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); border-right: none; }
}
.se-stat__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  letter-spacing: -.04em; color: var(--red); line-height: 1;
  margin-bottom: 10px;
}
.se-stat__label {
  display: block; font-size: 0.8125rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.se-hiw { padding: 100px 0; background: var(--off-white); }
.se-hiw__header { text-align: center; margin-bottom: 48px; }
.se-hiw__tabs {
  display: flex; justify-content: center; gap: 0;
  border-bottom: 2px solid var(--grey); margin-bottom: 56px;
}
.se-hiw__tab {
  padding: 12px 32px;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px;
  cursor: pointer; color: var(--muted); transition: color var(--trans), border-color var(--trans);
}
.se-hiw__tab.active,
.se-hiw__tab:hover { color: var(--black); }
.se-hiw__tab.active { border-bottom-color: var(--red); color: var(--red); }
.se-hiw__panel { display: none; }
.se-hiw__panel.active { display: block; }
.se-hiw__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.se-hiw__steps::before {
  content: '';
  position: absolute; top: 20px; left: 10%; right: 10%;
  height: 2px; background: var(--grey); z-index: 0;
}
@media (max-width: 860px) {
  .se-hiw__steps { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .se-hiw__steps::before { display: none; }
}
@media (max-width: 560px) {
  .se-hiw__steps { grid-template-columns: 1fr; gap: 20px; }
}
.se-hiw__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
  position: relative; z-index: 1;
}
.se-hiw__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 800; letter-spacing: -.01em;
  flex-shrink: 0; margin-bottom: 20px;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--black);
  transition: background var(--trans);
}
.se-hiw__step:hover .se-hiw__num { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.se-hiw__step-title {
  font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 8px;
}
.se-hiw__step-desc {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.6;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.se-cta-banner { padding: 100px 0; background: var(--red); }
.se-cta-banner__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.se-cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); letter-spacing: -.03em; margin-bottom: 20px;
}
.se-cta-banner__sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.8);
  margin-bottom: 40px; line-height: 1.7;
}
.se-cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Inner Page Hero ───────────────────────────────────────────────────────── */
.se-page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--black); color: var(--white);
  position: relative; overflow: hidden;
}
.se-page-hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.se-page-hero__tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  border: 1px solid rgba(200,16,46,.5); padding: 4px 12px;
}
.se-page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
  color: var(--white); margin-bottom: 24px; max-width: 800px;
}
.se-page-hero__sub {
  font-size: 1.125rem; color: rgba(255,255,255,.7);
  max-width: 640px; line-height: 1.75; margin-bottom: 40px;
}
.se-page-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Service Split (image + text) ─────────────────────────────────────────── */
.se-split { padding: 100px 0; }
.se-split__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.se-split__inner--reverse { direction: rtl; }
.se-split__inner--reverse > * { direction: ltr; }
.se-split__img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--mid);
  position: relative;
}
.se-split__img img { width: 100%; height: 100%; object-fit: cover; }
.se-split__img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--white); opacity: .12;
}
.se-split__content {}
.se-split__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}
.se-split__content p { color: var(--grey-dark); line-height: 1.8; margin-bottom: 16px; }
.se-split__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.se-split__list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem;
}
.se-split__list-item::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
@media (max-width: 860px) {
  .se-split__inner { grid-template-columns: 1fr; gap: 48px; }
  .se-split__inner--reverse { direction: ltr; }
}

/* ── Process Steps ─────────────────────────────────────────────────────────── */
.se-process { padding: 100px 0; background: var(--black); color: var(--white); }
.se-process__header { text-align: center; margin-bottom: 64px; }
.se-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 860px) { .se-process__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .se-process__steps { grid-template-columns: 1fr; } }
.se-process__step {
  border-top: 3px solid var(--mid);
  padding-top: 24px;
  transition: border-color var(--trans);
}
.se-process__step:hover { border-top-color: var(--red); }
.se-process__num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em;
  color: var(--red); line-height: 1; margin-bottom: 16px;
}
.se-process__step-title {
  font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.se-process__step-desc { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── About Page ───────────────────────────────────────────────────────────── */
.se-about-text {
  padding: 100px 0;
}
.se-about-text__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.se-about-text__content p { font-size: 1.0625rem; color: var(--grey-dark); line-height: 1.85; }
.se-about-mission {
  background: var(--black); color: var(--white);
  padding: 48px; position: relative;
}
.se-about-mission::before {
  content: '"'; position: absolute; top: 24px; left: 40px;
  font-size: 6rem; font-weight: 800; color: var(--red);
  line-height: .6; opacity: .4;
}
.se-about-mission p { font-size: 1.25rem; line-height: 1.7; color: rgba(255,255,255,.9); margin: 0; font-style: italic; }
@media (max-width: 860px) { .se-about-text__inner { grid-template-columns: 1fr; } }

/* ── Generic Page ─────────────────────────────────────────────────────────── */
.se-page-content {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  min-height: 60vh;
}
.se-page-content .entry-content { max-width: 860px; }
.se-page-content .entry-content h2 { font-size: 1.75rem; margin-top: 48px; }
.se-page-content .entry-content p { font-size: 1.0625rem; line-height: 1.8; color: var(--grey-dark); }

/* Hub portal full-width wrapper */
.se-portal-wrap {
  padding-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h) - 80px);
  display: flex;
  flex-direction: column;
}
.se-portal-wrap > .se-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 40px;
}

/* Back-to-portal breadcrumb bar (injected above service dashboard pages) */
.sph-back-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 20px;
  font-size: 13px;
  color: #6b7280;
}
.sph-back-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--grey);
  border-radius: 6px;
  transition: border-color .15s, color .15s;
}
.sph-back-bar__link:hover { border-color: var(--red); color: var(--red); }
.sph-back-bar__link svg { flex-shrink: 0; }
.sph-back-bar__sep  { opacity: .4; }
.sph-back-bar__page { font-weight: 500; color: var(--grey-dark); }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.se-404 {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  text-align: center;
}
.se-404__code {
  font-size: clamp(6rem, 20vw, 14rem); font-weight: 800;
  letter-spacing: -.06em; line-height: .9; color: var(--grey);
  margin-bottom: 0;
}
.se-404__title { font-size: 1.75rem; font-weight: 700; color: var(--black); margin: 24px 0 16px; }
.se-404__sub { font-size: 1.0625rem; color: var(--muted); margin-bottom: 40px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.se-footer {
  background: var(--black); color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.se-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .se-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .se-footer__grid { grid-template-columns: 1fr; }
}
.se-footer__brand {}
.se-footer__logo { display: inline-flex; margin-bottom: 16px; }
.se-footer__logo img { height: 36px; width: auto; }
.se-footer__logo-text {
  font-size: 1rem; font-weight: 800;
  letter-spacing: -.01em; color: var(--white); text-transform: uppercase;
}
.se-footer__tagline { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.se-footer__social { display: flex; gap: 12px; }
.se-social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  transition: border-color var(--trans), color var(--trans);
}
.se-social-link:hover { border-color: var(--red); color: var(--red); text-decoration: none; }

.se-footer__col {}
.se-footer__col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.se-footer__links { display: flex; flex-direction: column; gap: 10px; }
.se-footer__links a {
  font-size: 0.875rem; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color var(--trans);
}
.se-footer__links a:hover { color: var(--white); text-decoration: none; }

.se-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px; flex-wrap: wrap;
  font-size: 0.8125rem; color: rgba(255,255,255,.3);
}
.se-footer__bottom-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.se-footer__bottom-nav a { color: rgba(255,255,255,.3); text-decoration: none; }
.se-footer__bottom-nav a:hover { color: var(--white); }

/* ── Partner Network (public Medical Tourism page) ─────────────────────────── */
.se-partner-block {}

/* Doctor cards – 3-column grid */
.se-doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 40px;
}
@media (max-width: 900px) { .se-doctor-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .se-doctor-grid { grid-template-columns: 1fr; } }

.se-doctor-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  border: 2px solid transparent;
  transition: border-color var(--trans);
}
.se-doctor-card:hover { border-color: var(--red); }
.se-doctor-card__photo {
  width: 72px; height: 72px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: var(--mid);
}
.se-doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.se-doctor-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  background: var(--black);
  text-transform: uppercase;
}
.se-doctor-card__body { display: flex; flex-direction: column; gap: 4px; }
.se-doctor-card__name { font-size: 1rem; font-weight: 700; color: var(--black); }
.se-doctor-card__spec {
  font-size: 0.8125rem; font-weight: 600; color: var(--red);
  text-transform: uppercase; letter-spacing: .06em;
}
.se-doctor-card__meta {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.8125rem; color: var(--muted);
  margin-top: 4px;
}
.se-doctor-card__country { font-weight: 600; color: var(--black); }
.se-doctor-card__bio {
  font-size: 0.8125rem; color: var(--grey-dark); line-height: 1.6;
  margin-top: 8px; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Hospital cards – 2-column grid */
.se-hospital-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 40px;
}
@media (max-width: 700px) { .se-hospital-grid { grid-template-columns: 1fr; } }

.se-hospital-card {
  background: var(--white);
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color var(--trans);
  display: flex; flex-direction: column;
}
.se-hospital-card:hover { border-color: var(--red); }
.se-hospital-card__img { aspect-ratio: 16/7; overflow: hidden; background: var(--mid); }
.se-hospital-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.se-hospital-card:hover .se-hospital-card__img img { transform: scale(1.04); }
.se-hospital-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.se-hospital-card__name { font-size: 1.0625rem; font-weight: 800; color: var(--black); }
.se-hospital-card__loc { font-size: 0.8125rem; color: var(--muted); }
.se-hospital-card__badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(200,16,46,.3);
  padding: 2px 8px; align-self: flex-start;
}
.se-hospital-card__spec { font-size: 0.875rem; color: var(--grey-dark); margin-top: 4px; }
.se-hospital-card__desc {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── About Story section ────────────────────────────────────────────────────── */
.se-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.se-about-story__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey);
  position: relative;
}
.se-about-story__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.se-about-story__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 800; color: #555;
  background: #1a1a1a;
}
.se-about-story__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15;
  margin: 12px 0 20px;
}
.se-about-story__content > p { color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.se-about-story__quote {
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin: 28px 0;
  background: var(--off-white);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
}

/* ── Values section ─────────────────────────────────────────────────────────── */
.se-values { background: var(--black); padding: 96px 0; }
.se-values__header { text-align: center; margin-bottom: 56px; }
.se-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.se-value-card {
  background: #121212;
  padding: 44px 32px;
  border-top: 3px solid var(--red);
  transition: background .2s;
}
.se-value-card:hover { background: #1c1c1c; }
.se-value-card__num {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--red);
  opacity: .25;
  line-height: 1;
  margin-bottom: 20px;
}
.se-value-card h3 { color: var(--white); font-size: 1.0625rem; font-weight: 700; margin: 0 0 12px; }
.se-value-card p  { color: #999; font-size: .875rem; line-height: 1.75; margin: 0; }

/* ── Articles / Health Insights ─────────────────────────────────────────────── */
.se-section-header { text-align: center; margin-bottom: 8px; }
.se-section-sub { color: var(--muted); max-width: 640px; margin: 12px auto 0; line-height: 1.75; text-align: center; }

.se-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.se-article-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.se-article-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.se-article-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--grey); }
.se-article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.se-article-card:hover .se-article-card__img img { transform: scale(1.05); }
.se-article-card__img a { display: block; height: 100%; }
.se-article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.se-article-card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 14px;
}
.se-article-card__title {
  font-size: 1.0625rem; font-weight: 700; line-height: 1.4;
  margin: 0 0 12px; color: var(--dark);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.se-article-card__title a { color: inherit; text-decoration: none; }
.se-article-card__title a:hover { color: var(--red); }
.se-article-card__excerpt {
  font-size: .875rem; color: var(--muted); line-height: 1.75;
  margin: 0 0 20px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.se-article-card__link {
  font-size: .8125rem; font-weight: 700; color: var(--red);
  text-decoration: none; letter-spacing: .03em; margin-top: auto;
}
.se-article-card__link:hover { text-decoration: underline; }

/* ── Single article ─────────────────────────────────────────────────────────── */
.se-container--narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.se-article-single { padding: 0 0 80px; }
.se-article-single__hero {
  background: var(--black); color: var(--white);
  padding: 64px 0 56px; margin-bottom: 0;
}
.se-article-single__tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 18px;
}
.se-article-single__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.15;
  margin: 0 0 20px; color: var(--white);
}
.se-article-single__meta { font-size: .875rem; color: #999; }
.se-article-single__thumb {
  margin: 0 0 48px;
  aspect-ratio: 16 / 7; overflow: hidden; background: var(--grey);
}
.se-article-single__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.se-article-single__content { font-size: 1.0625rem; line-height: 1.85; color: #333; }
.se-article-single__content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.se-article-single__content h3 { font-size: 1.1875rem; font-weight: 700; margin: 32px 0 12px; }
.se-article-single__content p  { margin-bottom: 20px; }
.se-article-single__content ul,
.se-article-single__content ol { padding-left: 24px; margin-bottom: 20px; }
.se-article-single__content li { margin-bottom: 8px; }
.se-article-single__content blockquote {
  border-left: 4px solid var(--red); padding: 16px 20px;
  margin: 28px 0; background: var(--off-white);
  font-style: italic; color: var(--dark);
}
.se-article-single__back { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--red); text-decoration: none; margin-top: 48px; }
.se-article-single__back:hover { text-decoration: underline; }

/* ── Archive ────────────────────────────────────────────────────────────────── */
.se-archive-header { text-align: center; padding: 72px 0 56px; background: var(--black); color: var(--white); }
.se-archive-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin: 12px 0; color: var(--white); }
.se-archive-header p  { color: #999; max-width: 560px; margin: 0 auto; }
.se-archive-grid { padding: 64px 0 80px; background: var(--off-white); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .se-values__grid { grid-template-columns: repeat(2, 1fr); }
  .se-articles__grid { grid-template-columns: repeat(2, 1fr); }
  .se-about-story__inner { gap: 40px; }
}
@media (max-width: 640px) {
  .se-about-story__inner { grid-template-columns: 1fr; gap: 32px; }
  .se-about-story__img { aspect-ratio: 3 / 2; }
  .se-values__grid { grid-template-columns: 1fr; gap: 2px; }
  .se-articles__grid { grid-template-columns: 1fr; }
  .se-article-single__hero { padding: 40px 0 36px; }
}

/* ── Watch & Learn video grid ───────────────────────────────────────────────── */
.se-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.se-video-card {
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.se-video-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.22); }
.se-video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.se-video-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .25s;
}
.se-video-card:hover .se-video-card__thumb img { opacity: .85; }
.se-video-card__thumb iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.se-video-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(200, 16, 46, .92);
  border-radius: 50%;
  pointer-events: none;
  transition: background .2s, transform .2s;
}
.se-video-card:hover .se-video-card__play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}
.se-video-card__play::after {
  content: '';
  position: absolute; top: 50%; left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}
.se-video-card__body { padding: 18px 20px 22px; }
.se-video-card__cat {
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--red); margin-bottom: 8px;
}
.se-video-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--white); line-height: 1.4; margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.se-video-card__desc {
  font-size: .8125rem; color: #888; line-height: 1.65; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 1024px) { .se-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .se-video-grid { grid-template-columns: 1fr; } }

/* ── Utilities ──────────────────────────────────────────────────────────────── */
.se-muted { color: var(--muted); }
.se-red   { color: var(--red); }
.u-text-center { text-align: center; }
.u-mt-0  { margin-top: 0; }
.u-mb-0  { margin-bottom: 0; }
