﻿/* ============================================================
   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=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@400;600;700;800&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);
}

/*  RESET & BASE  */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: 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: 'Sora', 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; }

/*  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  */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: all .4s;
}
header.scrolled {
  background: rgba(11,21,35,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 9px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.28);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
}
.logo img { height:34px; border-radius:6px; }
.logo .logo-highlight {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#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(255,255,255,.8);
  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: #fff;
  background: rgba(255,255,255,.1);
}
.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(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  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(255,255,255,.2); }
.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: var(--navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width:100%; height:100%; object-fit:cover; opacity:.14;
}
.hero-glow {
  position: absolute;
  inset: 0;
  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%);
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 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 .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(--cyan);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  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: rgba(255,255,255,.7);
  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(255,255,255,.1);
}
.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:rgba(255,255,255,.5); font-weight:500; letter-spacing:.04em; }

/* 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:100px; 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: var(--grad-navy);
  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(29,110,197,.12) 0%, transparent 70%);
}
.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(255,255,255,.1);
}
.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:rgba(255,255,255,.5); 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:scale(1.04); }
.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; transition:transform .6s cubic-bezier(.4,0,.2,1); will-change:transform; }
.slide  { min-width:100%; position:relative; aspect-ratio:16/7; }
.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; }

/*  GALLERY  */
.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:14px; }
.gallery-item { border-radius:var(--r-lg); overflow:hidden; position:relative; aspect-ratio:4/3; }
.gallery-item.large  { grid-column:span 7; }
.gallery-item.medium { grid-column:span 5; }
.gallery-item.third  { grid-column:span 4; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(29,110,197,0), rgba(29,110,197,.25));
  opacity:0; transition:opacity .35s;
}
.gallery-item:hover::after { opacity:1; }

/*  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); }

/*  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); }

/*  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:scale(1.03); }

/*  PAGE HERO  */
.page-hero {
  background:var(--grad-navy);
  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(29,110,197,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(6,192,216,.14) 0%, transparent 50%);
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:50px 50px;
}
.page-hero .container { position:relative; z-index:2; }
.page-hero .badge { margin-bottom:16px; }
.page-hero h1 { color:#fff; margin-bottom:14px; }
.page-hero p  { color:rgba(255,255,255,.7); 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; }

/*  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 { max-height:500px; }
.faq-item.active .faq-answer-inner { padding:18px 22px 22px; }

/*  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:4/3; overflow:hidden; }
.team-photo img { width:100%; height:100%; object-fit:cover; 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:scale(1.06); }
.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: 14px;
  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: 66px;
  height: 66px;
  object-fit: contain;
  filter: saturate(130%) hue-rotate(-8deg);
}
.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: #4b4f62;
  font-size: 1rem;
  font-weight: 500;
}

/*  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;
  }
}

/*  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; }
}
@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: 1rem; gap: 8px; }
  .logo img { height: 30px; }
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: .98rem; }
  .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(11,21,35,.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(255,255,255,.65); font-size:1.8rem; cursor:pointer; }
  .hero-content .hero-desc { font-size: 1rem; max-width: 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-4, .video-grid, .testimonial-grid { grid-template-columns:1fr; }
  .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-item.large, .gallery-item.medium, .gallery-item.third { grid-column:span 12; }
  .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; }
}
@media (max-width:480px) {
  .container { padding:0 16px; }
  .logo {
    font-size: .92rem;
    max-width: calc(100vw - 130px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .logo img { height: 26px; }
  .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; }

  .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: .86rem; }
}
