
:root{
  --bg:#070708;
  --bg-2:#0c0d10;
  --panel:#121316;
  --panel-2:#17191d;
  --line:#262a2f;
  --text:#f1f2f3;
  --muted:#a1a6ad;
  --soft:#7f8691;
  --accent:#4a90d9;
  --accent-soft:#8cbce9;
  --max:1160px;
  --radius:10px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 40px),var(--max));margin:0 auto}

.topbar{
  background:#020202;
  border-bottom:1px solid #16181b;
  color:#8f9399;
  font-size:12px;
}
.topbar .container{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar a{color:#b8d0e7}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(8,8,9,.97);
  border-bottom:1px solid var(--line);
  box-shadow:0 4px 18px rgba(0,0,0,.18);
}
.header-row{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{display:flex;align-items:center}
.brand img.full-logo{
  width:245px;
  height:auto;
}
.nav{
  display:flex;
  align-items:center;
  gap:4px;
}
.nav a{
  color:#c8cad0;
  padding:29px 17px 26px;
  border-bottom:3px solid transparent;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.nav a:hover,.nav a.active{
  color:#fff;
  border-color:var(--accent);
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:620px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(5,5,6,.98) 0%,rgba(5,5,6,.92) 45%,rgba(5,5,6,.56) 100%),
    linear-gradient(135deg,#10141a,#090909 65%);
  border-bottom:1px solid var(--line);
}
.hero:before{
  content:"";
  position:absolute;
  right:-150px;
  top:-80px;
  width:650px;
  height:650px;
  background:
    linear-gradient(135deg,rgba(74,144,217,.16),transparent 55%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0 1px,transparent 1px 54px),
    repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0 1px,transparent 1px 54px);
  transform:rotate(-8deg);
  border:1px solid rgba(255,255,255,.03);
}
.hero:after{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:130px;
  top:110px;
  border-radius:50%;
  border:1px solid rgba(74,144,217,.35);
  box-shadow:0 0 0 36px rgba(74,144,217,.04),0 0 0 72px rgba(74,144,217,.025);
}
.hero-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
  width:100%;
}
.hero-content{
  width:auto;
  padding:86px 0;
}
.kicker{
  color:var(--accent-soft);
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:18px;
}
.hero h1,.page-hero h1,.section-title h2,.about-copy h2,.cta h2,.detail-card h2,.contact-box h2,.form-box h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
}
.hero h1{
  margin:0 0 22px;
  font-size:58px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.hero h1 span{color:var(--accent-soft)}
.hero p{
  max-width:650px;
  color:var(--muted);
  font-size:17px;
  margin:0;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.hero-points span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid #32363b;
  background:rgba(255,255,255,.025);
  color:#b7bbc1;
  border-radius:3px;
  font-size:12px;
}
.hero-points span:before{
  content:"";
  width:5px;
  height:5px;
  margin-right:8px;
  border-radius:50%;
  background:var(--accent);
}

.hero-panel{
  position:relative;
  background:linear-gradient(180deg,rgba(22,24,27,.96),rgba(12,13,15,.96));
  border:1px solid #30343a;
  border-radius:8px;
  box-shadow:0 20px 55px rgba(0,0,0,.38);
  overflow:hidden;
}
.hero-panel:before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:3px;
  background:var(--accent);
}
.hero-panel-heading{
  padding:20px 22px 16px;
  color:#f2f2f2;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  border-bottom:1px solid #2b2e33;
}
.hero-panel-item{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:15px;
  align-items:start;
  padding:20px 22px;
  border-bottom:1px solid #25282d;
}
.hero-panel-item:last-child{border-bottom:0}
.hero-panel-item b{
  color:#7eb4e4;
  font-size:12px;
  letter-spacing:.12em;
  padding-top:2px;
}
.hero-panel-item strong{
  display:block;
  color:#fff;
  font-size:14px;
  margin-bottom:4px;
}
.hero-panel-item small{
  display:block;
  color:#8d9198;
  font-size:12px;
  line-height:1.5;
}

.service-strip{
  background:#0b0b0c;
  border-bottom:1px solid var(--line);
}
.service-strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.service-mini{
  padding:24px 22px;
  border-right:1px solid var(--line);
}
.service-mini:last-child{border-right:0}
.service-mini strong{
  color:#fff;
  display:block;
  font-size:14px;
  margin-bottom:3px;
}
.service-mini span{color:#7f8287;font-size:12px}

.credibility-band{
  background:#101112;
  border-bottom:1px solid var(--line);
}
.credibility-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.credibility-grid > div{
  padding:24px 26px;
  border-right:1px solid var(--line);
}
.credibility-grid > div:last-child{border-right:0}
.credibility-grid strong{
  display:block;
  color:#fff;
  font-size:14px;
  margin-bottom:5px;
}
.credibility-grid span{
  color:#85888e;
  font-size:12px;
}

.section{padding:82px 0}
.section-alt{
  background:#0d0d0e;
  border-top:1px solid #1c1d20;
  border-bottom:1px solid #1c1d20;
}
.section-light{
  background:#f2f2f3;
  color:#151515;
}
.section-title{margin-bottom:38px}
.section-title .kicker{margin-bottom:10px}
.section-title h2{
  margin:0;
  font-size:40px;
  line-height:1.15;
}
.section-title p{
  color:#7b7e83;
  max-width:650px;
  margin:12px 0 0;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.about-visual{
  min-height:390px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:
    linear-gradient(135deg,rgba(74,144,217,.15),transparent 45%),
    repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0 1px,transparent 1px 34px),
    repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0 1px,transparent 1px 34px),
    #0e1013;
  position:relative;
  box-shadow:0 18px 40px rgba(0,0,0,.20);
  overflow:hidden;
}
.about-visual img{
  width:190px;
  position:absolute;
  right:45px;
  bottom:38px;
  opacity:.18;
}
.about-badge{
  position:absolute;
  left:30px;
  top:30px;
  right:30px;
  background:rgba(17,18,20,.9);
  border:1px solid #34373d;
  padding:22px;
  border-radius:7px;
}
.about-badge strong{
  display:block;
  font-size:25px;
  color:#fff;
}
.about-badge span{color:#96999f}
.about-copy h2{
  font-size:38px;
  line-height:1.18;
  margin:0 0 20px;
}
.about-copy p{color:#6b6e74}
.checks{
  list-style:none;
  padding:0;
  margin:24px 0 0;
}
.checks li{
  position:relative;
  padding:10px 0 10px 31px;
  border-bottom:1px solid #dddddf;
}
.checks li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:10px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#d7e7f6;
  color:#27689f;
  text-align:center;
  line-height:20px;
  font-size:12px;
  font-weight:700;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(#151619,#101113);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  min-height:280px;
  transition:.18s ease;
}
.card:after{
  content:"";
  position:absolute;
  right:-38px;
  bottom:-38px;
  width:88px;
  height:88px;
  border:1px solid rgba(74,144,217,.18);
  border-radius:50%;
}
.card:hover{
  transform:translateY(-4px);
  border-color:#3a5a79;
  box-shadow:0 14px 30px rgba(0,0,0,.24);
}
.card-number{
  color:var(--accent-soft);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
}
.card h3{
  margin:35px 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:400;
}
.card p{color:#96999f;margin:0}
.card a{
  display:inline-block;
  margin-top:24px;
  color:#8dbce8;
  font-size:12px;
  font-weight:700;
}

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #d7d7d9;
  border-radius:var(--radius);
  overflow:hidden;
}
.process-item{
  background:#fff;
  padding:28px 25px;
  min-height:210px;
  border-right:1px solid #dedee0;
}
.process-item:last-child{border-right:0}
.process-item b{
  color:#2d70a9;
  font-size:12px;
  letter-spacing:.12em;
}
.process-item h3{
  margin:24px 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  font-weight:400;
}
.process-item p{margin:0;color:#707379;font-size:14px}

.cta{
  border:1px solid #31475d;
  border-radius:var(--radius);
  background:linear-gradient(115deg,rgba(74,144,217,.22),transparent 55%), #11151a;
  padding:48px;
}
.cta h2{
  margin:0 0 12px;
  font-size:34px;
}
.cta p{color:#9ea3aa;max-width:700px;margin:0 0 24px}

.page-hero{
  padding:68px 0;
  background:
    linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.75)),
    linear-gradient(135deg,#12171d,#090909);
  border-bottom:1px solid var(--line);
}
.page-hero h1{
  margin:6px 0 10px;
  font-size:45px;
}
.page-hero p{color:#979aa0;max-width:700px;margin:0}

.service-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.detail-card{
  background:#fff;
  border:1px solid #dddde0;
  border-radius:8px;
  padding:30px;
  min-height:300px;
}
.detail-card .icon{
  width:44px;
  height:44px;
  border-radius:5px;
  background:#e4eef7;
  color:#2f6e9f;
  display:grid;
  place-items:center;
  font-weight:700;
}
.detail-card h2{
  font-size:24px;
  margin:24px 0 10px;
}
.detail-card p{color:#6f7278}
.detail-card ul{padding-left:18px;color:#44474d}

.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
}
.contact-box,.form-box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#111214;
  padding:30px;
}
.contact-box h2,.form-box h2{
  margin:0 0 15px;
  font-size:27px;
}
.contact-item{
  padding:18px 0;
  border-top:1px solid var(--line);
}
.contact-label{
  display:block;
  color:#787b82;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:700;
}
.contact-value{color:#fff;margin-top:4px;display:block}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
.field{display:grid;gap:6px}
.field.full{grid-column:1/-1}
.field label{font-size:12px;font-weight:700;color:#c9cbd0}
.field input,.field select,.field textarea{
  width:100%;
  background:#09090a;
  border:1px solid #33353a;
  color:#fff;
  border-radius:4px;
  padding:12px 13px;
  outline:none;
}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:4px;
  font-weight:700;
  font-size:13px;
  border:none;
  cursor:pointer;
  transition:.18s ease;
}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:#5aa0e3}

.footer{
  background:#050505;
  border-top:1px solid var(--line);
  padding:48px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr;
  gap:45px;
}
.footer p{color:#81848a;max-width:420px}
.footer h4{
  margin:0 0 13px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.footer-links{display:grid;gap:9px;color:#8d9096}
.footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid #1d1e21;
  display:flex;
  justify-content:space-between;
  color:#676a70;
  font-size:12px;
}


@media(max-width:950px){
  .hero-layout,.two-col,.contact-grid{grid-template-columns:1fr}
  .hero-content{padding:70px 0 35px}
  .hero-panel{margin-bottom:58px;max-width:650px}
  .service-strip-grid{grid-template-columns:1fr 1fr}
  .service-mini:nth-child(2){border-right:0}
  .service-mini:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .credibility-grid{grid-template-columns:1fr}
  .credibility-grid > div{border-right:0;border-bottom:1px solid var(--line)}
  .credibility-grid > div:last-child{border-bottom:0}
  .cards{grid-template-columns:1fr 1fr}
  .process{grid-template-columns:1fr 1fr}
  .process-item:nth-child(2){border-right:0}
  .process-item:nth-child(-n+2){border-bottom:1px solid #dedee0}
}
@media(max-width:720px){
  .topbar{display:none}
  .header-row{min-height:70px;flex-wrap:wrap;padding:9px 0}
  .brand img.full-logo{width:220px}
  .nav{width:100%;order:3;border-top:1px solid var(--line);justify-content:space-between}
  .nav a{padding:13px 8px 10px;font-size:11px}
  .hero{min-height:auto}
  .hero-content{padding:58px 0 30px}
  .hero h1{font-size:42px}
  .hero:after{display:none}
  .hero-panel{margin-bottom:48px}
  .hero-panel-item{grid-template-columns:40px 1fr;padding:17px 18px}
  .service-strip-grid,.cards,.process,.service-detail-grid,.form-grid,.footer-grid{grid-template-columns:1fr}
  .service-mini{border-right:0;border-bottom:1px solid var(--line)}
  .service-mini:last-child{border-bottom:0}
  .process-item{border-right:0;border-bottom:1px solid #dedee0}
  .process-item:last-child{border-bottom:0}
  .section{padding:62px 0}
  .section-title h2,.about-copy h2{font-size:32px}
  .cta{padding:34px 24px}
  .field.full{grid-column:auto}
  .footer-bottom{flex-direction:column;gap:7px}
  
}


/* Logo sizing refinement v4 */
.header-row{
  min-height:76px;
}
@media(max-width:950px){
  .brand img.full-logo{
    width:220px;
  }
}
@media(max-width:720px){
  .brand img.full-logo{
    width:180px;
  }
}


/* Smaller header logo v5 */
.brand img.full-logo{
  width:175px !important;
  max-width:175px !important;
  height:auto !important;
}
.header-row{
  min-height:68px !important;
}
@media(max-width:950px){
  .brand img.full-logo{
    width:160px !important;
    max-width:160px !important;
  }
}
@media(max-width:720px){
  .brand img.full-logo{
    width:140px !important;
    max-width:140px !important;
  }
}


/* Header cleanup v6 */
.topbar{
  display:none !important;
}
.site-header{
  top:0;
}
.header-row{
  min-height:78px !important;
  align-items:center !important;
}
.brand{
  align-self:center !important;
  display:flex !important;
  align-items:center !important;
}
.brand img.full-logo{
  display:block !important;
  margin:0 !important;
}
.nav{
  align-self:stretch;
  display:flex;
  align-items:center;
}
.nav a{
  display:flex;
  align-items:center;
  height:100%;
  padding-top:0 !important;
  padding-bottom:0 !important;
}

@media(max-width:720px){
  .header-row{
    min-height:70px !important;
  }
  .brand{
    min-height:50px;
  }
  .nav{
    align-self:auto;
    height:auto;
  }
  .nav a{
    height:auto;
    padding:13px 8px 10px !important;
  }
}
