﻿/* ============================================================
   NEWCOMER CONNECT  PREMIUM REDESIGN 2026
   Stack: Pure CSS3 + CSS Variables + Animations
   Palette: Deep Navy  Electric Blue  White  Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/*  DESIGN TOKENS  */
:root {
  --navy:        #000000;
  --navy-mid:    #111111;
  --navy-soft:   #1a1a1a;
  --blue:        #D8292F;
  --blue-light:  #E1464B;
  --cyan:        #B61F24;
  --gold:        #D8292F;
  --gold-light:  #F06A6F;
  --white:       #ffffff;
  --off-white:   #f7f7f7;
  --surface:     #f2f2f2;
  --border:      #e5e5e5;
  --text:        #111111;
  --text-mid:    #2a2a2a;
  --text-muted:  #5f5f5f;
  --grad-navy:   linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --grad-blue:   linear-gradient(135deg, #D8292F 0%, #B61F24 100%);
  --grad-gold:   linear-gradient(135deg, #D8292F 0%, #F06A6F 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #f7f7f7 100%);
  --shadow-xs:   0 2px 8px rgba(0,0,0,.06);
  --shadow-sm:   0 4px 16px rgba(0,0,0,.09);
  --shadow-md:   0 10px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 52px rgba(0,0,0,.18);
  --shadow-xl:   0 32px 80px rgba(0,0,0,.24);
  --shadow-blue: 0 12px 40px rgba(216,41,47,.28);
  --shadow-gold: 0 8px 28px rgba(216,41,47,.35);
  --container:   1240px;
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --r-full:      9999px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --spring:      cubic-bezier(.34,1.56,.64,1);
  --primary-color: var(--off-white);
  --secondary-color: var(--navy);
  --accent-color: var(--blue);
}

/*  RESET & BASE  */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 130% 90% at 0% 0%, rgba(216,41,47,.05) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(182,31,36,.05) 0%, transparent 45%),
    var(--white);
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a   { color:var(--blue); text-decoration:none; transition:color .25s; }
a:hover { color:var(--cyan); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: .9rem; color: var(--text-mid); line-height:1.75; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 140px 0; }

.bg-white,
.bg-soft {
  position: relative;
  isolation: isolate;
}

.bg-white {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.bg-soft {
  background: linear-gradient(180deg, #fff4f5 0%, #f8fbff 100%);
}

.bg-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 14% 22%, rgba(216,41,47,.08) 0%, transparent 68%),
    radial-gradient(ellipse 48% 35% at 88% 78%, rgba(182,31,36,.08) 0%, transparent 70%);
}

/*  BADGE  */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge-blue  { background:rgba(29,110,197,.1); color:var(--blue); border:1px solid rgba(29,110,197,.2); }
.badge-cyan  { background:rgba(6,192,216,.1);  color:var(--cyan); border:1px solid rgba(6,192,216,.2); }
.badge-gold  { background:rgba(240,165,0,.1);  color:var(--gold); border:1px solid rgba(240,165,0,.25); }
.badge-white { background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.25); }

/*  SECTION HEAD  */
.section-head { text-align:center; margin-bottom:64px; }
.section-head .badge { margin-bottom:14px; }
.section-head h2 { margin-bottom:14px; }
.section-head p  { font-size:1.08rem; color:var(--text-muted); max-width:580px; margin:0 auto; }

/*  BUTTONS  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 56%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn:hover::before { left: 140%; }
.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform:translateY(-3px) scale(1.03); box-shadow:0 18px 50px rgba(29,110,197,.4); color:#fff; }
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform:translateY(-3px) scale(1.03); box-shadow:0 18px 50px rgba(240,165,0,.5); color:var(--navy); }
.btn-outline { background:transparent; border-color:var(--blue); color:var(--blue); }
.btn-outline:hover { background:var(--blue); color:#fff; transform:translateY(-2px); }
.btn-outline-white { background:transparent; border-color:rgba(255,255,255,.45); color:#fff; }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:#fff; color:#fff; transform:translateY(-2px); }
.btn-sm { padding:9px 22px; font-size:.85rem; }
.btn-lg { padding:18px 44px; font-size:1.05rem; }
.btn-group { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/*  NAVBAR  */
#mainHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all .4s;
}
#mainHeader.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17,17,17,.12);
  padding: 9px 0;
  box-shadow: 0 8px 34px rgba(0,0,0,.14);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0;
  color: var(--navy);
  white-space: nowrap;
}
.navbar .logo {
  height: 78px;
  overflow: hidden;
}
.logo img { height:56px; width:auto; border-radius:6px; }
.navbar .logo img {
  height: 82px;
}
.logo .logo-highlight {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo .logo-highlight { display:none; }
#navMenu { display:flex; align-items:center; }
#navMenu ul { display:flex; align-items:center; gap:2px; list-style:none; }
#navMenu a {
  display:block;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  color: rgba(17,17,17,.78);
  font-weight: 500;
  font-size: .91rem;
  transition: all .25s;
  position: relative;
}
#navMenu a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
#navMenu a:hover::after,
#navMenu a[aria-current="page"]::after { transform: scaleX(1); }
#navMenu a:hover, #navMenu a[aria-current="page"] {
  color: var(--navy);
  background: rgba(17,17,17,.08);
}
.nav-cta {
  background: var(--grad-blue) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-blue);
  margin-left: 6px;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(29,110,197,.5) !important; }
.nav-toggle {
  display: none;
  background: rgba(17,17,17,.08);
  border: 1px solid rgba(17,17,17,.18);
  color: var(--navy);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all .25s;
  z-index: 1001;
  position: relative;
}
.nav-toggle:hover { background:rgba(17,17,17,.14); }
.nav-toggle::before {
  content: '\2630';
  line-height: 1;
}
.nav-close { display:none; }
.nav-close::before {
  content: '\2715';
  line-height: 1;
}

/*  HERO  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, #fff8f8 0%, #fdf5f6 45%, #f4f8ff 100%);
}

.site-leaf-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 6;
}

.site-leaf {
  position: absolute;
  top: -16%;
  width: var(--leaf-size, 34px);
  height: auto;
  opacity: var(--leaf-opacity, .45);
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .16));
  will-change: transform;
  animation: mapleLeafFall var(--leaf-fall-duration, 16s) linear infinite;
  animation-delay: var(--leaf-delay, 0s);
}

.hero::before {
  content: '';
  position: absolute;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  right: -14vw;
  top: -24vw;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(216,41,47,.22), rgba(216,41,47,0) 62%);
  filter: blur(18px);
  opacity: .7;
  z-index: 0;
  animation: auroraShift 13s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .55;
  }
  100% {
    transform: translate3d(-4vw, 3vw, 0) scale(1.08);
    opacity: .78;
  }
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width:100%; height:100%; object-fit:cover; opacity:.06;
}

.parallax-media {
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(var(--parallax-scale, 1.14));
  transition: transform .45s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 78% 58% at 10% 45%, rgba(216,41,47,.07) 0%, transparent 64%),
    radial-gradient(ellipse 62% 52% at 88% 20%, rgba(240,106,111,.05) 0%, transparent 58%),
    radial-gradient(ellipse 52% 66% at 66% 88%, rgba(182,31,36,.04) 0%, transparent 60%);
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
  0%   { transform:translateY(0);    }
  100% { transform:translateY(64px); }
}

.hero-leaf-rain {
  position: absolute;
  inset: -8% 0 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  top: -16%;
  width: var(--leaf-size, 34px);
  height: auto;
  opacity: var(--leaf-opacity, .75);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .2));
  will-change: transform;
  animation: mapleLeafFall var(--leaf-fall-duration, 16s) linear infinite;
  animation-delay: var(--leaf-delay, 0s);
}

@keyframes mapleLeafFall {
  0% {
    transform: translate3d(0, -14vh, 0) rotate(var(--leaf-rotate-start, 0deg)) scale(var(--leaf-scale, 1));
  }
  25% {
    transform: translate3d(calc((var(--leaf-drift, 50px) * .25) - 14px), 24vh, 0) rotate(calc(var(--leaf-rotate-start, 0deg) + 120deg)) scale(var(--leaf-scale, 1));
  }
  50% {
    transform: translate3d(calc((var(--leaf-drift, 50px) * .5) + 10px), 50vh, 0) rotate(calc(var(--leaf-rotate-start, 0deg) + 260deg)) scale(var(--leaf-scale, 1));
  }
  75% {
    transform: translate3d(calc((var(--leaf-drift, 50px) * .75) - 12px), 78vh, 0) rotate(calc(var(--leaf-rotate-start, 0deg) + 380deg)) scale(var(--leaf-scale, 1));
  }
  100% {
    transform: translate3d(var(--leaf-drift, 50px), 114vh, 0) rotate(var(--leaf-rotate-end, 520deg)) scale(var(--leaf-scale, 1));
  }
}

.hero .container { position:relative; z-index:2; width:100%; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  padding: 160px 0 110px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow-line {
  width: 36px; height: 2px;
  background: var(--grad-blue); border-radius:2px;
}
.eyebrow-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-content h1 .h1-accent {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .hero-desc {
  font-size: 1.12rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 510px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(17,17,17,.14);
}
.hero-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat span { font-size:.78rem; color:var(--text-muted); font-weight:500; letter-spacing:.04em; }

.hero .btn-outline-white {
  background: transparent;
  border-color: rgba(17,17,17,.25);
  color: var(--navy);
}

.hero .btn-outline-white:hover {
  background: rgba(17,17,17,.08);
  border-color: rgba(17,17,17,.45);
  color: var(--navy);
}

/* Hero Visual */
.hero-visual { position:relative; }
.hero-img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
  box-shadow: var(--shadow-xl);
  animation: softFloat 7s ease-in-out infinite;
}
.hero-img-card img { width:100%; height:100%; object-fit:cover; }
.hero-img-card::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(11,21,35,.78) 100%);
}
.hero-img-caption {
  position:absolute; bottom:24px; left:24px; right:24px; z-index:2;
  background:rgba(11,21,35,.6);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.hero-img-caption h4 { color:#fff; font-size:.97rem; margin-bottom:4px; }
.hero-img-caption p  { color:rgba(255,255,255,.7); font-size:.83rem; margin:0; }
.hero-float {
  position:absolute;
  border-radius: var(--r-md);
  padding: 14px 18px;
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.18);
}
.hero-float-1 {
  top:-24px; right:-24px;
  background:rgba(29,110,197,.9);
  color:#fff;
  animation:bob1 3.5s ease-in-out infinite;
}
.hero-float-2 {
  bottom:120px; left:-32px;
  background:rgba(240,165,0,.95);
  color:var(--navy);
  animation:bob1 3.5s ease-in-out infinite;
  animation-delay:1.8s;
}
.hero-float strong { display:block; font-size:1.55rem; font-weight:900; line-height:1; }
.hero-float span   { font-size:.73rem; font-weight:600; opacity:.9; }
@keyframes bob1 {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/*  STATS BAND  */
.stats-band {
  background: linear-gradient(160deg, #ffffff 0%, #fbf7f7 55%, #f4f8ff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 50%, rgba(216,41,47,.1) 0%, transparent 70%),
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(240,106,111,.09) 0%, transparent 65%);
}
.stats-grid {
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
}
.stat-item {
  text-align:center;
  padding:38px 20px;
  position:relative;
}
.stat-item+.stat-item::before {
  content:''; position:absolute; left:0; top:25%; height:50%; width:1px;
  background:rgba(17,17,17,.12);
}
.stat-num {
  font-family:'Sora',sans-serif;
  font-size:2.8rem;
  font-weight:900;
  background:var(--grad-blue);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  margin-bottom:8px;
}
.stat-label { font-size:.85rem; color:var(--text-muted); font-weight:500; letter-spacing:.04em; }

/*  SERVICE CARDS  */
.service-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:40px 34px;
  position:relative;
  overflow:hidden;
  transition:all .4s;
  text-decoration:none;
  color:inherit;
  display:block;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:var(--grad-blue);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s;
}
.service-card:hover { transform:translateY(-8px) scale(1.01); box-shadow:var(--shadow-lg); border-color:rgba(29,110,197,.2); color:inherit; }
.service-card:hover::before { transform:scaleX(1); }
.sc-icon {
  width:62px; height:62px;
  border-radius:var(--r-md);
  background:linear-gradient(135deg, rgba(29,110,197,.1), rgba(6,192,216,.1));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  transition:all .3s;
}
.service-card:hover .sc-icon { background:var(--grad-blue); box-shadow:var(--shadow-blue); }
.sc-icon img { height:30px; transition:filter .3s; }
.service-card:hover .sc-icon img { filter:brightness(0) invert(1); }
.service-card h3 { font-size:1.18rem; margin-bottom:12px; color:var(--navy); }
.service-card p  { font-size:.93rem; color:var(--text-muted); line-height:1.75; margin-bottom:22px; }
.sc-link {
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:.88rem; color:var(--blue);
  transition:gap .25s;
}
.service-card:hover .sc-link { gap:12px; }

/*  FEATURE CARDS  */
.features-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.feature-card {
  background:var(--grad-card);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:34px 28px;
  transition:all .35s;
  position:relative;
  overflow:hidden;
}
.feature-card::after {
  content:''; position:absolute; bottom:-60px; right:-60px;
  width:130px; height:130px;
  background:radial-gradient(circle, rgba(29,110,197,.06) 0%, transparent 70%);
  border-radius:50%; transition:all .4s;
}
.feature-card:hover { transform:translateY(-5px) scale(1.01); box-shadow:var(--shadow-md); border-color:rgba(29,110,197,.2); }
.feature-card:hover::after { bottom:-20px; right:-20px; width:200px; height:200px; }
.feat-icon {
  width:50px; height:50px;
  border-radius:var(--r-sm);
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  font-size:1.3rem;
  box-shadow:var(--shadow-blue);
}
.feat-icon img { height:24px; filter:brightness(0) invert(1); }
.feature-card h4 { font-size:1.02rem; margin-bottom:8px; }
.feature-card p  { font-size:.88rem; color:var(--text-muted); margin:0; }

/*  GRID HELPERS  */
.grid   { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

/*  GENERAL CARD  */
.card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r-xl); padding:34px 28px;
  transition:all .35s;
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.card-icon {
  width:56px; height:56px; border-radius:var(--r-md);
  background:linear-gradient(135deg, rgba(29,110,197,.1), rgba(6,192,216,.1));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.card-icon img { height:28px; }
.card-title { font-size:1.05rem; margin-bottom:9px; }
.card-text  { font-size:.91rem; color:var(--text-muted); margin:0; line-height:1.7; }

/*  SPLIT LAYOUT  */
.split-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.split-section.reverse { direction:rtl; }
.split-section.reverse > * { direction:ltr; }
.split-visual { position:relative; }
.split-img-main {
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:4/3;
}
.split-img-main img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.split-visual:hover .split-img-main img { transform:translate3d(0, var(--parallax-offset, 0px), 0) scale(1.16); }
.split-img-main.ceo-portrait {
  aspect-ratio: 3 / 4;
  max-width: 460px;
  margin: 0 auto;
}
.split-img-main.ceo-portrait img { object-position: center top; }
.split-img-accent {
  position:absolute; bottom:-28px; right:-28px;
  width:46%; border-radius:var(--r-lg); overflow:hidden;
  border:5px solid #fff; box-shadow:var(--shadow-md); aspect-ratio:4/3;
}
.split-img-accent img { width:100%; height:100%; object-fit:cover; }
.split-content .badge { margin-bottom:18px; }
.split-content h2 { margin-bottom:16px; }
.split-content p  { margin-bottom:13px; font-size:1.03rem; }
.check-list { margin:22px 0 30px; }
.check-list li {
  display:flex; align-items:flex-start; gap:12px;
  padding:9px 0;
  font-size:.93rem;
  border-bottom:1px solid var(--border);
  color:var(--text-mid);
}
.check-list li:last-child { border:none; }
.check-list li::before {
  content:'';
  flex-shrink:0; width:22px; height:22px; border-radius:50%;
  background:var(--grad-blue); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:900;
  margin-top:1px; box-shadow:var(--shadow-blue);
}

/*  SLIDER  */
.slider-wrap {
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow-xl); position:relative;
  background:var(--navy);
}
.slider { position:relative; overflow:hidden; }
.slides { display:flex; width:100%; transition:transform .6s cubic-bezier(.4,0,.2,1); will-change:transform; }
.slide  { flex:0 0 100%; width:100%; min-width:100%; position:relative; aspect-ratio:16/7; overflow:hidden; }
.slide img { width:100%; height:100%; object-fit:cover; }
.slide-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 20%, rgba(11,21,35,.85) 100%);
  display:flex; align-items:flex-end; padding:48px;
}
.slide-caption { max-width:600px; }
.slide-caption h3 { font-size:1.75rem; color:#fff; margin-bottom:8px; }
.slide-caption p  { color:rgba(255,255,255,.76); font-size:.97rem; margin:0; }
.slider-control {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(11,21,35,.55); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.18); color:#fff;
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; cursor:pointer; transition:all .25s; z-index:5;
}
.slider-control:hover { background:var(--blue); border-color:var(--blue); box-shadow:var(--shadow-blue); }
.slider-control.prev { left:18px; }
.slider-control.next { right:18px; }
.slider-dots { position:absolute; bottom:18px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:5; }
.slider-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); border:none; cursor:pointer; transition:all .3s; }
.slider-dot.active { width:28px; border-radius:9999px; background:var(--blue); }

/*  VIDEO  */
.video-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.video-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:all .35s;
}
.video-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.video-frame { width:100%; aspect-ratio:16/9; border:none; display:block; }
.video-card-body { padding:22px 26px 26px; }
.video-card-body h4 { font-size:1.02rem; margin-bottom:7px; }
.video-card-body p  { font-size:.88rem; color:var(--text-muted); margin:0; }

.video-carousel {
  border-radius: var(--r-xl);
}

.video-carousel .slides {
  align-items: stretch;
}

.video-carousel .slide {
  min-width: 100%;
  aspect-ratio: auto;
  padding: 2px;
}

.video-slide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-carousel .video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #0d1117;
}

.video-carousel .slider-control {
  width: 44px;
  height: 44px;
}

.video-carousel .slider-dots {
  bottom: 12px;
}

.video-carousel .slider-dot {
  background: rgba(255,255,255,.52);
}

/*  GALLERY  */
.section-head.gallery-head p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  grid-template-rows: auto auto;
  gap: 18px;
  align-items: stretch;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(23, 43, 66, .08);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(29,110,197,0) 35%, rgba(29,110,197,.24) 100%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.16); }

.gallery-feature {
  grid-row: 1;
  grid-column: 1;
  aspect-ratio: 16 / 10;
  min-height: 0;
  width: 100%;
  justify-self: start;
}

.gallery-feature .gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(9, 18, 33, .72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #fff;
  max-width: min(86%, 560px);
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.32);
}

.gallery-caption h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.gallery-caption p {
  color: rgba(255,255,255,.84);
  margin: 0;
  font-size: .88rem;
  max-width: 48ch;
}

.gallery-image-focus-mid { object-position: center 52%; }
.gallery-image-focus-top { object-position: center 22%; }

.gallery-rail {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.gallery-rail-item {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-mini-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(9, 18, 33, .58);
  backdrop-filter: blur(4px);
}

.gallery-carousel {
  grid-row: 2;
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-chip {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-chip-copy {
  background: linear-gradient(155deg, #0f1f36 0%, #1d3a61 58%, #174d7f 100%);
  border-color: rgba(29,110,197,.24);
  box-shadow: var(--shadow-md);
}

.gallery-copy-block {
  height: 100%;
  padding: 24px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-copy-block h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.gallery-copy-block p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .86rem;
  line-height: 1.65;
}

/*  TESTIMONIALS  */
.testimonial-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.testimonial-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r-xl); padding:34px;
  transition:all .35s; position:relative; overflow:hidden;
}
.testimonial-card::before {
  content:'"'; position:absolute; top:10px; right:26px;
  font-size:5.5rem; font-family:'Sora',sans-serif; font-weight:900;
  color:var(--blue); opacity:.07; line-height:1;
}
.testimonial-card:hover { transform:translateY(-5px) scale(1.01); box-shadow:var(--shadow-md); border-color:rgba(29,110,197,.18); }
.t-stars { display:flex; gap:3px; margin-bottom:16px; }
.t-stars span { color:var(--gold); font-size:.95rem; }
.t-text { font-size:.97rem; color:var(--text-mid); line-height:1.8; font-style:italic; margin-bottom:22px; }
.t-author { display:flex; align-items:center; gap:14px; }
.t-avatar {
  width:46px; height:46px; border-radius:50%;
  background:var(--grad-blue); display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:800; font-size:1.05rem; flex-shrink:0;
}
.t-info strong { display:block; font-size:.93rem; font-weight:700; color:var(--navy); }
.t-info span   { font-size:.8rem; color:var(--text-muted); }
.t-meta {
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed rgba(29,110,197,.2);
  font-size:.78rem;
  font-weight:700;
  color:var(--blue);
}

/*  PROCESS  */
.process-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative;
}
.process-grid::before {
  content:''; position:absolute; top:36px; left:12%; right:12%; height:2px;
  background:linear-gradient(90deg, var(--blue), var(--cyan)); opacity:.3; z-index:0;
}
.process-step { text-align:center; position:relative; z-index:1; }
.process-num {
  width:72px; height:72px; border-radius:50%;
  background:var(--grad-navy); border:2px solid rgba(29,110,197,.3);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px;
  font-family:'Sora',sans-serif; font-size:1.5rem; font-weight:900; color:var(--blue);
  transition:all .35s cubic-bezier(.34,1.56,.64,1);
}
.process-step:hover .process-num {
  background:var(--grad-blue); color:#fff; border-color:transparent;
  transform:scale(1.12); box-shadow:var(--shadow-blue);
}
.process-step h4 { font-size:.97rem; margin-bottom:7px; }
.process-step p  { font-size:.86rem; color:var(--text-muted); margin:0; }

/*  CTA BAND  */
.cta-band {
  background:var(--grad-navy); position:relative; overflow:hidden;
  text-align:center;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(29,110,197,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6,192,216,.12) 0%, transparent 60%);
}
.cta-band .container { position:relative; z-index:1; }
.cta-band h2 { color:#fff; margin-bottom:14px; }
.cta-band p  { color:rgba(255,255,255,.7); font-size:1.08rem; margin-bottom:30px; max-width:580px; margin-left:auto; margin-right:auto; }

/*  INFO BAND  */
.info-band {
  background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:26px 0;
}
.info-band-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.info-band-item { display:flex; align-items:center; gap:10px; font-size:.88rem; font-weight:600; color:var(--text-mid); }
.info-band-item span { font-size:1.25rem; }
.info-band-item strong { color:var(--navy); }

/*  TRUST BAR  */
.trust-bar {
  padding: 20px 0 34px;
  background: linear-gradient(180deg, #fff 0%, #f4f4f6 100%);
}
.trust-shell {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.trust-layout {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}
.trust-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--grad-navy);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  color: #fff;
  min-height: 100%;
}
.trust-head .badge {
  width: fit-content;
  margin: 0;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.trust-head h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
  color: #fff;
  line-height: 1.35;
}
.trust-head p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.65;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: left;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(216,41,47,.35);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
}
.trust-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.trust-kicker {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: rgba(216,41,47,.12);
  color: var(--blue);
  border: 1px solid rgba(216,41,47,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.trust-item strong {
  display: inline;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 0;
}
.trust-item span {
  display: block;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.55;
  margin: 0;
}
.trust-item-cta {
  background: linear-gradient(160deg, #fff 0%, #fbf7f7 100%);
}
.trust-item a {
  color: var(--navy);
  background: rgba(216,41,47,.1);
  border: 1px solid rgba(216,41,47,.22);
  border-radius: 9999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item a:hover { background: rgba(216,41,47,.16); color: var(--navy); }
.trust-item a::after {
  content: '↗';
  font-size: .85rem;
}

/*  IMAGE BAND  */
.img-band {
  border-radius:var(--r-xl); overflow:hidden;
  aspect-ratio:21/7; box-shadow:var(--shadow-lg);
}
.img-band img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.img-band:hover img { transform:translate3d(0, var(--parallax-offset, 0px), 0) scale(1.14); }

/*  PAGE HERO  */
.page-hero {
  background:linear-gradient(140deg, #fff8f8 0%, #fdf5f6 45%, #f4f8ff 100%);
  padding:156px 0 86px;
  position:relative; overflow:hidden;
  text-align:center;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(216,41,47,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(240,106,111,.05) 0%, transparent 55%);
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(17,17,17,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.03) 1px, transparent 1px);
  background-size:50px 50px;
}
.page-hero .container { position:relative; z-index:2; }
.page-hero .badge { margin-bottom:16px; }
.page-hero h1,
.hero > .container > h1 {
  color: transparent;
  background: linear-gradient(90deg, var(--text-mid) 0 38%, var(--blue) 38% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom:14px;
}
.page-hero p  { color:var(--text-mid); font-size:1.12rem; max-width:600px; margin:0 auto; }

/*  CONTACT  */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; padding:16px 0; border-bottom:1px solid var(--border); }
.contact-detail:last-child { border:none; }
.cdl-icon {
  width:42px; height:42px; border-radius:var(--r-sm);
  background:linear-gradient(135deg, rgba(29,110,197,.1), rgba(6,192,216,.1));
  display:flex; align-items:center; justify-content:center; font-size:1.05rem; flex-shrink:0;
}
.cdl-body strong { display:block; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--text-muted); margin-bottom:3px; }
.cdl-body span, .cdl-body a { font-size:.96rem; color:var(--text-mid); font-weight:500; }
.cdl-body a:hover { color:var(--blue); }
.form-card { background:#fff; border:1px solid var(--border); border-radius:var(--r-xl); padding:42px 38px; box-shadow:var(--shadow-md); }
.form-card h3 { margin-bottom:5px; }
.form-card > p { color:var(--text-muted); margin-bottom:26px; }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-weight:600; font-size:.86rem; margin-bottom:7px; color:var(--navy); }
.form-control {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--border); border-radius:var(--r-md);
  font-family:'Inter',sans-serif; font-size:.93rem; color:var(--text);
  background:#fff; transition:all .25s; outline:none;
}
.form-control:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(29,110,197,.1); }
.form-control::placeholder { color:var(--text-muted); }
textarea.form-control { resize:vertical; min-height:118px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-form-card {
  max-width: 940px;
  margin: 0 auto;
}

.review-success,
.review-error {
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: .9rem;
  border: 1px solid transparent;
}

.review-success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.review-error {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}

.admin-review-shell {
  min-height: 100vh;
}

.admin-page {
  min-height: 100vh;
  background: linear-gradient(130deg, #fff4f5 0%, #f8fbff 52%, #fff8f8 100%);
}

.admin-auth-shell {
  min-height: 100vh;
  padding: 42px 20px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.admin-auth-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 44% at 15% 16%, rgba(216,41,47,.16) 0%, transparent 62%),
    radial-gradient(ellipse 52% 40% at 86% 84%, rgba(182,31,36,.14) 0%, transparent 65%),
    linear-gradient(130deg, #fff4f5 0%, #f8fbff 52%, #fff8f8 100%);
  z-index: 0;
}

.admin-auth-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, #ffffff 0%, #fff8f8 100%);
}

.admin-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 14px 7px 7px;
  background: #fff;
  margin-bottom: 16px;
}

.admin-auth-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.admin-auth-brand strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.2;
}

.admin-auth-brand span {
  display: block;
  color: var(--text-muted);
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-auth-card h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 2.25rem);
}

.admin-auth-card > p {
  margin: 12px 0 20px;
  max-width: 50ch;
}

.admin-login-form .btn {
  margin-top: 4px;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  transition: grid-template-columns .28s var(--ease);
}

.admin-page.admin-sidebar-collapsed .admin-shell {
  grid-template-columns: 0 minmax(0, 1fr);
}

.admin-sidebar {
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  padding: 22px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  transition: transform .28s var(--ease), opacity .25s ease;
}

.admin-page.admin-sidebar-collapsed .admin-sidebar {
  transform: translateX(-100%);
  opacity: 0;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 12px;
  background: #fff;
  margin-bottom: 20px;
}

.admin-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.admin-brand strong {
  display: block;
  color: var(--navy);
  font-size: .94rem;
  line-height: 1.2;
}

.admin-brand span {
  display: block;
  color: var(--text-muted);
  font-size: .77rem;
  margin-top: 2px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  color: var(--text-mid);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 13px;
  background: transparent;
  transition: all .24s;
}

.admin-nav-link em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.admin-nav-link:hover {
  background: #fff;
  border-color: var(--border);
}

.admin-nav-link.active {
  background: linear-gradient(135deg, rgba(216,41,47,.13), rgba(240,106,111,.17));
  border-color: rgba(216,41,47,.32);
  color: var(--navy);
}

.admin-nav-link.is-disabled {
  opacity: .72;
  cursor: default;
  pointer-events: none;
}

.admin-main {
  padding: 22px 22px 26px;
  min-width: 0;
}

.admin-topbar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.admin-topbar-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.admin-sidebar-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .24s;
}

.admin-sidebar-toggle:hover {
  background: var(--surface);
  border-color: rgba(216,41,47,.45);
}

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 19, .45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 40;
  transition: opacity .2s ease;
}

.admin-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  font-size: .72rem;
  color: var(--text-muted);
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.admin-subtitle {
  margin: 7px 0 0;
  color: var(--text-muted);
  max-width: 62ch;
  font-size: .9rem;
}

.admin-profile-wrap {
  position: relative;
}

.admin-profile-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px 6px 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.admin-profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  background: linear-gradient(135deg, #D8292F 0%, #F06A6F 100%);
  color: #fff;
}

.admin-profile-labels {
  display: grid;
  text-align: left;
  line-height: 1.2;
}

.admin-profile-labels strong {
  font-size: .8rem;
  color: var(--navy);
}

.admin-profile-labels small {
  font-size: .72rem;
  color: var(--text-muted);
}

.admin-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 170px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s;
  z-index: 20;
}

.admin-profile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.admin-menu-action {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: left;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
}

.admin-menu-action:hover {
  background: var(--surface);
  border-color: var(--border);
  color: var(--navy);
}

.admin-content {
  margin-top: 18px;
}

.admin-login-card {
  max-width: 540px;
  margin: 0 auto;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-kpi-card {
  background: linear-gradient(150deg, #ffffff 0%, #fff8f8 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-xs);
}

.admin-kpi-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.admin-kpi-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.35rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-section-card {
  background: linear-gradient(160deg, #ffffff 0%, #fff9f9 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-xs);
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-col-title {
  margin: 0;
  font-size: .98rem;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--text-muted);
  font-size: .73rem;
  font-weight: 700;
}

.admin-review-list {
  display: grid;
  gap: 10px;
}

.admin-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px;
}

.admin-review-card.approved {
  background: #f8fafc;
}

.admin-review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 7px;
}

.admin-review-head strong {
  font-size: .93rem;
}

.admin-review-head span {
  color: var(--text-muted);
  font-size: .79rem;
}

.admin-review-meta {
  font-size: .79rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 7px;
}

.admin-review-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: .86rem;
  line-height: 1.58;
}

.admin-review-email {
  margin-top: 8px;
  font-size: .79rem;
  color: var(--text-muted);
}

.admin-review-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.admin-review-actions .btn {
  padding: 9px 14px;
  font-size: .82rem;
}

.admin-empty {
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  color: var(--text-muted);
  font-size: .87rem;
  background: #fff;
}

/*  FAQ  */
.faq-item { border:1px solid var(--border); border-radius:var(--r-md); margin-bottom:10px; overflow:hidden; transition:box-shadow .25s; }
.faq-item:hover { box-shadow:var(--shadow-xs); }
.faq-question {
  width:100%; background:#fff; border:none; padding:20px 22px;
  text-align:left; font-family:'Inter',sans-serif; font-size:.97rem; font-weight:600;
  color:var(--navy); cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  transition:background .2s;
}
.faq-question:hover { background:var(--surface); }
.faq-icon {
  width:26px; height:26px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; flex-shrink:0; transition:all .3s;
  color:var(--blue); font-weight:700;
}
.faq-item.active .faq-icon { background:var(--blue); color:#fff; border-color:var(--blue); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s, padding .3s; background:var(--surface); }
.faq-answer-inner { padding:0 22px; }
.faq-item.active .faq-answer-inner { padding:18px 22px 22px; }

.faq-media {
  margin-top: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.faq-media .video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #0d1117;
}

/*  TEAM  */
.team-card { background:#fff; border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; text-align:center; transition:all .35s; }
.team-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.team-photo { aspect-ratio:5/4; overflow:hidden; }
.team-photo img { width:100%; height:100%; object-fit:cover; object-position:center 18%; transition:transform .5s; }
.team-photo.team-photo-portrait { aspect-ratio:3/4; }
.team-photo.team-photo-portrait img { object-position:center top; }
.team-card:hover .team-photo img { transform:scale(1.06); }
.team-info { padding:26px 22px; }
.team-info h4 { margin-bottom:5px; }
.team-role   { font-size:.83rem; color:var(--blue); font-weight:700; margin-bottom:10px; }
.team-bio    { font-size:.86rem; color:var(--text-muted); line-height:1.65; margin:0; }

/*  BLOG  */
.blog-card { background:#fff; border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; transition:all .35s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.blog-thumb { aspect-ratio:16/9; overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .blog-thumb img { transform:translate3d(0, var(--parallax-offset, 0px), 0) scale(1.16); }
.blog-body { padding:26px 22px; }
.blog-meta { font-size:.78rem; color:var(--text-muted); margin-bottom:9px; }
.blog-body h4 { margin-bottom:9px; }
.blog-body p  { font-size:.88rem; color:var(--text-muted); margin-bottom:14px; }

/*  FOOTER  */
.footer-modern {
  background: #ececec;
  color: #111;
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(0,0,0,.07) 0%, rgba(0,0,0,.06) 30%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.footer-modern-wrap {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 0 46px;
  text-align: center;
}
.footer-modern-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #D8292F;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  line-height: .92;
  text-transform: lowercase;
  margin-bottom: 14px;
}
.footer-modern-logo img {
  width: auto;
  height: 125px;
  object-fit: contain;
  filter: none;
}
.footer-modern-logo span { display:none; }
.footer-modern-title {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(90deg, #ff4f24 0%, #D8292F 55%, #ff8a63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-modern-title + .footer-modern-title { margin-top: 8px; }

.footer-modern-contacts {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-pill {
  min-width: 320px;
  border: 1.4px solid #8b8b9b;
  border-radius: 9999px;
  padding: 17px 24px;
  color: #D8292F;
  font-size: 1rem;
  font-weight: 500;
  background: #efefef;
}
.footer-pill:hover {
  border-color: #D8292F;
  color: #D8292F;
  transform: translateY(-2px);
}

.footer-modern-line {
  margin: 44px auto 14px;
  width: 100%;
  border-top: 1px solid #d6d6d6;
}

.footer-modern-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0 18px;
}
.footer-social-pill {
  background: #dfdfdf;
  border: 1px solid #d8d8d8;
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: .9rem;
  color: #545b6c;
  font-weight: 500;
}
.footer-social-pill:hover {
  color: #D8292F;
  border-color: #D8292F;
  background: #f3f3f3;
  transform: translateY(-2px);
}

.footer-modern-copy {
  margin: 28px 0 0;
  color: #656b7c;
  font-size: .92rem;
  font-weight: 400;
}
.footer-modern-copy a {
  color: #545b6c;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(84,91,108,.3);
}
.footer-modern-copy a:hover {
  color: #D8292F;
  border-bottom-color: rgba(216,41,47,.45);
}

/*  SCROLL REVEAL  */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s, transform .7s; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }
.reveal-d5 { transition-delay:.5s; }

/*  MOTION ACCESSIBILITY  */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .hero-leaf-rain {
    display: none;
  }

  .site-leaf-rain {
    display: none;
  }
}

/*  RESPONSIVE  */
@media (max-width:1100px) {
  .hero-layout { grid-template-columns:1fr; gap:48px; padding-top:130px; }
  .hero-img-card { max-height:400px; aspect-ratio:16/9; }
  .hero-float-1 { top:14px; right:14px; }
  .hero-float-2 { bottom:60px; left:14px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .split-section { grid-template-columns:1fr; gap:48px; direction:ltr; }
  .split-section.reverse { direction:ltr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid::before { display:none; }
  .footer-modern-wrap { max-width: 760px; }
  .contact-grid { grid-template-columns:1fr; gap:44px; }
  .testimonial-grid { grid-template-columns:1fr 1fr; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-feature,
  .gallery-rail,
  .gallery-carousel {
    grid-column: 1;
    grid-row: auto;
  }
  .gallery-feature { aspect-ratio: 16 / 10; min-height: 0; }
  .gallery-rail {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: 1fr;
  }
  .gallery-rail-item { aspect-ratio: 4 / 3; min-height: 0; }
}
@media (max-width:768px) {
  .section { padding:68px 0; }
  body { font-size: 15px; }
  header { padding: 10px 0; }
  .home-gallery-section { display: none; }
  .home-about-section .split-visual { display: none; }
  .logo { font-size: 0; gap: 0; }
  .navbar .logo { height: 54px; }
  .logo img { height: 56px; }
  .navbar .logo img { height: 78px; margin-top: -12px; }
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: .98rem; }
  .section-head.gallery-head p {
    font-size: 1rem;
    line-height: 1.68;
    max-width: 46ch;
  }
  .nav-toggle { display:flex; }
  .nav-toggle, .nav-close { align-items:center; justify-content:center; }
  #navMenu {
    position:fixed; top:0; left:0; width:100%; height:100vh;
    background:rgba(255,255,255,.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:center; justify-content:center; gap:6px;
    transform:translateX(-100%); transition:transform .4s; z-index:999;
  }
  #navMenu.open { transform:translateX(0); }
  #navMenu ul { flex-direction:column; align-items:center; gap:4px; }
  #navMenu a { font-size:1.1rem; padding:12px 20px; width:min(88vw,360px); text-align:center; }
  .nav-close { display:block; position:absolute; top:22px; right:22px; background:none; border:none; color:rgba(17,17,17,.65); font-size:1.8rem; cursor:pointer; }
  .hero-content .hero-desc { font-size: 1rem; max-width: none; }
  .hero-leaf-rain { display: none; }
  .site-leaf-rain { display: none; }
  .hero-stats { justify-content: space-between; gap: 14px; }
  .hero-stat { min-width: 96px; }
  .hero-stat strong { font-size: 1.75rem; }
  .service-card, .feature-card, .testimonial-card, .card { padding: 26px 20px; }
  .service-grid, .features-grid, .grid, .grid-2, .grid-4, .video-grid, .testimonial-grid { grid-template-columns:1fr; }
  .admin-auth-shell {
    padding: 20px 12px;
  }
  .admin-auth-card {
    width: 100%;
    padding: 22px 18px;
  }
  .admin-auth-brand {
    width: 100%;
    justify-content: flex-start;
  }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 60;
    width: min(86vw, 290px);
    height: 100vh;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 14px;
    transform: translateX(-100%);
    opacity: 0;
  }
  .admin-page:not(.admin-sidebar-collapsed) .admin-sidebar {
    transform: translateX(0);
    opacity: 1;
  }
  .admin-page:not(.admin-sidebar-collapsed) .admin-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .admin-nav { grid-template-columns: 1fr; }
  .admin-main { padding: 12px; }
  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }
  .admin-topbar-left {
    align-items: center;
  }
  .admin-subtitle {
    max-width: none;
  }
  .admin-profile-wrap { align-self: flex-start; }
  .admin-kpi-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns:1fr; }
  .video-card-body {
    padding: 18px 16px 20px;
  }
  .video-card-body h4 {
    font-size: .98rem;
  }
  .video-card-body p {
    font-size: .84rem;
    line-height: 1.6;
  }
  .video-carousel .slider-control {
    width: 40px;
    height: 40px;
    font-size: .92rem;
  }
  .video-carousel .slider-control.prev { left: 10px; }
  .video-carousel .slider-control.next { right: 10px; }
  .video-carousel .slider-dots {
    bottom: 8px;
    gap: 6px;
  }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item+.stat-item::before { display:none; }
  .process-grid { grid-template-columns:1fr; }
  .page-hero { padding: 132px 0 72px; }
  .page-hero p { font-size: 1rem; }
  .slide { aspect-ratio: 16 / 11; }
  .footer-modern-wrap { padding: 64px 0 40px; }
  .footer-pill { min-width: 100%; }
  .footer-modern-line { margin-top: 34px; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
  .gallery-showcase { gap: 14px; }
  .gallery-feature {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .gallery-feature .gallery-caption { left: 10px; right: 10px; bottom: 10px; padding: 12px 12px; }
  .gallery-caption h3 { font-size: 1rem; }
  .gallery-caption p { font-size: .8rem; line-height: 1.45; }
  .gallery-tag { padding: 5px 8px; font-size: .62rem; margin-bottom: 8px; }
  .gallery-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 4px;
  }
  .gallery-rail::-webkit-scrollbar { height: 6px; }
  .gallery-rail::-webkit-scrollbar-thumb { background: rgba(17,17,17,.2); border-radius: 9999px; }
  .gallery-rail-item {
    aspect-ratio: auto;
    height: 188px;
    min-width: min(62vw, 240px);
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
  .gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 4px;
  }
  .gallery-carousel::-webkit-scrollbar { height: 6px; }
  .gallery-carousel::-webkit-scrollbar-thumb { background: rgba(17,17,17,.2); border-radius: 9999px; }
  .gallery-chip {
    aspect-ratio: auto;
    height: 188px;
    min-width: min(62vw, 240px);
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
  .info-band-inner { flex-direction:column; align-items:flex-start; gap: 10px; }
  .btn-group { flex-direction:column; align-items:stretch; }
  .btn-group .btn { text-align:center; justify-content:center; }
  .slide-caption h3 { font-size:1.3rem; }
  .slide-caption p { font-size: .9rem; }
  .slide-overlay { padding:20px; }
  .split-img-accent { display:none; }
  .form-card { padding:26px 18px; }

  .quick-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1300;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid #e4e4e8;
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
    backdrop-filter: blur(8px);
  }

  body { padding-bottom: 72px; }
}
@media (max-width:480px) {
  .container { padding:0 16px; }
  .gallery-rail-item,
  .gallery-chip {
    height: 172px;
    min-width: min(66vw, 220px);
  }
  .logo {
    font-size: 0;
    max-width: calc(100vw - 130px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .navbar .logo { height: 48px; }
  .logo img { height: 52px; }
  .navbar .logo img { height: 68px; margin-top: -10px; }
  .btn {
    padding: 12px 18px;
    white-space: normal;
    line-height: 1.35;
  }
  .hero-layout { padding-top:105px; padding-bottom:60px; }
  .hero-float { display:none; }
  .stat-num { font-size:2.2rem; }
  .footer-modern-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .footer-modern-contacts { margin-top: 28px; }
  .footer-pill { padding: 14px 16px; font-size: .94rem; }
}

@media (max-width:600px) {
  .section { padding: 54px 0; }
  .section-sm { padding: 42px 0; }
  .section-lg { padding: 70px 0; }

  .badge {
    font-size: .68rem;
    padding: 5px 12px;
    letter-spacing: .05em;
  }

  .hero {
    min-height: auto;
  }
  .hero-layout {
    gap: 28px;
    padding-top: 88px;
    padding-bottom: 40px;
  }
  .hero-content h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); margin-bottom: 14px; }
  .hero-content .hero-desc { margin-bottom: 20px; line-height: 1.65; }
  .hero-stats {
    margin-top: 22px;
    padding-top: 18px;
    gap: 12px;
  }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span { font-size: .7rem; }

  .page-hero {
    padding: 108px 0 56px;
  }
  .page-hero h1 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    margin-bottom: 10px;
  }

  .section-head { margin-bottom: 30px; }
  .section-head h2 { margin-bottom: 10px; }
  .section-head p { font-size: .92rem; }

  .grid,
  .grid-2,
  .grid-4,
  .service-grid,
  .features-grid,
  .testimonial-grid,
  .video-grid {
    gap: 14px;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .card,
  .video-card-body,
  .blog-body,
  .team-info {
    padding: 18px 16px;
  }

  .split-section { gap: 26px; }
  .split-content p { font-size: .94rem; margin-bottom: 10px; }
  .check-list { margin: 14px 0 20px; }
  .check-list li { padding: 7px 0; font-size: .86rem; }

  .process-num {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .process-step h4 { font-size: .9rem; }
  .process-step p { font-size: .8rem; }

  .stat-item { padding: 22px 10px; }
  .stat-num { font-size: 1.8rem; margin-bottom: 5px; }
  .stat-label { font-size: .75rem; }

  .t-text { font-size: .88rem; margin-bottom: 16px; }
  .t-avatar { width: 38px; height: 38px; font-size: .9rem; }

  .btn,
  .btn-lg,
  .btn-sm {
    width: 100%;
    font-size: .9rem;
    padding: 11px 14px;
  }
  .btn-group { gap: 10px; }

  .info-band { padding: 14px 0; }
  .info-band-item { font-size: .8rem; gap: 8px; }
  .info-band-item span { font-size: 1rem; }
  .trust-shell { padding: 16px; }
  .trust-head { padding: 18px 16px; }
  .trust-head { margin-bottom: 14px; }
  .trust-head h3 { font-size: 1rem; line-height: 1.35; }
  .trust-head p { font-size: .84rem; }
  .trust-grid { grid-template-columns:1fr; }

  .slide-overlay { padding: 14px; }
  .slide-caption h3 { font-size: 1.05rem; margin-bottom: 4px; }
  .slide-caption p { font-size: .82rem; }
  .slider-control { width: 38px; height: 38px; }

  .footer-modern-wrap { padding: 46px 0 30px; }
  .footer-modern-social { gap: 7px; }
  .footer-social-pill { padding: 7px 11px; font-size: .8rem; }
  .footer-modern-copy { margin-top: 18px; font-size: .82rem; }
}

/*  THEME: DARK MODE  */
[data-theme="dark"] {
  --navy:        #05070b;
  --navy-mid:    #0d1320;
  --navy-soft:   #161f30;
  --blue:        #ff4b55;
  --blue-light:  #ff6b73;
  --cyan:        #ff5c66;
  --gold:        #ff6b73;
  --gold-light:  #ff9298;
  --white:       #0e1522;
  --off-white:   #0a111d;
  --surface:     #121b2a;
  --border:      #273247;
  --text:        #f2f6ff;
  --text-mid:    #d7deee;
  --text-muted:  #a7b2c8;
  --grad-navy:   linear-gradient(135deg, #05070b 0%, #121a29 100%);
  --grad-card:   linear-gradient(145deg, #111a29 0%, #0b1220 100%);
  --shadow-xs:   0 2px 8px rgba(0,0,0,.35);
  --shadow-sm:   0 4px 16px rgba(0,0,0,.4);
  --shadow-md:   0 10px 32px rgba(0,0,0,.45);
  --shadow-lg:   0 20px 52px rgba(0,0,0,.55);
  --shadow-xl:   0 32px 80px rgba(0,0,0,.62);
  --primary-color: var(--off-white);
  --secondary-color: #0a111d;
  --accent-color: var(--blue);
}

[data-theme="dark"] body {
  background: var(--off-white);
  color: var(--text);
}

[data-theme="dark"] .bg-white {
  background: linear-gradient(180deg, #0e1624 0%, #0b1220 100%);
}

[data-theme="dark"] .bg-soft {
  background: linear-gradient(180deg, #101a2a 0%, #0d1625 100%);
}

[data-theme="dark"] .bg-soft::before {
  background:
    radial-gradient(ellipse 60% 40% at 14% 22%, rgba(255, 75, 85, .12) 0%, transparent 68%),
    radial-gradient(ellipse 48% 35% at 88% 78%, rgba(255, 107, 115, .1) 0%, transparent 70%);
}

[data-theme="dark"] #mainHeader.scrolled {
  background: rgba(11,21,35,.93);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 32px rgba(0,0,0,.28);
}

[data-theme="dark"] .logo {
  color: #fff;
}

[data-theme="dark"] #navMenu a {
  color: rgba(255,255,255,.8);
}

[data-theme="dark"] #navMenu a:hover,
[data-theme="dark"] #navMenu a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.1);
}

[data-theme="dark"] .nav-toggle {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

[data-theme="dark"] .nav-toggle:hover {
  background: rgba(255,255,255,.2);
}

@media (max-width:768px) {
  [data-theme="dark"] #navMenu {
    background: rgba(11,21,35,.97);
  }

  [data-theme="dark"] .nav-close {
    color: rgba(255,255,255,.65);
  }
}

[data-theme="dark"] .hero {
  background: var(--navy);
}

[data-theme="dark"] .hero-bg-img img {
  opacity: .14;
}

[data-theme="dark"] .hero-glow {
  background:
    radial-gradient(ellipse 80% 60% at 8% 45%, rgba(29,110,197,.25) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 90% 20%, rgba(6,192,216,.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 65% 90%, rgba(29,110,197,.14) 0%, transparent 55%);
}

[data-theme="dark"] .hero-stats {
  border-top: 1px solid rgba(255,255,255,.1);
}

[data-theme="dark"] .hero-stat span {
  color: rgba(255,255,255,.5);
}

[data-theme="dark"] .hero .btn-outline-white {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

[data-theme="dark"] .hero .btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

[data-theme="dark"] .page-hero {
  background: var(--grad-navy);
}

[data-theme="dark"] .page-hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(29,110,197,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(6,192,216,.14) 0%, transparent 50%);
}

[data-theme="dark"] .page-hero h1,
[data-theme="dark"] .hero > .container > h1 {
  background: linear-gradient(90deg, #ffffff 0 34%, var(--blue-light) 34% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--text);
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] label,
[data-theme="dark"] .section-head p,
[data-theme="dark"] .card-text,
[data-theme="dark"] .team-bio,
[data-theme="dark"] .faq-answer-inner p {
  color: var(--text-mid);
}

[data-theme="dark"] .section-head .badge {
  border-color: rgba(255, 255, 255, .2);
}

[data-theme="dark"] .form-label,
[data-theme="dark"] .t-info strong,
[data-theme="dark"] .info-band-item strong,
[data-theme="dark"] .btn-gold,
[data-theme="dark"] .btn-gold:hover {
  color: var(--text);
}

[data-theme="dark"] .video-card,
[data-theme="dark"] .testimonial-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .stats-band {
  background: var(--grad-navy);
}

[data-theme="dark"] .stats-band::before {
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(29,110,197,.12) 0%, transparent 70%);
}

[data-theme="dark"] .stats-band .stat-item {
  background: transparent;
  border-color: transparent;
}

[data-theme="dark"] .stats-band .stat-item + .stat-item::before {
  background: rgba(255,255,255,.1);
}

[data-theme="dark"] .stats-band .stat-label {
  color: rgba(255,255,255,.5);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .card,
[data-theme="dark"] .form-card,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .team-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .stat-item,
[data-theme="dark"] .contact-detail,
[data-theme="dark"] .info-pill {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .process-step {
  background: transparent;
  border-color: transparent;
}

[data-theme="dark"] .process-grid::before {
  opacity: .2;
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .team-info h4,
[data-theme="dark"] .blog-body h4,
[data-theme="dark"] .feature-card h4,
[data-theme="dark"] .process-step h4 {
  color: var(--text);
}

[data-theme="dark"] .service-card .sc-icon img {
  filter: brightness(0) invert(1);
}



[data-theme="dark"] .faq-question {
  color: var(--text);
}

[data-theme="dark"] .faq-media {
  border-color: var(--border);
  background: var(--surface);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] select.form-control,
[data-theme="dark"] textarea.form-control,
[data-theme="dark"] input.form-control {
  background: #0a111d;
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .form-control::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .review-success {
  background: rgba(16, 185, 129, .13);
  border-color: rgba(16, 185, 129, .35);
  color: #8df3cf;
}

[data-theme="dark"] .review-error {
  background: rgba(244, 63, 94, .14);
  border-color: rgba(244, 63, 94, .35);
  color: #ffb7c6;
}

[data-theme="dark"] .admin-review-card,
[data-theme="dark"] .admin-empty {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .admin-page {
  background: linear-gradient(130deg, #090f1a 0%, #0d1421 56%, #12101a 100%);
}

[data-theme="dark"] .admin-auth-bg {
  background:
    radial-gradient(ellipse 68% 44% at 15% 16%, rgba(255, 75, 85, .18) 0%, transparent 62%),
    radial-gradient(ellipse 52% 40% at 86% 84%, rgba(255, 107, 115, .16) 0%, transparent 65%),
    linear-gradient(130deg, #090f1a 0%, #0d1421 56%, #12101a 100%);
}

[data-theme="dark"] .admin-sidebar,
[data-theme="dark"] .admin-topbar,
[data-theme="dark"] .admin-auth-card,
[data-theme="dark"] .admin-auth-brand,
[data-theme="dark"] .admin-brand,
[data-theme="dark"] .admin-kpi-card,
[data-theme="dark"] .admin-section-card,
[data-theme="dark"] .admin-profile-btn,
[data-theme="dark"] .admin-profile-menu,
[data-theme="dark"] .admin-review-card.approved {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .admin-nav-link {
  color: var(--text-mid);
}

[data-theme="dark"] .admin-nav-link.active {
  background: linear-gradient(135deg, rgba(255, 75, 85, .24), rgba(255, 107, 115, .22));
  border-color: rgba(255, 107, 115, .42);
  color: var(--text);
}

[data-theme="dark"] .admin-nav-link:hover,
[data-theme="dark"] .admin-menu-action:hover {
  background: #0f1828;
  border-color: var(--border);
}

[data-theme="dark"] .admin-sidebar-toggle {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

[data-theme="dark"] .admin-sidebar-toggle:hover {
  background: #0f1828;
}

[data-theme="dark"] .admin-brand strong,
[data-theme="dark"] .admin-auth-brand strong,
[data-theme="dark"] .admin-auth-card h1,
[data-theme="dark"] .admin-topbar h1,
[data-theme="dark"] .admin-profile-labels strong,
[data-theme="dark"] .admin-kpi-card strong,
[data-theme="dark"] .admin-col-title {
  color: var(--text);
}

[data-theme="dark"] .admin-subtitle,
[data-theme="dark"] .admin-auth-brand span,
[data-theme="dark"] .admin-auth-card > p,
[data-theme="dark"] .admin-kicker,
[data-theme="dark"] .admin-chip,
[data-theme="dark"] .admin-profile-labels small,
[data-theme="dark"] .admin-menu-action {
  color: var(--text-muted);
}

[data-theme="dark"] .video-frame {
  background: #000;
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .video-slide-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .video-carousel .slider-dot {
  background: rgba(255,255,255,.36);
}

[data-theme="dark"] .video-carousel .slider-dot.active {
  background: var(--blue);
}

[data-theme="dark"] .video-card-body h4 {
  color: var(--text);
}

[data-theme="dark"] .video-card-body p,
[data-theme="dark"] .t-text,
[data-theme="dark"] .t-info span {
  color: var(--text-mid);
}

[data-theme="dark"] .t-stars span {
  color: var(--gold-light);
}

[data-theme="dark"] .t-meta {
  color: var(--blue-light);
  border-top-color: rgba(255, 107, 115, .35);
}

[data-theme="dark"] .testimonial-card::before {
  color: var(--text-muted);
  opacity: .16;
}

[data-theme="dark"] .split-img-accent,
[data-theme="dark"] .split-img-main,
[data-theme="dark"] .hero-img-card {
  border-color: var(--border);
}

[data-theme="dark"] .gallery-item,
[data-theme="dark"] .gallery-chip-copy {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .gallery-item::after {
  background: linear-gradient(145deg, rgba(255, 75, 85, 0) 35%, rgba(255, 107, 115, .24) 100%);
}

[data-theme="dark"] .gallery-mini-caption {
  background: rgba(7, 13, 24, .7);
  border-color: rgba(255,255,255,.2);
}

[data-theme="dark"] .trust-bar {
  background: linear-gradient(180deg, #0b1220 0%, #0f1828 100%);
}

[data-theme="dark"] .trust-shell {
  background: linear-gradient(145deg, #111a29 0%, #0b1220 100%);
}

[data-theme="dark"] .trust-item {
  background: #0a111d;
}

[data-theme="dark"] .footer-modern {
  background: #0a111d;
  color: var(--text-mid);
}

[data-theme="dark"] .footer-modern::before {
  background: radial-gradient(circle at center, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 35%, transparent 72%);
  opacity: .16;
}

[data-theme="dark"] .footer-modern-logo {
  color: var(--blue-light);
}

[data-theme="dark"] .footer-modern-title {
  background: linear-gradient(90deg, #ff8f97 0%, #ff5f69 55%, #ffb0b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .footer-pill {
  background: #10192a;
  border-color: #2a3650;
  color: var(--text-mid);
}

[data-theme="dark"] .footer-pill:hover {
  background: #152136;
  border-color: var(--blue);
  color: #fff;
}

[data-theme="dark"] .footer-modern-line {
  border-top-color: #26324a;
}

[data-theme="dark"] .footer-social-pill {
  background: #10192a;
  border-color: #2a3650;
  color: var(--text-mid);
}

[data-theme="dark"] .footer-social-pill:hover {
  background: #152136;
  border-color: var(--blue);
}

[data-theme="dark"] .footer-modern-copy {
  color: var(--text-muted);
}

[data-theme="dark"] .footer-modern-copy a {
  color: var(--text-mid);
  border-bottom-color: rgba(215,222,238,.35);
}

[data-theme="dark"] .trust-item strong,
[data-theme="dark"] .trust-item a,
[data-theme="dark"] .footer-modern,
[data-theme="dark"] .footer-modern a {
  color: var(--text-mid);
}

[data-theme="dark"] .trust-item a:hover {
  color: #fff;
}

[data-theme="dark"] .footer-modern a:hover,
[data-theme="dark"] .footer-bottom a:hover {
  color: #fff;
}

[data-theme="dark"] .footer-bottom p,
[data-theme="dark"] .footer-bottom a {
  color: var(--text-muted);
}

[data-theme="dark"] .hero-grid-overlay,
[data-theme="dark"] .page-hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}

[data-theme="dark"] .social-link,
[data-theme="dark"] .footer-social-pill,
[data-theme="dark"] .footer-pill {
  border-color: var(--border);
  color: var(--text-mid);
}

[data-theme="dark"] .social-link:hover,
[data-theme="dark"] .footer-social-pill:hover,
[data-theme="dark"] .footer-pill:hover {
  color: #fff;
}

/*  THEME TOGGLE  */
.theme-switcher {
  appearance: none;
  border: 1px solid rgba(17,17,17,.24);
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  padding: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  margin-left: 10px;
  box-shadow: var(--shadow-xs);
}

.theme-switcher:hover {
  background: #fff;
  transform: translateY(-1px) scale(1.03);
}

.theme-switcher:focus-visible {
  outline: 2px solid rgba(17,17,17,.75);
  outline-offset: 2px;
}

.theme-switcher ion-icon,
.theme-switcher-icon {
  font-size: 1.1rem;
  color: rgba(17,17,17,.86);
  transition: transform .25s ease, color .25s ease;
}

.theme-switcher:hover ion-icon,
.theme-switcher:hover .theme-switcher-icon {
  transform: rotate(15deg);
}

[data-theme="dark"] .theme-switcher {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

[data-theme="dark"] .theme-switcher:hover {
  background: rgba(255,255,255,.16);
}

[data-theme="dark"] .theme-switcher:focus-visible {
  outline: 2px solid rgba(255,255,255,.85);
}

[data-theme="dark"] .theme-switcher ion-icon,
[data-theme="dark"] .theme-switcher-icon {
  color: rgba(255,255,255,.92);
}

html,
body {
  transition: background-color .3s ease, color .3s ease;
}
