:root{
  --bg:#07101e;
  --bg-2:#0b1730;
  --bg-3:#0f1e3c;
  --surface:#ffffff;
  --surface-soft:#f5f7fb;
  --text:#f7f9fc;
  --ink:#0c1424;
  --muted:rgba(247,249,252,.72);
  --muted-dark:rgba(12,20,36,.68);
  --blue:#5f8dff;
  --blue-2:#9bb8ff;
  --green:#00d19a;
  --green-2:#00a77d;
  --stroke:rgba(255,255,255,.12);
  --stroke-dark:rgba(12,20,36,.08);
  --shadow:0 28px 80px rgba(4,12,28,.20);
  --shadow-soft:0 18px 48px rgba(7,18,42,.10);
  --radius:28px;
  --container:min(1220px, calc(100vw - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope',sans-serif;
  color:var(--text);
  background:#07101e;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.container{width:var(--container);margin:0 auto}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  pointer-events:none;
}
.nav-shell{
  pointer-events:auto;
  position:relative;
  width:min(1280px, calc(100vw - 20px));
  margin:10px auto 0;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.095);
  backdrop-filter:blur(24px) saturate(170%);
  -webkit-backdrop-filter:blur(24px) saturate(170%);
  box-shadow:0 14px 38px rgba(0,0,0,.18);
  transition:background .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.nav-shell-highlight{
  position:absolute;
  top:0;
  left:7%;
  width:42%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
  opacity:.8;
  pointer-events:none;
}
.nav-shell.light-mode{
  background:rgba(255,255,255,.72);
  border-color:rgba(12,20,36,.08);
  box-shadow:0 16px 40px rgba(8,18,40,.12);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.96);
  display:grid;
  place-items:center;
  padding:6px;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  overflow:hidden;
  flex:0 0 auto;
}
.brand-logo img{width:100%;height:100%;object-fit:contain}
.brand-copy strong{
  display:block;
  color:#eef3ff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  transition:color .3s ease;
}
.brand-copy span{
  display:block;
  color:rgba(238,243,255,.68);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-top:2px;
  transition:color .3s ease;
}
.nav-shell.light-mode .brand-copy strong{color:#273349}
.nav-shell.light-mode .brand-copy span{color:rgba(39,51,73,.68)}
.nav-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-wrap:wrap;
}
.nav-menu a{
  padding:9px 11px;
  border-radius:999px;
  color:#f8fbff;
  font-size:12px;
  font-weight:800;
  transition:transform .22s ease,background .22s ease,color .22s ease;
}
.nav-menu a:hover{transform:translateY(-1px);background:rgba(255,255,255,.12)}
.nav-shell.light-mode .nav-menu a{color:#17243d}
.nav-shell.light-mode .nav-menu a:hover{background:rgba(95,141,255,.10);color:#3f6ff0}
.nav-menu .nav-cta{
  background:linear-gradient(135deg,var(--blue),#7ea1ff);
  color:#fff!important;
  box-shadow:0 10px 22px rgba(95,141,255,.26);
}
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  border-radius:13px;
  background:rgba(255,255,255,.10);
  color:#fff;
}
.nav-shell.light-mode .nav-toggle{background:rgba(95,141,255,.10);color:#17243d}

.hero{
  position:relative;
  min-height:100svh;
  padding:150px 0 92px;
  overflow:hidden;
}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.04);
  filter:saturate(1.02) contrast(1.04);
  will-change:transform;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 76% 30%,rgba(95,141,255,.22),transparent 24%),
    linear-gradient(90deg,rgba(4,10,22,.86) 0%,rgba(6,15,31,.76) 45%,rgba(7,16,33,.58) 100%),
    linear-gradient(180deg,rgba(3,8,20,.16),rgba(5,13,29,.86));
}
.hero-grid{
  position:relative;
  z-index:2;
  width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.08fr .72fr;
  gap:52px;
  align-items:end;
}
.hero-kicker,.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero-kicker{
  padding:10px 15px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.07);
}
.hero-kicker::before,.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
  opacity:.65;
}
.hero-title{
  margin:20px 0 18px;
  max-width:980px;
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,7.6vw,96px);
  line-height:.92;
  letter-spacing:-.04em;
}
.hero-title span{display:block;color:#bcd0ff}
.hero-subtitle{
  max-width:720px;
  margin:0 0 26px;
  color:rgba(255,255,255,.76);
  font-size:clamp(17px,1.9vw,21px);
  line-height:1.72;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  font-size:15px;
  transition:transform .24s ease,box-shadow .24s ease,background .24s ease,border-color .24s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-evaluate{
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  box-shadow:0 16px 34px rgba(0,209,154,.26);
}
.btn-evaluate:hover{box-shadow:0 22px 42px rgba(0,209,154,.34)}
.btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.btn-secondary:hover{background:rgba(255,255,255,.12)}
.hero-trustline{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:18px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  font-weight:700;
}
.hero-trustline i{color:#9fc1ff;margin-right:5px}
.hero-right{display:grid;gap:16px}
.hero-focus-card{
  padding:28px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.hero-focus-label{
  display:block;
  color:#9fb9ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-focus-card strong{
  display:block;
  margin-top:12px;
  font-family:'Playfair Display',serif;
  font-size:32px;
  line-height:1.06;
}
.hero-focus-card p{
  margin:12px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.75;
}
.hero-stat-real{
  display:flex;
  align-items:end;
  gap:14px;
  padding:20px 24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}
.hero-stat-value{
  font-size:48px;
  line-height:.92;
  font-weight:800;
}
.hero-stat-copy{
  color:rgba(255,255,255,.68);
  font-size:14px;
  padding-bottom:5px;
}
.hero-bottom-glow{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:min(980px,88vw);
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(95,141,255,.28),transparent 70%);
  filter:blur(20px);
  pointer-events:none;
}
.hero-bottom-fade{
  position:absolute;
  left:0;right:0;bottom:-1px;height:170px;
  background:linear-gradient(180deg,transparent,#0b1730);
  pointer-events:none;
}

.section{position:relative;padding:92px 0}
.section-head{
  display:grid;
  grid-template-columns:1fr .76fr;
  gap:28px;
  align-items:end;
  margin-bottom:34px;
}
.section-head.compact{margin-bottom:30px}
.section-title{
  margin:12px 0 0;
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,5vw,62px);
  line-height:1;
  letter-spacing:-.035em;
}
.section-copy{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.8;
}
.eyebrow{color:#9fb9ff}
.section-light{color:var(--ink)}
.section-light .section-copy{color:var(--muted-dark)}

.services-stage{
  background:
    radial-gradient(circle at 10% 0,rgba(95,141,255,.13),transparent 24%),
    linear-gradient(180deg,#0b1730,#0a1428);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.service-card{
  position:relative;
  min-height:300px;
  padding:30px;
  border-radius:32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 100% 0,rgba(95,141,255,.14),transparent 32%),
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
  box-shadow:0 20px 58px rgba(0,0,0,.16);
  transition:transform .32s cubic-bezier(.22,1,.36,1),box-shadow .32s ease,border-color .32s ease;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -50% 20%;
  height:180px;
  background:radial-gradient(circle,rgba(95,141,255,.18),transparent 68%);
  opacity:.6;
  transition:transform .4s ease,opacity .4s ease;
}
.service-card:hover{
  transform:translateY(-9px);
  border-color:rgba(155,184,255,.28);
  box-shadow:0 34px 78px rgba(0,0,0,.24);
}
.service-card:hover::after{transform:translateY(-20px);opacity:1}
.service-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
  z-index:1;
}
.service-label{
  color:#9fb9ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.service-icon{
  width:58px;
  height:58px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(95,141,255,.96),rgba(155,184,255,.72));
  box-shadow:0 12px 26px rgba(95,141,255,.24);
  font-size:21px;
}
.service-card-body{position:relative;z-index:1;margin-top:42px}
.service-card h3{
  margin:0 0 10px;
  font-family:'Playfair Display',serif;
  font-size:34px;
  line-height:1.02;
}
.service-card p{
  margin:0;
  max-width:560px;
  color:rgba(255,255,255,.70);
  line-height:1.8;
}
.service-link{
  position:relative;
  z-index:1;
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:13px;
  font-weight:800;
}
.service-link i{transition:transform .24s ease}
.service-card:hover .service-link i{transform:translateX(5px)}

.strategy-roadmap{
  background:#f4f7fc;
  color:var(--ink);
}
.strategy-intro{
  max-width:850px;
  margin-bottom:48px;
}
.strategy-intro .eyebrow{color:var(--blue)}
.strategy-intro h2{
  margin:14px 0 12px;
  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5.4vw,66px);
  line-height:.98;
  letter-spacing:-.04em;
}
.strategy-intro p{
  margin:0;
  color:var(--muted-dark);
  font-size:17px;
  line-height:1.8;
}
.roadmap{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.roadmap-line{
  position:absolute;
  left:8%;
  right:8%;
  top:48px;
  height:2px;
  background:rgba(95,141,255,.13);
  overflow:hidden;
}
.roadmap-line span{
  display:block;
  width:100%;
  height:100%;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--blue),var(--blue-2));
  transition:transform 1.3s cubic-bezier(.22,1,.36,1) .2s;
}
.strategy-roadmap:has(.roadmap-step.in) .roadmap-line span{transform:scaleX(1)}
.roadmap-step{
  position:relative;
  z-index:1;
  padding:0 18px 24px;
}
.roadmap-number{
  width:96px;
  height:96px;
  border-radius:30px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  background:#fff;
  border:1px solid rgba(12,20,36,.08);
  box-shadow:0 18px 42px rgba(12,20,36,.10);
  color:#335ed4;
  font-family:'Playfair Display',serif;
  font-size:40px;
  font-weight:800;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease,color .3s ease;
}
.roadmap-step:hover .roadmap-number{
  transform:translateY(-6px) rotate(-2deg);
  background:linear-gradient(135deg,var(--blue),#7fa3ff);
  color:#fff;
  box-shadow:0 24px 54px rgba(95,141,255,.26);
}
.roadmap-step h3{
  margin:0 0 8px;
  font-size:23px;
}
.roadmap-step p{
  margin:0;
  color:var(--muted-dark);
  line-height:1.75;
  font-size:15px;
}

.leadership-cinematic{
  position:relative;
  min-height:760px;
  overflow:hidden;
  display:flex;
  align-items:end;
}
.leadership-bg{position:absolute;inset:0}
.leadership-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 22%;
}
.leadership-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,12,25,.92) 0%,rgba(7,16,32,.66) 46%,rgba(7,16,32,.14) 78%,rgba(7,16,32,.08) 100%),
    linear-gradient(180deg,rgba(5,12,25,.05),rgba(5,12,25,.62));
}
.leadership-content-wrap{
  position:relative;
  z-index:2;
  width:var(--container);
  padding-bottom:72px;
}
.leadership-copy{
  max-width:650px;
}
.leadership-copy h2{
  margin:15px 0 18px;
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,5.7vw,72px);
  line-height:.96;
  letter-spacing:-.04em;
}
.leadership-copy p{
  margin:0 0 20px;
  color:rgba(255,255,255,.78);
  line-height:1.8;
  font-size:17px;
}
.text-link,.blog-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  transition:gap .22s ease,color .22s ease;
}
.text-link{color:#c4d4ff}
.text-link:hover,.blog-link:hover{gap:15px}

.reviews-stage{
  background:#f7f9fc;
  color:var(--ink);
}
.reviews-stage .eyebrow{color:var(--blue)}
.reviews-stage .section-copy{color:var(--muted-dark)}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.review-card{
  position:relative;
  min-height:340px;
  padding:28px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(12,20,36,.07);
  box-shadow:0 18px 50px rgba(12,20,36,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .28s ease,box-shadow .28s ease;
}
.review-card:hover{transform:translateY(-6px);box-shadow:0 28px 64px rgba(12,20,36,.12)}
.review-mark{
  position:absolute;
  top:18px;
  right:24px;
  color:rgba(95,141,255,.16);
  font-family:'Playfair Display',serif;
  font-size:100px;
  line-height:1;
}
.review-card p{
  position:relative;
  z-index:1;
  margin:0;
  color:rgba(12,20,36,.76);
  line-height:1.85;
  font-size:15px;
}
.review-author{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(12,20,36,.08);
}
.review-author strong{display:block}
.review-author span{
  display:block;
  margin-top:5px;
  color:rgba(12,20,36,.52);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.seys-stage{
  background:
    radial-gradient(circle at 15% 10%,rgba(95,141,255,.14),transparent 24%),
    linear-gradient(135deg,#08142d,#0e2044 68%,#102753);
}
.seys-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:42px;
  align-items:center;
}
.seys-copy h2{
  margin:15px 0 16px;
  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5vw,64px);
  line-height:.98;
  letter-spacing:-.04em;
}
.seys-copy p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.85;
  font-size:17px;
}
.seys-signals{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.seys-signals span{
  padding:11px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
}
.seys-signals i{color:#9fb9ff;margin-right:5px}
.seys-visual{
  padding:20px;
  border-radius:32px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.seys-chart{
  position:relative;
  min-height:420px;
  padding:28px;
  border-radius:24px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.025)),
    #08162f;
}
.seys-chart-grid{
  position:absolute;
  inset:28px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg,#000,transparent);
}
.seys-chart svg{
  position:absolute;
  inset:34px 28px 54px;
  width:calc(100% - 56px);
  height:calc(100% - 88px);
  overflow:visible;
}
.seys-area{
  fill:url(#seysArea);
  opacity:0;
  transition:opacity .9s ease .4s;
}
.seys-path{
  fill:none;
  stroke:url(#seysLine);
  stroke-width:6;
  stroke-linecap:round;
  stroke-dasharray:900;
  stroke-dashoffset:900;
  filter:drop-shadow(0 0 12px rgba(95,141,255,.35));
  transition:stroke-dashoffset 1.65s cubic-bezier(.22,1,.36,1);
}
.seys-points circle{
  fill:#b9ceff;
  stroke:#fff;
  stroke-width:3;
  opacity:0;
  transform-box:fill-box;
  transform-origin:center;
  transform:scale(.2);
  transition:opacity .3s ease,transform .4s cubic-bezier(.22,1,.36,1);
}
.seys-visual.chart-active .seys-path{stroke-dashoffset:0}
.seys-visual.chart-active .seys-area{opacity:1}
.seys-visual.chart-active .seys-points circle{opacity:1;transform:scale(1)}
.seys-visual.chart-active .seys-points circle:nth-child(2){transition-delay:.35s}
.seys-visual.chart-active .seys-points circle:nth-child(3){transition-delay:.7s}
.seys-visual.chart-active .seys-points circle:nth-child(4){transition-delay:1.1s}
.seys-chart-labels{
  position:absolute;
  left:34px;
  right:34px;
  bottom:20px;
  display:flex;
  justify-content:space-between;
  color:rgba(255,255,255,.46);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.architecture-stage{
  background:
    radial-gradient(circle at 50% 44%,rgba(95,141,255,.10),transparent 24%),
    linear-gradient(180deg,#07101e,#09162e);
  overflow:hidden;
}
.architecture-head{
  max-width:880px;
  margin:0 auto 28px;
  text-align:center;
}
.architecture-head .eyebrow{justify-content:center}
.architecture-head .eyebrow::before{display:none}
.architecture-head h2{
  margin:14px 0 12px;
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,6vw,76px);
  line-height:.95;
  letter-spacing:-.04em;
}
.architecture-head p{
  margin:0 auto;
  max-width:700px;
  color:rgba(255,255,255,.66);
  line-height:1.8;
}
.architecture-system{
  position:relative;
  width:min(760px,82vw);
  aspect-ratio:1/1;
  margin:20px auto 0;
}
.architecture-orbit{
  position:absolute;
  inset:50%;
  border:1px solid rgba(155,184,255,.16);
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.orbit-one{width:44%;height:44%;box-shadow:0 0 80px rgba(95,141,255,.08)}
.orbit-two{width:68%;height:68%}
.orbit-three{width:91%;height:91%}
.architecture-core{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:210px;height:210px;
  border-radius:50%;
  display:grid;
  place-items:center;
  align-content:center;
  background:
    radial-gradient(circle at 35% 30%,rgba(255,255,255,.22),transparent 22%),
    radial-gradient(circle at 50% 50%,#183873,#0a1a38 68%,#07101e 100%);
  border:1px solid rgba(155,184,255,.30);
  box-shadow:
    0 0 0 18px rgba(95,141,255,.035),
    0 0 90px rgba(95,141,255,.22),
    inset 0 0 36px rgba(155,184,255,.12);
  z-index:4;
}
.architecture-core span{
  color:#a9c0ff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.architecture-core strong{
  margin-top:8px;
  font-family:'Playfair Display',serif;
  font-size:30px;
}
.architecture-node{
  position:absolute;
  width:126px;
  height:126px;
  border-radius:50%;
  display:grid;
  place-items:center;
  align-content:center;
  gap:8px;
  color:#fff;
  background:rgba(10,28,59,.88);
  border:1px solid rgba(155,184,255,.20);
  box-shadow:0 16px 42px rgba(0,0,0,.22);
  z-index:5;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.architecture-node i{font-size:22px;color:#9fb9ff}
.node-analysis{left:50%;top:2%;transform:translateX(-50%);animation:floatA 7s ease-in-out infinite}
.node-strategy{right:1%;top:50%;transform:translateY(-50%);animation:floatB 8s ease-in-out infinite}
.node-prevention{left:50%;bottom:2%;transform:translateX(-50%);animation:floatC 7.4s ease-in-out infinite}
.node-execution{left:1%;top:50%;transform:translateY(-50%);animation:floatD 8.2s ease-in-out infinite}
@keyframes floatA{0%,100%{margin-top:0}50%{margin-top:12px}}
@keyframes floatB{0%,100%{margin-right:0}50%{margin-right:12px}}
@keyframes floatC{0%,100%{margin-bottom:0}50%{margin-bottom:12px}}
@keyframes floatD{0%,100%{margin-left:0}50%{margin-left:12px}}
.architecture-system::before,
.architecture-system::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  border-radius:50%;
  border:1px solid rgba(155,184,255,.10);
  transform-origin:center;
  pointer-events:none;
}
.architecture-system::before{
  width:74%;height:42%;
  transform:translate(-50%,-50%) rotate(32deg);
  animation:orbitalTilt 18s linear infinite;
}
.architecture-system::after{
  width:42%;height:74%;
  transform:translate(-50%,-50%) rotate(-32deg);
  animation:orbitalTiltReverse 22s linear infinite;
}
@keyframes orbitalTilt{
  from{transform:translate(-50%,-50%) rotate(32deg)}
  to{transform:translate(-50%,-50%) rotate(392deg)}
}
@keyframes orbitalTiltReverse{
  from{transform:translate(-50%,-50%) rotate(-32deg)}
  to{transform:translate(-50%,-50%) rotate(-392deg)}
}
.architecture-close{
  margin:4px auto 0;
  max-width:760px;
  text-align:center;
  color:rgba(255,255,255,.78);
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,3vw,36px);
  line-height:1.2;
}

.insights-stage{
  background:#f7f9fc;
  color:var(--ink);
}
.insights-stage .eyebrow{color:var(--blue)}
.blog-link{color:#315fd7;justify-self:end}
.insights-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
}
.insight-featured{
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(12,20,36,.07);
  box-shadow:0 20px 58px rgba(12,20,36,.09);
  transition:transform .28s ease,box-shadow .28s ease;
}
.insight-featured:hover{transform:translateY(-6px);box-shadow:0 30px 70px rgba(12,20,36,.13)}
.insight-featured-media{
  aspect-ratio:16/9;
  padding:14px;
  background:#eef2f7;
}
.insight-featured-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 16px 34px rgba(12,20,36,.15);
}
.insight-featured-body{padding:24px 26px 28px}
.insight-date{
  display:block;
  color:rgba(12,20,36,.46);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.insight-featured h3{
  margin:0 0 10px;
  font-family:'Playfair Display',serif;
  font-size:34px;
  line-height:1.05;
}
.insight-featured p{
  margin:0;
  color:var(--muted-dark);
  line-height:1.75;
}
.insight-read{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:18px;
  color:#315fd7;
  font-weight:800;
  font-size:13px;
}
.insight-recent{display:grid;gap:14px}
.insight-recent-card{
  display:grid;
  grid-template-columns:118px 1fr;
  gap:16px;
  align-items:center;
  padding:13px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(12,20,36,.07);
  box-shadow:0 16px 44px rgba(12,20,36,.07);
  transition:transform .25s ease,box-shadow .25s ease;
}
.insight-recent-card:hover{transform:translateY(-4px);box-shadow:0 24px 54px rgba(12,20,36,.11)}
.insight-recent-thumb{
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:18px;
  background:#eef2f7;
  padding:6px;
}
.insight-recent-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
}
.insight-recent-card h3{
  margin:0 0 6px;
  font-size:17px;
  line-height:1.18;
}
.insight-recent-card p{
  margin:0;
  color:var(--muted-dark);
  line-height:1.65;
  font-size:13px;
}
.insights-empty{
  padding:28px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(12,20,36,.08);
  text-align:center;
  color:var(--muted-dark);
}

.final-cta{
  padding:0 0 26px;
  background:#f7f9fc;
}
.final-cta-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  padding:34px;
  border-radius:32px;
  color:#fff;
  background:
    radial-gradient(circle at 88% 18%,rgba(95,141,255,.24),transparent 25%),
    linear-gradient(135deg,#0b1730,#10224b);
  box-shadow:0 24px 64px rgba(8,18,40,.18);
}
.final-cta-card h2{
  margin:12px 0 0;
  max-width:840px;
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,4vw,50px);
  line-height:1.02;
}

.contact{
  background:#eef3fb;
  color:var(--ink);
}
.contact-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:22px;
}
.contact-info,.contact-form-wrap{
  padding:32px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(12,20,36,.07);
  box-shadow:0 18px 50px rgba(12,20,36,.08);
}
.contact-info .eyebrow{color:var(--blue)}
.contact-title{
  margin:14px 0 12px;
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,4.8vw,58px);
  line-height:.98;
}
.contact-text{
  margin:0 0 24px;
  color:var(--muted-dark);
  line-height:1.8;
}
.contact-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:13px;
}
.contact-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#152038;
  line-height:1.6;
}
.contact-list i{
  width:40px;
  height:40px;
  flex:0 0 auto;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),#7da0ff);
}
.contact-form{display:grid;gap:15px}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{display:grid;gap:8px}
.field label,.captcha-label{
  color:#24324b;
  font-size:12px;
  font-weight:800;
}
.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  border:1px solid rgba(12,20,36,.12);
  background:#f8faff;
  color:#0c1424;
  border-radius:16px;
  padding:15px 16px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-color:var(--blue);
  background:#fff;
  box-shadow:0 0 0 4px rgba(95,141,255,.10);
}
.contact-form textarea{min-height:150px;resize:vertical}
.captcha-wrap{display:grid;gap:8px}
.captcha-row{
  display:grid;
  grid-template-columns:1fr 150px;
  gap:12px;
}
.captcha-box{
  min-height:52px;
  padding:0 16px;
  display:flex;
  align-items:center;
  border-radius:16px;
  background:rgba(95,141,255,.08);
  border:1px solid rgba(95,141,255,.12);
  color:#1b2945;
  font-weight:800;
}
.hp-field{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
}
.submit-btn{
  min-height:56px;
  border:0;
  border-radius:999px;
  padding:0 26px;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 28px rgba(0,209,154,.22);
  transition:transform .22s ease,box-shadow .22s ease;
}
.submit-btn:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(0,209,154,.30)}
.form-note{
  margin:0;
  color:rgba(12,20,36,.56);
  font-size:12px;
  line-height:1.7;
}
.contact-status{
  padding:14px 16px;
  border-radius:16px;
  font-size:13px;
  font-weight:700;
  line-height:1.6;
}
.contact-status.success{background:rgba(0,209,154,.10);border:1px solid rgba(0,209,154,.22);color:#08795e}
.contact-status.error{background:rgba(230,66,66,.08);border:1px solid rgba(230,66,66,.16);color:#a33434}

.footer{
  background:#07101e;
  color:#fff;
  padding:78px 0 38px;
}
.footer-grid{
  display:grid;
  grid-template-columns:.95fr .8fr 1fr;
  gap:20px;
}
.footer-card{
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}
.footer-brand{text-align:center}
.footer-brand h3{
  margin:0;
  font-family:'Playfair Display',serif;
  font-size:24px;
}
.footer-brand p{margin:7px 0 0}
.footer-logo{
  width:210px;
  margin:18px auto 24px;
}
.footer h3{
  margin:0 0 15px;
  font-family:'Playfair Display',serif;
}
.footer p,.footer li,.footer a{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.75;
}
.footer-contact,.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.footer-contact li{display:flex;gap:11px;align-items:flex-start}
.footer-contact i{
  width:36px;height:36px;flex:0 0 auto;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),#7da0ff);
  color:#fff;
}
.footer-links a{display:inline-block;transition:transform .2s ease,color .2s ease}
.footer-links a:hover{transform:translateX(3px);color:#9fb9ff}
.footer-company-title{margin-top:24px!important}
.footer-map iframe{
  width:100%;
  min-height:310px;
  border:0;
  border-radius:20px;
}
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:rgba(255,255,255,.46);
  font-size:12px;
}

.mobile-contact-bar{display:none}

.reveal{
  opacity:0;
  transform:translateY(28px);
  filter:blur(5px);
  transition:
    opacity .82s cubic-bezier(.22,1,.36,1),
    transform .82s cubic-bezier(.22,1,.36,1),
    filter .82s cubic-bezier(.22,1,.36,1);
}
.reveal-left{transform:translateX(-28px)}
.reveal-right{transform:translateX(28px)}
.reveal.in{opacity:1;transform:none;filter:none}
.stagger-1{transition-delay:.03s}
.stagger-2{transition-delay:.09s}
.stagger-3{transition-delay:.15s}
.stagger-4{transition-delay:.21s}

@media (max-width:1100px){
  .hero-grid,
  .section-head,
  .seys-grid,
  .insights-layout,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .hero-right{max-width:760px}
  .section-head{gap:12px}
  .blog-link{justify-self:start}
  .reviews-grid{grid-template-columns:1fr 1fr}
  .roadmap{grid-template-columns:repeat(2,1fr)}
  .roadmap-line{display:none}
  .final-cta-card{grid-template-columns:1fr}
}

@media (max-width:860px){
  .nav-toggle{display:grid;place-items:center}
  .nav-menu{
    position:absolute;
    top:64px;
    left:10px;
    right:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border-radius:22px;
    background:rgba(8,18,39,.94);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 48px rgba(0,0,0,.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  .nav-shell.light-mode .nav-menu{
    background:rgba(255,255,255,.96);
    border-color:rgba(12,20,36,.08);
  }
  .nav-menu.open{display:flex}
  .nav-menu a{
    padding:12px 14px;
    text-align:center;
    font-size:14px;
  }

  .hero{
    min-height:auto;
    padding:124px 0 72px;
  }
  .hero-grid{gap:30px}
  .hero-title{font-size:clamp(42px,11vw,70px)}
  .hero-right{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }
  .hero-focus-card,.hero-stat-real{height:100%}
  .hero-stat-real{
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
  }

  .section{padding:72px 0}
  .service-grid,
  .reviews-grid{grid-template-columns:1fr}
  .service-card{
    min-height:260px;
    -webkit-tap-highlight-color:transparent;
  }
  .service-card:active{
    transform:scale(.985);
    border-color:rgba(155,184,255,.30);
  }

  .roadmap{grid-template-columns:1fr}
  .roadmap-step{
    display:grid;
    grid-template-columns:88px 1fr;
    gap:18px;
    align-items:start;
    padding:0;
  }
  .roadmap-number{
    width:82px;height:82px;
    margin:0;
    border-radius:25px;
    font-size:34px;
  }

  .leadership-cinematic{
    min-height:680px;
    align-items:end;
  }
  .leadership-bg img{
    object-position:62% center;
  }
  .leadership-overlay{
    background:
      linear-gradient(180deg,rgba(5,12,25,.05) 0%,rgba(5,12,25,.22) 40%,rgba(5,12,25,.94) 78%,#07101e 100%);
  }
  .leadership-copy{
    max-width:none;
    text-align:center;
  }
  .leadership-copy .eyebrow{justify-content:center}
  .leadership-copy .eyebrow::before{display:none}

  .seys-grid{gap:30px}
  .seys-copy{text-align:center}
  .seys-copy .eyebrow{justify-content:center}
  .seys-copy .eyebrow::before{display:none}
  .seys-signals{justify-content:center}
  .seys-chart{min-height:360px}

  .architecture-system{
    width:min(640px,94vw);
  }
  .architecture-core{
    width:170px;height:170px;
  }
  .architecture-core strong{font-size:25px}
  .architecture-node{
    width:106px;height:106px;
    font-size:10px;
  }

  .insight-recent-card{grid-template-columns:104px 1fr}
  .form-row{grid-template-columns:1fr}

  .mobile-contact-bar{
    display:grid;
    grid-template-columns:.78fr 1.22fr;
    gap:8px;
    position:fixed;
    left:10px;
    right:10px;
    bottom:max(10px,env(safe-area-inset-bottom));
    z-index:1250;
    padding:8px;
    border-radius:22px;
    background:rgba(8,18,39,.92);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 18px 42px rgba(0,0,0,.25);
  }
  .mobile-contact-bar a{
    min-height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    font-size:12px;
    font-weight:800;
  }
  .mobile-contact-bar a:first-child{background:rgba(255,255,255,.07)}
  .mobile-contact-primary{background:linear-gradient(135deg,var(--green),var(--green-2))}
  .footer{padding-bottom:110px}
}

@media (max-width:620px){
  :root{--container:min(100% - 28px,1220px)}
  .nav-shell{
    width:calc(100vw - 14px);
    margin-top:7px;
    padding:7px 9px;
  }
  .brand-copy span{display:none}
  .brand-copy strong{font-size:11px}

  .hero{
    padding-top:108px;
  }
  .hero-grid{text-align:center}
  .hero-kicker{justify-content:center}
  .hero-title{
    margin-left:auto;
    margin-right:auto;
    font-size:clamp(38px,12vw,58px);
    line-height:.96;
  }
  .hero-subtitle{
    margin-left:auto;
    margin-right:auto;
    font-size:16px;
    line-height:1.65;
  }
  .hero-actions{justify-content:center}
  .btn{width:100%}
  .hero-trustline{
    justify-content:center;
    gap:8px 12px;
    font-size:11px;
  }
  .hero-right{
    grid-template-columns:1fr;
    text-align:left;
  }
  .hero-focus-card{padding:22px}
  .hero-focus-card strong{font-size:28px}
  .hero-stat-real{
    flex-direction:row;
    align-items:end;
  }
  .hero-stat-value{font-size:40px}

  .section{padding:62px 0}
  .section-title{font-size:clamp(34px,10vw,48px)}
  .section-copy{font-size:15px}
  .service-card{
    min-height:230px;
    padding:24px;
    border-radius:26px;
  }
  .service-card-body{margin-top:30px}
  .service-card h3{font-size:30px}
  .service-card p{font-size:14px}
  .service-icon{width:52px;height:52px;border-radius:17px}

  .strategy-intro{
    text-align:center;
    margin-bottom:36px;
  }
  .strategy-intro .eyebrow{justify-content:center}
  .strategy-intro .eyebrow::before{display:none}
  .strategy-intro h2{font-size:clamp(38px,11vw,52px)}
  .strategy-intro p{font-size:15px}
  .roadmap-step{
    grid-template-columns:72px 1fr;
    gap:15px;
    text-align:left;
  }
  .roadmap-number{
    width:68px;height:68px;
    border-radius:20px;
    font-size:28px;
  }
  .roadmap-step h3{font-size:20px}
  .roadmap-step p{font-size:14px}

  .leadership-cinematic{min-height:620px}
  .leadership-content-wrap{padding-bottom:46px}
  .leadership-copy h2{font-size:clamp(40px,12vw,54px)}
  .leadership-copy p{font-size:15px;line-height:1.7}

  .review-card{
    min-height:auto;
    padding:24px;
  }
  .review-card p{font-size:14px}

  .seys-copy h2{font-size:clamp(38px,11vw,52px)}
  .seys-copy p{font-size:15px}
  .seys-signals{
    display:grid;
    grid-template-columns:1fr;
  }
  .seys-visual{padding:10px;border-radius:24px}
  .seys-chart{
    min-height:310px;
    padding:18px;
    border-radius:18px;
  }
  .seys-chart svg{
    inset:24px 16px 52px;
    width:calc(100% - 32px);
    height:calc(100% - 76px);
  }
  .seys-chart-grid{inset:18px;background-size:36px 36px}
  .seys-chart-labels{
    left:18px;right:18px;
    gap:8px;
    font-size:9px;
  }

  .architecture-head h2{font-size:clamp(40px,12vw,54px)}
  .architecture-head p{font-size:14px}
  .architecture-system{
    width:100%;
    aspect-ratio:auto;
    min-height:520px;
    margin-top:6px;
  }
  .architecture-orbit{
    display:none;
  }
  .architecture-system::before,
  .architecture-system::after{
    width:84%;
    height:42%;
    opacity:.8;
  }
  .architecture-core{
    width:154px;height:154px;
  }
  .architecture-core strong{font-size:22px}
  .architecture-node{
    width:94px;height:94px;
    font-size:9px;
  }
  .node-analysis{top:2%}
  .node-strategy{right:0}
  .node-prevention{bottom:2%}
  .node-execution{left:0}
  .architecture-close{
    font-size:26px;
    margin-top:0;
  }

  .insights-layout{gap:14px}
  .insight-featured{border-radius:26px}
  .insight-featured-media{padding:10px}
  .insight-featured-media img{border-radius:18px}
  .insight-featured-body{padding:20px}
  .insight-featured h3{font-size:28px}
  .insight-featured p{font-size:14px}
  .insight-recent-card{
    grid-template-columns:88px 1fr;
    gap:12px;
    padding:10px;
  }
  .insight-recent-card h3{font-size:15px}
  .insight-recent-card p{display:none}

  .final-cta-card{
    padding:26px;
    text-align:center;
  }
  .final-cta-card .eyebrow{justify-content:center}
  .final-cta-card .eyebrow::before{display:none}
  .final-cta-card h2{font-size:34px}

  .contact-info,.contact-form-wrap{padding:24px}
  .contact-title{font-size:42px}
  .captcha-row{grid-template-columns:1fr}
  .captcha-row input{min-height:50px}

  .footer-card{padding:24px}
  .footer-map iframe{min-height:260px}
}

@media (max-width:420px){
  .hero-stat-real{
    justify-content:center;
    text-align:left;
  }
  .service-card h3{font-size:27px}
  .architecture-system{min-height:480px}
  .architecture-node{width:86px;height:86px}
  .architecture-core{width:142px;height:142px}
  .mobile-contact-bar{
    left:8px;
    right:8px;
    bottom:max(8px,env(safe-area-inset-bottom));
  }
  .mobile-contact-bar a{font-size:11px}
}

@media (hover:none){
  .service-card:hover,
  .review-card:hover,
  .insight-featured:hover,
  .insight-recent-card:hover,
  .roadmap-step:hover .roadmap-number{
    transform:none;
  }
  .roadmap-step:hover .roadmap-number{
    background:#fff;
    color:#335ed4;
    box-shadow:0 18px 42px rgba(12,20,36,.10);
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
  .reveal,
  .reveal-left,
  .reveal-right{
    opacity:1!important;
    transform:none!important;
    filter:none!important;
  }
  .seys-path{stroke-dashoffset:0!important}
  .seys-area{opacity:1!important}
  .seys-points circle{opacity:1!important;transform:scale(1)!important}
  .hero-bg img{transform:scale(1.02)!important}
  .architecture-system::before,
  .architecture-system::after,
  .architecture-node{
    animation:none!important;
  }
}


/* PREMIUM REFINEMENT — visual depth, interaction and authority */
.hero-stats-premium{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;width:100%;margin-top:18px}
.hero-stats-premium .hero-stat-real{position:relative;overflow:hidden;min-width:0;padding:18px 16px;border:1px solid rgba(255,255,255,.12);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.035));box-shadow:inset 0 1px rgba(255,255,255,.10),0 18px 45px rgba(0,0,0,.18);transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .35s,box-shadow .35s}
.hero-stats-premium .hero-stat-real::before{content:"";position:absolute;inset:-60% 55% -60% -25%;transform:rotate(18deg) translateX(-130%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);transition:transform .65s ease}
.hero-stats-premium .hero-stat-real:hover{transform:translateY(-6px);border-color:rgba(159,185,255,.38);box-shadow:0 24px 55px rgba(0,0,0,.25),0 0 35px rgba(95,141,255,.10)}
.hero-stats-premium .hero-stat-real:hover::before{transform:rotate(18deg) translateX(250%)}
.hero-stats-premium .hero-stat-value{display:block;font-family:'Playfair Display',serif;font-size:clamp(31px,3.2vw,48px);line-height:1;color:#fff}
.hero-stats-premium .hero-stat-copy{display:block;margin-top:8px;color:rgba(255,255,255,.62);font-size:10px;line-height:1.35;text-transform:uppercase;letter-spacing:.10em}

.service-card{isolation:isolate;perspective:900px;min-height:330px;border-color:rgba(255,255,255,.13);box-shadow:0 24px 70px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.09)}
.service-card::before{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(115deg,transparent 20%,rgba(255,255,255,.09) 43%,transparent 62%);transform:translateX(-120%);transition:transform .75s cubic-bezier(.2,.8,.2,1)}
.service-card:hover{transform:translateY(-13px) scale(1.018);border-color:rgba(159,185,255,.46);box-shadow:0 42px 95px rgba(0,0,0,.34),0 0 0 1px rgba(95,141,255,.08),0 0 48px rgba(95,141,255,.12)}
.service-card:hover::before{transform:translateX(120%)}
.service-card:hover .service-icon{transform:translateY(-4px) rotate(-5deg) scale(1.08);box-shadow:0 18px 38px rgba(95,141,255,.38),0 0 28px rgba(95,141,255,.18)}
.service-card:hover h3{transform:translateX(5px);text-shadow:0 0 28px rgba(159,185,255,.15)}
.service-icon,.service-card h3{transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s,text-shadow .35s}
.service-link{padding-top:18px;border-top:1px solid rgba(255,255,255,.09)}
.service-card:hover .service-link i{transform:translateX(9px)}

.btn-profile{display:inline-flex!important;align-items:center;gap:10px;width:max-content;margin-top:22px;padding:14px 20px;border-radius:999px;color:#07101e!important;background:#fff;font-size:13px;font-weight:850;box-shadow:0 14px 34px rgba(0,0,0,.22);transition:transform .28s ease,box-shadow .28s ease,background .28s ease}
.btn-profile:hover{transform:translateY(-4px);background:#eef4ff;box-shadow:0 22px 50px rgba(0,0,0,.30),0 0 30px rgba(159,185,255,.14)}

.reviews-grid{gap:22px;align-items:stretch}
.review-card{overflow:hidden;isolation:isolate;border-radius:34px;border:1px solid rgba(12,20,36,.08);background:linear-gradient(145deg,#fff,#f6f8fc);box-shadow:0 22px 55px rgba(12,20,36,.09);transition:transform .4s cubic-bezier(.2,.8,.2,1),box-shadow .4s,border-color .4s}
.review-card:nth-child(2){transform:translateY(28px);background:linear-gradient(155deg,#0c1931,#101f3d);border-color:rgba(95,141,255,.22);box-shadow:0 30px 75px rgba(7,16,30,.24)}
.review-card:nth-child(2) p,.review-card:nth-child(2) .review-author strong{color:#fff}
.review-card:nth-child(2) .review-author span{color:rgba(255,255,255,.55)}
.review-card:nth-child(2) .review-author{border-color:rgba(255,255,255,.12)}
.review-card::before{content:"";position:absolute;width:190px;height:190px;border-radius:50%;right:-90px;bottom:-100px;background:radial-gradient(circle,rgba(95,141,255,.20),transparent 68%);transition:transform .45s ease}
.review-card:hover{transform:translateY(-12px) rotate(-.35deg);border-color:rgba(95,141,255,.25);box-shadow:0 38px 85px rgba(12,20,36,.16)}
.review-card:nth-child(2):hover{transform:translateY(15px) scale(1.025) rotate(.3deg)}
.review-card:hover::before{transform:scale(1.35)}
.review-card:hover .review-mark{transform:rotate(-8deg) scale(1.12);color:rgba(95,141,255,.27)}
.review-mark{transition:transform .4s ease,color .4s ease}

.atom-dots{position:absolute;left:50%;top:50%;z-index:3;pointer-events:none;border-radius:50%}
.atom-dots-a{width:78%;height:45%;transform:translate(-50%,-50%) rotate(24deg);animation:atomSpinA 16s linear infinite}
.atom-dots-b{width:48%;height:82%;transform:translate(-50%,-50%) rotate(-38deg);animation:atomSpinB 21s linear infinite}
.atom-dots i{position:absolute;width:7px;height:7px;border-radius:50%;background:#b8caff;box-shadow:0 0 9px #8eafff,0 0 22px rgba(95,141,255,.75)}
.atom-dots i:nth-child(1){left:0;top:50%}.atom-dots i:nth-child(2){right:0;top:50%}.atom-dots i:nth-child(3){left:50%;top:0}.atom-dots i:nth-child(4){left:50%;bottom:0}
@keyframes atomSpinA{from{transform:translate(-50%,-50%) rotate(24deg)}to{transform:translate(-50%,-50%) rotate(384deg)}}
@keyframes atomSpinB{from{transform:translate(-50%,-50%) rotate(-38deg)}to{transform:translate(-50%,-50%) rotate(-398deg)}}

.footer-company-title{margin-top:28px!important}
.footer-links{columns:1}
.mobile-contact-bar{display:none!important}

@media(max-width:860px){
 .hero-stats-premium{grid-template-columns:1fr 1fr;gap:10px}
 .hero-stats-premium .hero-stat-real:nth-child(2){grid-column:span 2}
 .service-card{min-height:315px;box-shadow:0 24px 60px rgba(0,0,0,.24)}
 .service-card:active{transform:scale(.985);border-color:rgba(159,185,255,.48);box-shadow:0 12px 34px rgba(0,0,0,.28),0 0 30px rgba(95,141,255,.10)}
 .review-card:nth-child(2),.review-card:nth-child(2):hover{transform:none}
 .review-card:active{transform:scale(.985)}
 .atom-dots-a{width:86%;height:52%}.atom-dots-b{width:56%;height:88%}
 .footer{padding-bottom:54px!important}
}
@media(max-width:520px){
 .hero-stats-premium .hero-stat-value{font-size:34px}
 .hero-stats-premium .hero-stat-copy{font-size:9px}
 .service-card{border-radius:28px;padding:26px}
 .reviews-grid{gap:14px}
}
@media(prefers-reduced-motion:reduce){
 .atom-dots-a,.atom-dots-b{animation:none!important}
 .service-card::before,.hero-stats-premium .hero-stat-real::before{display:none}
}

.site-header{
  padding-top:4px;
}
.nav-shell{
  width:min(1320px,calc(100vw - 24px));
  margin:8px auto 0;
  padding:7px 9px 7px 12px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(255,255,255,.115),rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.17);
  box-shadow:0 18px 55px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12);
}
.nav-shell::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:23px;
  pointer-events:none;
  background:linear-gradient(110deg,rgba(255,255,255,.06),transparent 24%,transparent 70%,rgba(126,161,255,.05));
}
.nav-shell.light-mode{
  background:linear-gradient(135deg,rgba(255,255,255,.88),rgba(244,248,255,.72));
  border-color:rgba(28,44,75,.10);
  box-shadow:0 20px 55px rgba(8,20,45,.13),inset 0 1px 0 rgba(255,255,255,.94);
}
.brand-logo{
  width:48px;
  height:48px;
  border-radius:15px;
  box-shadow:0 12px 30px rgba(0,0,0,.18),0 0 0 1px rgba(255,255,255,.16);
  transition:transform .35s ease,box-shadow .35s ease;
}
.brand:hover .brand-logo{
  transform:translateY(-2px) rotate(-2deg) scale(1.04);
  box-shadow:0 18px 38px rgba(0,0,0,.24),0 0 28px rgba(95,141,255,.15);
}
.brand-copy strong{font-size:12px;letter-spacing:.19em}
.brand-copy span{font-size:9px;letter-spacing:.20em}
.nav-menu{gap:4px}
.nav-menu a{
  position:relative;
  padding:10px 11px;
  border:1px solid transparent;
  font-size:11px;
  letter-spacing:.04em;
  overflow:hidden;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:50%;right:50%;bottom:4px;height:1px;
  background:linear-gradient(90deg,transparent,#a8c0ff,transparent);
  transition:left .28s ease,right .28s ease;
}
.nav-menu a:hover::after{left:18%;right:18%}
.nav-menu a:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.08);
  transform:translateY(-2px);
}
.nav-menu .nav-contact{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}
.nav-shell.light-mode .nav-contact{
  background:rgba(29,48,84,.055);
  border-color:rgba(29,48,84,.08);
}
.nav-menu .nav-cta{
  padding:11px 15px;
  background:linear-gradient(135deg,#426ff0 0%,#6f98ff 55%,#8eb1ff 100%);
  box-shadow:0 12px 28px rgba(66,111,240,.32),inset 0 1px 0 rgba(255,255,255,.28);
}
.nav-menu .nav-cta:hover{
  transform:translateY(-3px) scale(1.015);
  box-shadow:0 18px 38px rgba(66,111,240,.42),0 0 30px rgba(95,141,255,.18);
}

.hero-actions-premium{gap:14px;margin-top:2px}
.hero-actions-premium .btn{
  min-height:68px;
  padding:9px 19px 9px 10px;
  border-radius:21px;
  justify-content:flex-start;
  min-width:224px;
  overflow:hidden;
  position:relative;
}
.hero-actions-premium .btn::after{
  content:"";
  position:absolute;
  top:-60%;left:-30%;
  width:42%;height:220%;
  transform:rotate(18deg) translateX(-180%);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.24),transparent);
  transition:transform .7s cubic-bezier(.2,.8,.2,1);
}
.hero-actions-premium .btn:hover::after{transform:rotate(18deg) translateX(500%)}
.btn-premium-main{
  background:linear-gradient(135deg,#00d5a0,#00ad80)!important;
  box-shadow:0 18px 42px rgba(0,209,154,.28),inset 0 1px 0 rgba(255,255,255,.28)!important;
}
.btn-premium-main:hover{
  transform:translateY(-5px) scale(1.015);
  box-shadow:0 28px 58px rgba(0,209,154,.38),0 0 34px rgba(0,209,154,.16)!important;
}
.btn-premium-call{
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.045))!important;
  border-color:rgba(255,255,255,.18)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.17),inset 0 1px 0 rgba(255,255,255,.10);
}
.btn-premium-call:hover{
  transform:translateY(-5px) scale(1.015);
  background:rgba(255,255,255,.13)!important;
  border-color:rgba(173,198,255,.34)!important;
  box-shadow:0 28px 58px rgba(0,0,0,.25),0 0 30px rgba(95,141,255,.12);
}
.btn-icon{
  width:47px;height:47px;
  flex:0 0 auto;
  border-radius:15px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.12);
  transition:transform .3s ease,background .3s ease;
}
.btn:hover .btn-icon{transform:rotate(-6deg) scale(1.08);background:rgba(255,255,255,.21)}
.btn-copy{display:grid;gap:2px;text-align:left;position:relative;z-index:1}
.btn-copy small{font-size:9px;line-height:1;text-transform:uppercase;letter-spacing:.12em;opacity:.72;font-weight:700}
.btn-copy strong{font-size:14px;line-height:1.15}

.hero-focus-card{
  border-radius:32px!important;
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045))!important;
  border:1px solid rgba(255,255,255,.14)!important;
  box-shadow:0 28px 80px rgba(0,0,0,.25),inset 0 1px rgba(255,255,255,.10)!important;
}
.hero-stats-premium .hero-stat-real{
  min-height:148px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px 18px;
  border-radius:26px;
}
.hero-stats-premium .hero-stat-value{
  font-size:clamp(38px,4vw,58px);
  letter-spacing:-.045em;
}
.hero-stats-premium .hero-stat-copy{font-size:10px;line-height:1.45}

.services-stage{
  background:
    radial-gradient(circle at 15% 0%,rgba(95,141,255,.16),transparent 28%),
    radial-gradient(circle at 92% 28%,rgba(75,114,211,.10),transparent 24%),
    linear-gradient(180deg,#081326 0%,#0b1933 100%)!important;
}
.service-grid{gap:24px!important}
.service-card{
  min-height:390px!important;
  padding:30px!important;
  border-radius:34px!important;
  background:
    radial-gradient(circle at 82% 14%,rgba(121,158,255,.18),transparent 25%),
    linear-gradient(155deg,rgba(255,255,255,.12),rgba(255,255,255,.045))!important;
  box-shadow:0 28px 80px rgba(0,0,0,.28),inset 0 1px rgba(255,255,255,.10)!important;
}
.service-card::after{
  width:230px!important;height:230px!important;
  right:-110px!important;bottom:-130px!important;
  background:radial-gradient(circle,rgba(95,141,255,.30),transparent 68%)!important;
}
.service-card:hover{
  transform:translateY(-16px) scale(1.025)!important;
  box-shadow:0 48px 110px rgba(0,0,0,.40),0 0 0 1px rgba(139,172,255,.18),0 0 56px rgba(95,141,255,.16)!important;
}
.service-card-top{align-items:flex-start!important}
.service-label{
  padding:10px 13px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.07)!important;
  border:1px solid rgba(255,255,255,.10)!important;
}
.service-icon{
  width:70px!important;height:70px!important;
  border-radius:23px!important;
  font-size:25px!important;
  box-shadow:0 18px 38px rgba(95,141,255,.28)!important;
}
.service-card-body{margin-top:64px!important}
.service-card h3{font-size:clamp(31px,3vw,43px)!important;letter-spacing:-.03em}
.service-card p{max-width:92%;font-size:15px!important;line-height:1.78!important}
.service-link{font-size:12px!important;letter-spacing:.11em;text-transform:uppercase}

.reviews-stage{
  background:
    radial-gradient(circle at 8% 12%,rgba(95,141,255,.08),transparent 26%),
    linear-gradient(180deg,#f7f9fd,#eef3fb)!important;
}
.reviews-premium-grid{
  grid-template-columns:1.08fr .92fr 1.02fr!important;
  gap:26px!important;
  align-items:stretch!important;
}
.review-card{
  min-height:390px!important;
  padding:30px!important;
  display:flex!important;
  flex-direction:column!important;
  border-radius:36px!important;
  position:relative!important;
  overflow:hidden!important;
}
.review-card-1{transform:rotate(-1.1deg)}
.review-card-2{
  transform:translateY(30px) scale(1.035)!important;
  background:linear-gradient(155deg,#09172d,#13284d)!important;
}
.review-card-3{transform:rotate(1.1deg)}
.review-card:hover{transform:translateY(-14px) rotate(0deg) scale(1.02)!important}
.review-card-2:hover{transform:translateY(12px) scale(1.055)!important}
.review-card-head{display:flex;justify-content:space-between;align-items:center;gap:12px;position:relative;z-index:2}
.review-index{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1;
  color:rgba(95,141,255,.18);
  font-weight:700;
}
.review-card-2 .review-index{color:rgba(159,185,255,.18)}
.review-context{
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 11px;border-radius:999px;
  background:rgba(95,141,255,.08);
  border:1px solid rgba(95,141,255,.10);
  color:#4167c9;
  font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.09em;
}
.review-card-2 .review-context{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.10);color:#bcd0ff}
.review-mark{font-size:92px!important;line-height:.75!important;margin:24px 0 4px!important;position:relative;z-index:1}
.review-card p{font-size:15px!important;line-height:1.9!important;flex:1;position:relative;z-index:2}
.review-author{margin-top:24px!important;padding-top:18px!important;position:relative;z-index:2}
.review-author-line{display:block;width:54px;height:2px;margin-bottom:12px;background:linear-gradient(90deg,#5f8dff,transparent)}

.leadership-cinematic{
  min-height:88svh!important;
  display:flex!important;
  align-items:flex-end!important;
}
.leadership-bg img{
  object-position:center 20%!important;
  filter:saturate(.96) contrast(1.06)!important;
  transform:scale(1.01)!important;
}
.leadership-overlay{
  background:
    linear-gradient(90deg,rgba(5,12,25,.89) 0%,rgba(6,14,29,.68) 42%,rgba(6,14,29,.12) 73%,rgba(6,14,29,.06) 100%),
    linear-gradient(180deg,rgba(5,12,25,.03),rgba(5,12,25,.60))!important;
}
.leadership-copy{
  max-width:700px!important;
  padding:34px!important;
  border-radius:30px!important;
  background:linear-gradient(145deg,rgba(8,18,37,.58),rgba(8,18,37,.24))!important;
  border:1px solid rgba(255,255,255,.13)!important;
  backdrop-filter:blur(18px)!important;
  -webkit-backdrop-filter:blur(18px)!important;
  box-shadow:0 28px 80px rgba(0,0,0,.32)!important;
}
.leadership-copy h2{font-size:clamp(48px,6vw,78px)!important;line-height:.96!important}
.btn-profile{
  min-height:58px!important;
  padding:0 22px!important;
  background:linear-gradient(135deg,#fff,#eaf1ff)!important;
  box-shadow:0 18px 40px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.40)!important;
}
.btn-profile:hover{transform:translateY(-5px) scale(1.02)!important;box-shadow:0 28px 60px rgba(0,0,0,.36),0 0 36px rgba(159,185,255,.20)!important}

.architecture-system{
  box-shadow:inset 0 0 120px rgba(95,141,255,.04);
}
.atom-dots-c{
  width:88%;height:66%;
  transform:translate(-50%,-50%) rotate(64deg);
  animation:atomSpinC 27s linear infinite;
}
@keyframes atomSpinC{from{transform:translate(-50%,-50%) rotate(64deg)}to{transform:translate(-50%,-50%) rotate(424deg)}}
.atom-dots i:nth-child(5){left:15%;top:18%}
.atom-dots i:nth-child(6){right:17%;bottom:18%}
.atom-spark-field{position:absolute;inset:9%;z-index:1;pointer-events:none}
.atom-spark-field b{position:absolute;width:3px;height:3px;border-radius:50%;background:#9fb9ff;box-shadow:0 0 8px rgba(159,185,255,.85);animation:sparkPulse 3.6s ease-in-out infinite}
.atom-spark-field b:nth-child(1){left:8%;top:24%}.atom-spark-field b:nth-child(2){left:22%;bottom:17%;animation-delay:.5s}.atom-spark-field b:nth-child(3){right:12%;top:19%;animation-delay:1s}.atom-spark-field b:nth-child(4){right:24%;bottom:12%;animation-delay:1.5s}.atom-spark-field b:nth-child(5){left:47%;top:5%;animation-delay:2s}.atom-spark-field b:nth-child(6){right:5%;top:52%;animation-delay:.8s}.atom-spark-field b:nth-child(7){left:4%;bottom:42%;animation-delay:1.8s}.atom-spark-field b:nth-child(8){left:55%;bottom:4%;animation-delay:2.5s}
@keyframes sparkPulse{0%,100%{opacity:.25;transform:scale(.75)}50%{opacity:1;transform:scale(1.7)}}

.footer-company-links{
  margin:0!important;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.64)!important;
  font-size:13px!important;
  line-height:1.8!important;
}
.mobile-contact-bar,.mobile-quickbar{display:none!important}

@media(max-width:860px){
  .nav-shell{border-radius:20px;padding:7px 9px}
  .nav-shell::after{border-radius:19px}
  .nav-menu{top:62px!important;border-radius:25px!important;padding:12px!important}
  .nav-menu a{padding:13px 14px!important;font-size:13px!important}
  .hero-actions-premium{display:grid!important;grid-template-columns:1fr 1fr!important}
  .hero-actions-premium .btn{width:100%!important;min-width:0!important;min-height:64px!important}
  .hero-stats-premium{grid-template-columns:repeat(3,1fr)!important}
  .hero-stats-premium .hero-stat-real:nth-child(2){grid-column:auto!important}
  .hero-stats-premium .hero-stat-real{min-height:118px!important;padding:16px 12px!important;text-align:center;align-items:center}
  .hero-stats-premium .hero-stat-value{font-size:34px!important}
  .service-grid{grid-template-columns:1fr!important}
  .service-card{min-height:310px!important;padding:25px!important}
  .service-card-body{margin-top:42px!important}
  .service-card:active{transform:scale(.985)!important;box-shadow:0 18px 48px rgba(0,0,0,.30),0 0 32px rgba(95,141,255,.12)!important}
  .reviews-premium-grid{grid-template-columns:1fr!important;gap:16px!important}
  .review-card,.review-card-1,.review-card-2,.review-card-3{transform:none!important;min-height:auto!important}
  .review-card:active{transform:scale(.985)!important}
  .leadership-cinematic{min-height:82svh!important}
  .leadership-copy{max-width:100%!important;padding:26px!important;text-align:center!important;margin:0 auto!important}
  .leadership-copy .eyebrow{justify-content:center!important}
  .leadership-copy h2{font-size:clamp(42px,11vw,58px)!important}
  .btn-profile{margin:20px auto 0!important}
  .atom-dots-c{width:94%;height:72%}
  .footer{padding-bottom:42px!important}
}

@media(max-width:560px){
  .brand-copy strong{font-size:10px}
  .hero-actions-premium{grid-template-columns:1fr!important}
  .hero-actions-premium .btn{min-height:66px!important}
  .hero-stats-premium{grid-template-columns:1fr 1fr!important}
  .hero-stats-premium .hero-stat-real:nth-child(3){grid-column:1/-1!important}
  .hero-stats-premium .hero-stat-real{min-height:104px!important}
  .hero-stats-premium .hero-stat-value{font-size:31px!important}
  .hero-stats-premium .hero-stat-copy{font-size:9px!important}
  .service-card{border-radius:28px!important;min-height:295px!important}
  .service-icon{width:62px!important;height:62px!important}
  .review-index{font-size:42px}
  .review-mark{font-size:76px!important}
  .leadership-cinematic{min-height:720px!important}
  .leadership-bg img{object-position:62% center!important}
  .leadership-overlay{background:linear-gradient(180deg,rgba(5,12,25,.10) 0%,rgba(5,12,25,.25) 42%,rgba(5,12,25,.92) 78%,rgba(5,12,25,.98) 100%)!important}
  .leadership-content-wrap{align-items:flex-end!important}
  .leadership-copy{padding:22px!important;background:rgba(7,16,33,.62)!important}
  .leadership-copy h2{font-size:41px!important}
  .architecture-system{min-height:540px!important}
  .atom-dots-a{width:94%!important;height:54%!important}.atom-dots-b{width:60%!important;height:92%!important}.atom-dots-c{width:96%!important;height:72%!important}
}

@media(hover:none){
  .service-card:hover,.review-card:hover,.btn-premium-main:hover,.btn-premium-call:hover,.btn-profile:hover,.nav-menu a:hover{transform:none!important}
  .service-card:active{transform:scale(.985)!important}
  .review-card:active{transform:scale(.985)!important}
  .btn-premium-main:active,.btn-premium-call:active,.btn-profile:active{transform:scale(.98)!important}
}

@media(prefers-reduced-motion:reduce){
  .atom-dots-a,.atom-dots-b,.atom-dots-c,.atom-spark-field b{animation:none!important}
  .service-card::before,.hero-actions-premium .btn::after{display:none!important}
}

/* premium refinement */
.site-header{
  padding-top:2px;
}
.nav-shell{
  width:min(1320px,calc(100vw - 18px));
  margin-top:9px;
  padding:7px 10px 7px 12px;
  border:1px solid rgba(255,255,255,.17);
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.075));
  box-shadow:0 18px 48px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(255,255,255,.035);
}
.nav-shell::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(105deg,rgba(255,255,255,.09),transparent 28%,transparent 72%,rgba(124,166,255,.08));
}
.nav-shell.light-mode{
  background:linear-gradient(180deg,rgba(255,255,255,.80),rgba(244,248,255,.60));
  border-color:rgba(13,27,55,.10);
  box-shadow:0 16px 42px rgba(7,18,40,.12), inset 0 1px 0 rgba(255,255,255,.90);
}
.brand-logo{
  width:46px;height:46px;border-radius:15px;padding:7px;
  box-shadow:0 12px 30px rgba(0,0,0,.16), inset 0 0 0 1px rgba(255,255,255,.62);
}
.nav-menu{position:relative;gap:5px}
.nav-menu-glow{
  position:absolute;left:4%;right:4%;bottom:-8px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(124,166,255,.55),transparent);
  opacity:.7;pointer-events:none;
}
.nav-menu a{
  position:relative;overflow:hidden;padding:10px 13px;border-radius:999px;
  border:1px solid transparent;
}
.nav-menu a::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 20%,rgba(255,255,255,.14) 46%,transparent 72%);
  transform:translateX(-130%);transition:transform .55s ease;pointer-events:none;
}
.nav-menu a:hover::after{transform:translateX(130%)}
.nav-menu a:hover{border-color:rgba(255,255,255,.12);box-shadow:0 10px 24px rgba(0,0,0,.10)}
.nav-contact{
  background:linear-gradient(135deg,#00d49d,#00a77d)!important;color:#fff!important;
  box-shadow:0 12px 26px rgba(0,201,148,.28)!important;
}
.nav-contact:hover{transform:translateY(-2px) scale(1.015)!important;box-shadow:0 18px 34px rgba(0,201,148,.38)!important}
.nav-contact-pulse{
  width:7px;height:7px;border-radius:50%;background:#d9fff5;box-shadow:0 0 0 0 rgba(217,255,245,.48);animation:navPulse 2.1s infinite;
}
.nav-cta{
  border:1px solid rgba(255,255,255,.16)!important;
  box-shadow:0 12px 26px rgba(79,128,255,.34)!important;
}
@keyframes navPulse{70%{box-shadow:0 0 0 8px rgba(217,255,245,0)}100%{box-shadow:0 0 0 0 rgba(217,255,245,0)}}

.hero-actions-premium{gap:16px}
.btn-premium-main,.btn-premium-call{
  min-height:68px;padding:0 20px;border-radius:22px;position:relative;overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease,filter .28s ease;
}
.btn-premium-main::before,.btn-premium-call::before{
  content:"";position:absolute;top:-80%;left:-25%;width:26%;height:260%;transform:rotate(24deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.32),transparent);transition:left .65s ease;
}
.btn-premium-main:hover::before,.btn-premium-call:hover::before{left:115%}
.btn-premium-main{background:linear-gradient(135deg,#00d59f 0%,#00af84 58%,#008c6b 100%);box-shadow:0 18px 38px rgba(0,201,150,.32), inset 0 1px 0 rgba(255,255,255,.22)}
.btn-premium-main:hover{transform:translateY(-5px) scale(1.025);box-shadow:0 26px 52px rgba(0,201,150,.42),0 0 0 1px rgba(122,255,221,.22)}
.btn-premium-call{background:linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.20);box-shadow:0 16px 34px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.10)}
.btn-premium-call:hover{transform:translateY(-5px);background:rgba(255,255,255,.15);border-color:rgba(159,193,255,.45);box-shadow:0 24px 50px rgba(0,0,0,.24)}
.btn-icon{width:40px;height:40px;border-radius:14px;display:grid;place-items:center;background:rgba(255,255,255,.13);box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}
.btn-copy{display:flex;flex-direction:column;align-items:flex-start;line-height:1.05}
.btn-copy small{font-size:9px;letter-spacing:.15em;text-transform:uppercase;opacity:.72;margin-bottom:5px}
.btn-copy strong{font-size:15px}

.hero-stats-premium{gap:16px}
.hero-stat-real{
  position:relative;overflow:hidden;min-height:170px;padding:24px 22px 22px;
  border-radius:28px;border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.045));
  box-shadow:0 18px 44px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .32s ease,box-shadow .32s ease,border-color .32s ease,background .32s ease;
}
.hero-stat-real::after{content:"";position:absolute;width:120px;height:120px;border-radius:50%;right:-45px;bottom:-55px;background:radial-gradient(circle,rgba(95,141,255,.30),transparent 68%);transition:transform .4s ease}
.hero-stat-real:hover{transform:translateY(-9px) scale(1.02);border-color:rgba(155,184,255,.34);background:linear-gradient(180deg,rgba(255,255,255,.15),rgba(255,255,255,.06));box-shadow:0 30px 62px rgba(0,0,0,.28),0 0 34px rgba(95,141,255,.10)}
.hero-stat-real:hover::after{transform:scale(1.18)}
.hero-stat-icon{width:44px;height:44px;border-radius:15px;display:grid;place-items:center;margin-bottom:18px;background:linear-gradient(135deg,rgba(95,141,255,.96),rgba(155,184,255,.70));box-shadow:0 12px 26px rgba(79,128,255,.28);font-size:17px}
.hero-stat-value{font-family:'Playfair Display',serif;font-size:clamp(42px,4vw,64px);line-height:.9;letter-spacing:-.04em}
.hero-stat-copy{margin-top:12px;max-width:160px;font-size:12px;line-height:1.5;text-transform:uppercase;letter-spacing:.10em;color:rgba(255,255,255,.66)}

.service-grid{gap:24px}
.service-card{
  min-height:390px;padding:30px 28px;border-radius:34px;position:relative;overflow:hidden;
  background:linear-gradient(160deg,#ffffff 0%,#f6f9ff 100%);
  border:1px solid rgba(10,22,45,.08);
  box-shadow:0 22px 58px rgba(10,25,60,.10);
  transform-style:preserve-3d;
  transition:transform .42s cubic-bezier(.22,1,.36,1),box-shadow .42s ease,border-color .42s ease;
}
.service-card::before{content:"";position:absolute;inset:-1px;background:radial-gradient(circle at 18% 0%,rgba(95,141,255,.18),transparent 25%),linear-gradient(135deg,transparent 50%,rgba(95,141,255,.06));opacity:.72;pointer-events:none}
.service-card::after{content:"";position:absolute;top:-120%;left:-30%;width:32%;height:300%;transform:rotate(24deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.88),transparent);transition:left .8s ease;pointer-events:none}
.service-card:hover{transform:translateY(-14px) rotateX(1.5deg) rotateY(-1.5deg);border-color:rgba(95,141,255,.26);box-shadow:0 36px 86px rgba(11,31,77,.17),0 0 0 1px rgba(95,141,255,.06)}
.service-card:hover::after{left:120%}
.service-card-top{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;position:relative;z-index:2}
.service-index{font-family:'Playfair Display',serif;font-size:18px;color:#8da7df;letter-spacing:.06em}
.service-label{justify-self:start;padding:8px 11px;border-radius:999px;background:#edf3ff;color:#3d5f9d;font-size:10px;letter-spacing:.12em;text-transform:uppercase;font-weight:800}
.service-icon{width:66px;height:66px;border-radius:22px;font-size:24px;transition:transform .35s ease,box-shadow .35s ease}
.service-card:hover .service-icon{transform:translateY(-5px) rotate(-3deg) scale(1.08);box-shadow:0 20px 38px rgba(79,128,255,.35)}
.service-card-body{position:relative;z-index:2;margin-top:auto;padding-top:54px}
.service-card h3{font-size:clamp(28px,3vw,38px);margin-bottom:14px;letter-spacing:-.03em}
.service-card p{font-size:15px;line-height:1.8;color:rgba(12,20,36,.67);max-width:90%}
.service-link{position:relative;z-index:2;margin-top:26px;display:inline-flex;align-items:center;gap:10px;color:#315fc2;font-weight:800;font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.service-link i{transition:transform .28s ease}.service-card:hover .service-link i{transform:translateX(7px)}

.btn-profile{min-height:58px;padding:0 22px;border-radius:18px;background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(228,236,255,.96));color:#0c1730;border:1px solid rgba(255,255,255,.70);box-shadow:0 18px 42px rgba(0,0,0,.22);gap:14px}
.btn-profile:hover{transform:translateY(-4px);box-shadow:0 28px 58px rgba(0,0,0,.30);color:#315fc2}
.btn-profile i{transition:transform .25s ease}.btn-profile:hover i{transform:translateX(5px)}

.reviews-premium-grid{gap:26px;align-items:stretch}
.review-card{position:relative;min-height:380px;padding:34px 30px 30px;border-radius:34px;overflow:hidden;transition:transform .40s cubic-bezier(.22,1,.36,1),box-shadow .40s ease,border-color .40s ease}
.review-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 90% 10%,rgba(95,141,255,.14),transparent 28%);pointer-events:none}
.review-card-1{background:linear-gradient(160deg,#ffffff,#f2f6ff);transform:rotate(-1.4deg);box-shadow:0 22px 56px rgba(13,28,64,.10)}
.review-card-2{background:linear-gradient(150deg,#08172e,#132b58);color:#fff;transform:translateY(-18px);box-shadow:0 34px 76px rgba(2,10,24,.28);border-color:rgba(255,255,255,.10)}
.review-card-3{background:linear-gradient(160deg,#ffffff,#f7f9fc);transform:rotate(1.4deg);box-shadow:0 22px 56px rgba(13,28,64,.10)}
.review-card:hover{transform:translateY(-14px) rotate(0) scale(1.018);box-shadow:0 36px 82px rgba(8,23,60,.20);border-color:rgba(95,141,255,.24)}
.review-card-2:hover{box-shadow:0 38px 88px rgba(2,10,24,.36),0 0 38px rgba(95,141,255,.10)}
.review-card-head{display:grid;grid-template-columns:auto 1fr;gap:10px 14px;align-items:center;position:relative;z-index:2}
.review-index{font-family:'Playfair Display',serif;font-size:34px;line-height:1;color:#9ab3ee}
.review-stars{justify-self:end;display:flex;gap:3px;font-size:10px;color:#9ab3ee}
.review-context{grid-column:1/-1;width:max-content;max-width:100%;padding:7px 10px;border-radius:999px;background:rgba(95,141,255,.08);font-size:10px;letter-spacing:.10em;text-transform:uppercase;font-weight:800;color:#4569ad}
.review-card-2 .review-context{background:rgba(255,255,255,.08);color:#c9d8ff}.review-card-2 .review-stars,.review-card-2 .review-index{color:#bdd0ff}
.review-mark{font-size:100px;line-height:.6;margin-top:34px;opacity:.10;font-family:'Playfair Display',serif}
.review-card p{position:relative;z-index:2;font-size:16px;line-height:1.85;margin-top:4px}.review-card-2 p{color:rgba(255,255,255,.82)}
.review-author{margin-top:auto;padding-top:24px;position:relative;z-index:2}.review-author-line{width:42px;height:2px;display:block;margin-bottom:12px;background:linear-gradient(90deg,#5f8dff,transparent)}

.architecture-system{overflow:visible}
.atom-micro-orbit{position:absolute;left:50%;top:50%;width:460px;height:460px;margin:-230px 0 0 -230px;border-radius:50%;pointer-events:none}
.atom-micro-orbit span{position:absolute;width:7px;height:7px;border-radius:50%;background:#c8d8ff;box-shadow:0 0 14px rgba(155,184,255,.95)}
.atom-micro-orbit-a{animation:atomMicroA 18s linear infinite}.atom-micro-orbit-b{width:560px;height:330px;margin:-165px 0 0 -280px;animation:atomMicroB 24s linear infinite reverse;transform:rotate(24deg)}
.atom-micro-orbit-a span:nth-child(1){left:50%;top:0}.atom-micro-orbit-a span:nth-child(2){right:5%;bottom:22%}.atom-micro-orbit-a span:nth-child(3){left:8%;bottom:18%}
.atom-micro-orbit-b span:nth-child(1){left:6%;top:48%}.atom-micro-orbit-b span:nth-child(2){left:34%;top:2%}.atom-micro-orbit-b span:nth-child(3){right:8%;top:30%}.atom-micro-orbit-b span:nth-child(4){right:28%;bottom:3%}
@keyframes atomMicroA{to{transform:rotate(360deg)}}
@keyframes atomMicroB{to{transform:rotate(384deg)}}
.atom-spark-field b:nth-child(9){left:17%;top:61%;animation-delay:-1.8s}.atom-spark-field b:nth-child(10){left:73%;top:16%;animation-delay:-3.2s}.atom-spark-field b:nth-child(11){left:80%;top:72%;animation-delay:-4.1s}.atom-spark-field b:nth-child(12){left:31%;top:23%;animation-delay:-2.6s}

.footer-card{transition:transform .30s ease,box-shadow .30s ease,border-color .30s ease}.footer-card:hover{transform:translateY(-5px);border-color:rgba(155,184,255,.17);box-shadow:0 26px 60px rgba(0,0,0,.22)}
.footer-links a{position:relative;padding-left:0}.footer-links a::after{content:"";position:absolute;left:0;bottom:2px;width:0;height:1px;background:#7ca6ff;transition:width .24s ease}.footer-links a:hover::after{width:100%}

@media (max-width:860px){
  .nav-shell{border-radius:24px;padding:8px 10px}.nav-menu{top:62px;width:100%;border-radius:24px;padding:12px}.nav-menu-glow{display:none}
  .hero-actions-premium{display:grid;grid-template-columns:1fr 1fr}.btn-premium-main,.btn-premium-call{width:100%;min-height:62px}
  .hero-stats-premium{grid-template-columns:1fr 1fr;gap:12px}.hero-stat-real{min-height:150px;text-align:left}.hero-stat-real:nth-child(3){grid-column:1/-1}.hero-stat-icon{margin-bottom:14px}
  .service-grid{grid-template-columns:1fr}.service-card{min-height:330px;padding:26px 24px}.service-card:active{transform:scale(.985)}
  .reviews-premium-grid{grid-template-columns:1fr}.review-card-1,.review-card-2,.review-card-3{transform:none;min-height:auto}.review-card-2{order:-1}
  .atom-micro-orbit-a{width:330px;height:330px;margin:-165px 0 0 -165px}.atom-micro-orbit-b{width:390px;height:230px;margin:-115px 0 0 -195px}
}
@media (max-width:560px){
  .hero-actions-premium{grid-template-columns:1fr}.btn-premium-main,.btn-premium-call{min-height:60px;border-radius:18px}
  .hero-stats-premium{grid-template-columns:1fr}.hero-stat-real,.hero-stat-real:nth-child(3){grid-column:auto;min-height:138px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:16px;align-items:center}.hero-stat-icon{grid-row:1/3;margin:0}.hero-stat-value{font-size:46px}.hero-stat-copy{margin:4px 0 0;max-width:none}
  .service-card{min-height:300px}.service-card-top{grid-template-columns:auto 1fr auto}.service-label{font-size:9px}.service-card-body{padding-top:40px}.service-card h3{font-size:30px}
  .review-card{padding:28px 24px}.review-card-head{grid-template-columns:auto 1fr}.review-mark{font-size:80px;margin-top:26px}
  .atom-micro-orbit-a{width:280px;height:280px;margin:-140px 0 0 -140px}.atom-micro-orbit-b{width:320px;height:190px;margin:-95px 0 0 -160px}
}
@media (prefers-reduced-motion:reduce){
  .nav-contact-pulse,.atom-micro-orbit-a,.atom-micro-orbit-b{animation:none!important}
  .nav-menu a::after,.btn-premium-main::before,.btn-premium-call::before{display:none}
}

/* ===== Ajustes V3: práctica, dirección jurídica y orden de reseñas ===== */

/* Áreas de práctica: lectura más fuerte y premium */
.service-card{
  background:
    radial-gradient(circle at 88% 10%, rgba(95,141,255,.12), transparent 28%),
    linear-gradient(155deg,#ffffff 0%,#f4f7fd 58%,#eef3fb 100%) !important;
  border-color:rgba(20,38,73,.12) !important;
  box-shadow:0 24px 62px rgba(10,25,60,.13) !important;
}
.service-card::before{
  background:
    radial-gradient(circle at 15% 0%,rgba(95,141,255,.22),transparent 27%),
    linear-gradient(135deg,transparent 48%,rgba(95,141,255,.08)) !important;
  opacity:1 !important;
}
.service-card h3{
  color:#0a1730 !important;
  text-shadow:none !important;
}
.service-card p{
  color:#435069 !important;
  font-weight:600 !important;
  font-size:15.5px !important;
  line-height:1.82 !important;
  max-width:94% !important;
  opacity:1 !important;
}
.service-label{
  background:#e8effc !important;
  color:#31558f !important;
  border:1px solid rgba(49,85,143,.08);
}
.service-index{color:#6f8bc6 !important}
.service-link{
  color:#234fae !important;
  font-weight:900 !important;
}
.service-card:hover{
  transform:translateY(-15px) rotateX(1.4deg) rotateY(-1.4deg) scale(1.012) !important;
  border-color:rgba(75,115,205,.30) !important;
  box-shadow:0 38px 92px rgba(11,31,77,.20),0 0 0 1px rgba(95,141,255,.08),0 0 48px rgba(95,141,255,.10) !important;
}
.service-card:hover p{color:#27364f !important}
.service-card:hover h3{color:#102c63 !important}

/* Dirección Jurídica: fotografía protagonista, sin caja que la tape */
.leadership-cinematic{
  min-height:92svh !important;
  display:flex;
  align-items:flex-end;
  background:#07101f;
}
.leadership-bg img{
  object-position:center 32% !important;
  filter:saturate(1.02) contrast(1.04) !important;
}
.leadership-overlay{
  background:
    linear-gradient(90deg,rgba(3,10,22,.16) 0%,rgba(3,10,22,.04) 42%,rgba(3,10,22,.18) 100%),
    linear-gradient(180deg,rgba(4,10,22,.03) 0%,rgba(4,10,22,.08) 46%,rgba(4,10,22,.72) 78%,rgba(4,10,22,.96) 100%) !important;
}
.leadership-content-wrap{
  min-height:92svh !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
  padding-top:120px !important;
  padding-bottom:64px !important;
}
.leadership-copy{
  position:relative;
  max-width:760px !important;
  padding:0 0 0 26px !important;
  margin:0 !important;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  overflow:visible !important;
}
.leadership-copy::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  bottom:8px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg,#8fb0ff,#4f80ff 55%,rgba(79,128,255,0));
  box-shadow:0 0 26px rgba(95,141,255,.34);
}
.leadership-copy .eyebrow{
  color:#c8d8ff !important;
  text-shadow:0 3px 16px rgba(0,0,0,.45);
}
.leadership-copy h2{
  color:#fff !important;
  max-width:720px;
  font-size:clamp(54px,6.6vw,92px) !important;
  line-height:.91 !important;
  letter-spacing:-.045em !important;
  text-shadow:0 8px 34px rgba(0,0,0,.48);
  margin:18px 0 20px !important;
}
.leadership-copy p{
  color:rgba(255,255,255,.89) !important;
  max-width:670px;
  font-size:17px !important;
  line-height:1.82 !important;
  text-shadow:0 3px 18px rgba(0,0,0,.52);
  margin-bottom:24px !important;
}
.leadership-copy p strong{color:#fff}
.btn-profile{
  background:rgba(255,255,255,.94) !important;
  color:#0b1730 !important;
  border-color:rgba(255,255,255,.72) !important;
  box-shadow:0 18px 46px rgba(0,0,0,.28) !important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.btn-profile:hover{
  background:#fff !important;
  color:#315fc2 !important;
  transform:translateY(-5px) scale(1.015) !important;
  box-shadow:0 28px 64px rgba(0,0,0,.34),0 0 34px rgba(95,141,255,.14) !important;
}

/* Experiencia del cliente: conservar orden 01, 02, 03 en mobile */
@media (max-width:860px){
  .review-card-1{order:1 !important}
  .review-card-2{order:2 !important}
  .review-card-3{order:3 !important}

  .service-card p{
    color:#3a4963 !important;
    font-size:15px !important;
    line-height:1.75 !important;
    max-width:100% !important;
  }

  .leadership-cinematic{
    min-height:84svh !important;
  }
  .leadership-content-wrap{
    min-height:84svh !important;
    padding:100px 20px 42px !important;
    align-items:flex-end !important;
  }
  .leadership-bg img{
    object-position:58% center !important;
  }
  .leadership-overlay{
    background:
      linear-gradient(180deg,rgba(3,10,22,.04) 0%,rgba(3,10,22,.10) 48%,rgba(3,10,22,.76) 76%,rgba(3,10,22,.97) 100%) !important;
  }
  .leadership-copy{
    padding:0 !important;
    text-align:left !important;
    max-width:100% !important;
  }
  .leadership-copy::before{display:none}
  .leadership-copy .eyebrow{justify-content:flex-start !important}
  .leadership-copy .eyebrow::before{display:block !important}
  .leadership-copy h2{
    font-size:clamp(43px,11vw,61px) !important;
    line-height:.95 !important;
    max-width:600px;
  }
  .leadership-copy p{
    font-size:15px !important;
    line-height:1.7 !important;
    max-width:620px;
  }
}

@media (max-width:560px){
  .leadership-cinematic{min-height:760px !important}
  .leadership-content-wrap{min-height:760px !important;padding:92px 18px 34px !important}
  .leadership-bg img{object-position:60% center !important}
  .leadership-copy h2{font-size:44px !important}
  .leadership-copy p{font-size:14.5px !important}
  .btn-profile{width:auto !important;min-height:54px !important;padding:0 18px !important}

  .service-card{
    min-height:310px !important;
    padding:25px 22px !important;
    background:linear-gradient(155deg,#fff 0%,#f1f5fb 100%) !important;
  }
  .service-card h3{font-size:30px !important}
  .service-card p{font-size:14.5px !important;line-height:1.72 !important;color:#35445d !important}
}
/* =========================================================
   FOOTER JV · COMPACTO 2026
   ========================================================= */

.footer{
  padding:42px 0 18px;
}

.footer .footer-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr 1.1fr;
  gap:16px;

  /* ESTO ES CLAVE:
     evita que todas las cards adopten la altura de la más alta */
  align-items:start;
}

.footer .footer-card{
  align-self:start;
  height:auto;
  min-height:0;

  padding:20px;
  border-radius:22px;
}

/* ---------- MARCA ---------- */

.footer .footer-brand{
  margin-bottom:18px;
}

.footer .footer-brand h3{
  margin:0 0 3px;
}

.footer .footer-brand p{
  margin:0 0 12px;
}

.footer .footer-logo{
  width:auto;
  height:82px;
  max-width:150px;
  object-fit:contain;
  margin:8px 0 0;
}

/* ---------- CONTACTO ---------- */

.footer .footer-contact{
  margin:0;
  padding:0;
  gap:8px;
}

.footer .footer-contact li{
  margin:0;
  line-height:1.45;
}

/* ---------- TÍTULOS ---------- */

.footer .footer-card > h3,
.footer .footer-company-title{
  margin:20px 0 10px;
}

.footer .footer-card > h3:first-child{
  margin-top:0;
}

/* Firma empieza después del bloque de contacto */
.footer .footer-contact + .footer-company-title{
  margin-top:20px;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* ---------- ENLACES ---------- */

.footer .footer-links{
  margin:0;
  padding:0;
  gap:6px;
}

.footer .footer-links li{
  margin:0;
  line-height:1.35;
}

.footer .footer-links a{
  line-height:1.4;
}

/* Las áreas ocupan dos columnas en desktop.
   Así eliminamos muchísimo alto sin quitar enlaces. */

.footer .footer-practice-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:18px;
  row-gap:7px;
}

/* ---------- NUESTRA EMPRESA ---------- */

.footer .footer-company-links{
  margin:0;
  padding:11px 13px;
  line-height:1.65;

  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  background:rgba(255,255,255,.025);
}

/* ---------- MAPA ---------- */

.footer .footer-map iframe{
  display:block;
  width:100%;
  height:190px;

  margin:10px 0 18px;
  border:0;
  border-radius:15px;
}

/* Información legal separada visualmente del mapa */

.footer .footer-map .footer-company-title{
  margin-top:16px;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* ---------- COPYRIGHT ---------- */

.footer .footer-bottom{
  margin-top:18px;
  padding-top:16px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1000px){

  .footer .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  /* La tarjeta del mapa queda debajo ocupando todo */
  .footer .footer-map{
    grid-column:1 / -1;
  }

  .footer .footer-map iframe{
    height:230px;
  }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width:680px){

  .footer{
    padding:32px 0 16px;
  }

  .footer .footer-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .footer .footer-map{
    grid-column:auto;
  }

  .footer .footer-card{
    padding:18px;
    border-radius:19px;
  }

  .footer .footer-practice-links{
    grid-template-columns:1fr 1fr;
    column-gap:14px;
  }

  .footer .footer-map iframe{
    height:210px;
  }

  .footer .footer-logo{
    height:76px;
  }
}

@media (max-width:430px){

  .footer .footer-practice-links{
    grid-template-columns:1fr;
  }

  .footer .footer-map iframe{
    height:195px;
  }
}
/* =========================================================
   FOOTER · COLUMNA CENTRAL
   ========================================================= */

.footer .footer-column-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
  min-width:0;
}

.footer .footer-column-stack .footer-card{
  width:100%;
  height:auto;
  min-height:0;
}


/* =========================================================
   PRACTICE AREAS
   ========================================================= */

.footer .footer-practice-card{
  padding:18px 20px;
}

.footer .footer-practice-card > h3{
  margin:0 0 12px;
}

.footer .footer-practice-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:24px;
  row-gap:8px;
}

.footer .footer-practice-links li{
  margin:0;
}

.footer .footer-practice-links a{
  line-height:1.35;
}


/* =========================================================
   BLOG CARD
   ========================================================= */

.footer .footer-blog-card{
  padding:20px;
}

.footer .footer-blog-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;

  margin-bottom:14px;
  padding-bottom:13px;

  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer .footer-blog-head span{
  display:block;

  margin-bottom:3px;

  color:#7fa2ff;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.footer .footer-blog-head h3{
  margin:0;

  font-family:'Playfair Display',serif;
  font-size:18px;
}

.footer .footer-blog-all{
  flex:0 0 auto;

  width:32px;
  height:32px;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;

  background:rgba(255,255,255,.04);
  color:#9bb8ff;

  transition:
    transform .2s ease,
    background .2s ease;
}

.footer .footer-blog-all:hover{
  transform:translateX(2px);
  background:rgba(95,141,255,.12);
}


/* ARTÍCULOS */

.footer .footer-blog-list{
  display:grid;
  gap:0;
}

.footer .footer-blog-item{
  position:relative;

  display:block;

  padding:12px 30px 12px 0;

  border-bottom:1px solid rgba(255,255,255,.065);

  transition:padding-left .2s ease;
}

.footer .footer-blog-item:last-child{
  border-bottom:0;
}

.footer .footer-blog-item:hover{
  padding-left:5px;
}

.footer .footer-blog-date{
  display:block;

  margin-bottom:4px;

  color:rgba(155,184,255,.72);

  font-size:8px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.footer .footer-blog-item strong{
  display:block;

  color:rgba(255,255,255,.80);

  font-size:10px;
  font-weight:600;
  line-height:1.45;
}

.footer .footer-blog-item > i{
  position:absolute;

  right:2px;
  top:50%;

  transform:translateY(-50%);

  color:#6f95f5;
  font-size:9px;
}


/* BOTÓN BLOG */

.footer .footer-blog-button{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-top:14px;
  padding:11px 13px;

  border:1px solid rgba(95,141,255,.15);
  border-radius:12px;

  background:rgba(95,141,255,.06);

  color:#aac1ff;

  font-size:9px;
  font-weight:800;
  letter-spacing:.05em;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.footer .footer-blog-button:hover{
  background:rgba(95,141,255,.11);
  border-color:rgba(95,141,255,.26);
}

.footer .footer-blog-empty{
  margin:0;

  color:rgba(255,255,255,.50);

  font-size:10px;
  line-height:1.6;
}


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

@media(max-width:950px){

  .footer .footer-column-stack{
    order:2;
  }

}

@media(max-width:650px){

  .footer .footer-practice-links{
    grid-template-columns:1fr 1fr;
    column-gap:14px;
  }

}

@media(max-width:420px){

  .footer .footer-practice-links{
    grid-template-columns:1fr;
  }

}