
:root{
  --blue:#086ee8;
  --blue2:#0b98f3;
  --navy:#071b3d;
  --ink:#0a1730;
  --muted:#58657a;
  --line:#dce6f1;
  --soft:#f7faff;
  --white:#fff;
  --container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
}
img{display:block;max-width:100%}
a{color:inherit}
.container{width:min(calc(100% - 40px),var(--container));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(7,27,61,.08);
  backdrop-filter:blur(14px);
}
.header-inner{
  min-height:86px;
  display:grid;
  grid-template-columns:280px 1fr 225px;
  gap:24px;
  align-items:center;
}
.site-logo img{width:240px;max-height:66px;object-fit:contain}
.main-nav{display:flex;justify-content:center;gap:38px}
.main-nav a{
  position:relative;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  padding:31px 0 28px;
}
.main-nav a:hover,.main-nav a.active{color:var(--blue)}
.main-nav a.active:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:18px;
  height:3px;border-radius:3px;
  background:var(--blue);
}
.header-phone{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
  text-decoration:none;
  border-left:1px solid #ced9e6;
  padding-left:22px;
}
.header-phone .phone-icon{font-size:26px;color:var(--navy)}
.header-phone span:last-child{display:grid}
.header-phone small{font-size:12px;color:#3f4e61}
.header-phone strong{font-size:18px;color:var(--blue)}
.menu-toggle{display:none}

.hero{
  position:relative;
  min-height:560px;
  background-image:url('../images/it-solutions-plus-hero.jpg');
  background-size:cover;
  background-position:center right;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.93) 33%,rgba(255,255,255,.52) 53%,rgba(255,255,255,.03) 76%);
}
.hero-content{position:relative;min-height:560px;display:flex;align-items:center}
.hero-copy{width:min(610px,55%)}
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:2.7px;
  color:var(--blue);
}
.eyebrow.blue{color:var(--blue)}
.eyebrow.light{color:#d9efff}
.hero h1{
  margin:15px 0 17px;
  font-size:clamp(48px,5.1vw,72px);
  line-height:1.01;
  letter-spacing:-2.6px;
}
.hero h1 span{color:var(--blue)}
.hero p{
  width:min(560px,100%);
  margin:0;
  color:#49566b;
  font-size:18px;
  line-height:1.52;
}
.hero-actions{display:flex;gap:14px;margin-top:26px;flex-wrap:wrap}
.support-button,.contact-button{
  min-width:220px;
  min-height:68px;
  border-radius:7px;
  display:flex;
  align-items:center;
  gap:13px;
  padding:0 21px;
  text-decoration:none;
  box-shadow:0 7px 20px rgba(6,80,165,.12);
}
.support-button{background:linear-gradient(135deg,#0b9af2,#086be5);color:#fff}
.contact-button{background:#fff;color:var(--blue);border:1px solid var(--blue)}
.button-icon{
  width:38px;height:38px;
  border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  border:2px solid currentColor;
  font-size:20px;font-weight:900;
}
.support-button span:last-child,.contact-button span:last-child{display:grid}
.support-button strong,.contact-button strong{font-size:17px;line-height:1.15}
.support-button small,.contact-button small{font-size:12px;opacity:.8;margin-top:3px}

.services-section{padding:68px 0 76px;background:#fff}
.section-heading{max-width:850px;margin-bottom:30px}
.section-heading.centered{text-align:center;margin-left:auto;margin-right:auto}
.section-heading h2{
  margin:7px 0 9px;
  font-size:clamp(31px,3.6vw,47px);
  letter-spacing:-1.3px;
  line-height:1.05;
}
.section-heading p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}
.services-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.service-card{
  min-height:260px;
  padding:20px 18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 6px 18px rgba(9,48,91,.035);
  transition:.2s ease;
}
.service-card:hover{transform:translateY(-4px);box-shadow:0 15px 35px rgba(9,48,91,.09)}
.service-symbol{
  height:45px;
  display:flex;
  align-items:center;
  color:var(--blue);
  font-size:37px;
  line-height:1;
  font-weight:900;
}
.service-card h3{
  min-height:48px;
  margin:8px 0 8px;
  font-size:18px;
  line-height:1.15;
}
.service-card p{
  min-height:105px;
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}
.service-card a{
  text-decoration:none;
  color:var(--blue);
  font-size:14px;
  font-weight:800;
}

.why-section{padding:54px 0 68px;background:linear-gradient(180deg,#f5f9fd,#fff)}
.why-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:center}
.why-image-panel{
  min-height:350px;
  border-radius:10px;
  background-image:url('../images/it-solutions-plus-hero.jpg');
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.why-image-panel:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(5,30,57,.58),transparent 60%);
}
.why-image-overlay{
  position:absolute;
  left:24px;bottom:20px;
  z-index:2;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
}
.why-copy h2{
  margin:7px 0 12px;
  font-size:clamp(34px,4vw,51px);
  line-height:1.05;
  letter-spacing:-1.4px;
}
.why-copy>p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.why-list{display:grid;gap:13px}
.why-list>div{display:flex;align-items:center;gap:10px}
.why-list>div span{
  width:20px;height:20px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:900;
}
.why-list strong{font-size:15px}

.support-strip{
  padding:55px 0;
  background:linear-gradient(130deg,#086ee8,#079eea);
  color:#fff;
}
.support-strip-inner{display:flex;justify-content:space-between;align-items:center;gap:35px}
.support-strip h2{
  margin:7px 0 6px;
  font-size:clamp(31px,3.5vw,45px);
  line-height:1.05;
}
.support-strip p{margin:0;color:#dff2ff}
.white-support-button{
  flex:0 0 auto;
  min-height:52px;
  padding:0 22px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;color:var(--blue);
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}

.site-footer{padding:55px 0 20px;background:#07182d;color:#aab9ca}
.footer-grid{display:grid;grid-template-columns:1.4fr .7fr 1fr;gap:55px}
.footer-about img{width:250px;filter:brightness(0) invert(1);opacity:.95}
.footer-about p{max-width:500px;line-height:1.65}
.footer-column{display:grid;align-content:start;gap:9px}
.footer-column h4{margin:0 0 7px;color:#fff}
.footer-column a{text-decoration:none;color:#b8c6d4}
.footer-column a:hover{color:#fff}
.footer-bottom{
  display:flex;justify-content:space-between;
  margin-top:36px;padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:12px;
}
.basic-page{padding:80px 0}

@media(max-width:1050px){
  .header-inner{grid-template-columns:230px 1fr 185px}
  .site-logo img{width:210px}
  .main-nav{gap:24px}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .service-card p{min-height:85px}
}
@media(max-width:800px){
  .header-inner{display:flex;min-height:74px}
  .site-logo{margin-right:auto}
  .site-logo img{width:205px;max-height:58px}
  .header-phone{display:none}
  .menu-toggle{
    display:block;
    width:44px;height:44px;
    padding:9px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
  }
  .menu-toggle span{display:block;height:2px;background:var(--navy);margin:5px 0}
  .main-nav{
    display:none;
    position:absolute;
    top:74px;left:14px;right:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    box-shadow:0 18px 45px rgba(5,31,52,.15);
    padding:12px;
    flex-direction:column;
    gap:0;
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:13px}
  .main-nav a.active:after{display:none}
  .hero,.hero-content{min-height:520px}
  .hero-overlay{background:linear-gradient(90deg,rgba(255,255,255,.98),rgba(255,255,255,.93) 65%,rgba(255,255,255,.55))}
  .hero-copy{width:70%}
  .why-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .container{width:min(calc(100% - 28px),var(--container))}
  .hero{
    min-height:auto;
    background-position:62% center;
  }
  .hero-content{min-height:auto;padding:64px 0 70px}
  .hero-overlay{background:rgba(255,255,255,.91)}
  .hero-copy{width:100%}
  .hero h1{font-size:44px}
  .hero-actions{display:grid}
  .support-button,.contact-button{min-width:0;width:100%}
  .services-grid{grid-template-columns:1fr}
  .service-card{min-height:auto}
  .service-card h3,.service-card p{min-height:0}
  .service-card p{margin-bottom:17px}
  .why-image-panel{min-height:270px}
  .support-strip-inner{flex-direction:column;align-items:flex-start}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px}
}


/* V3 — Services page */
.services-hero-page{
  padding:78px 0;
  background:linear-gradient(135deg,#f5f9fe 0%,#ffffff 72%);
  border-bottom:1px solid var(--line);
}
.services-hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:56px;
  align-items:center;
}
.services-hero-page h1{
  margin:10px 0 18px;
  max-width:760px;
  font-size:clamp(46px,5.4vw,70px);
  line-height:1.02;
  letter-spacing:-2px;
}
.services-hero-page p{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.services-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.support-button.compact,
.contact-button.compact{
  min-width:210px;
  min-height:62px;
}
.services-summary-card{
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(7,27,61,.07);
}
.services-summary-card h3{
  margin:8px 0 16px;
  font-size:27px;
  line-height:1.25;
}
.services-summary-card ul{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.9;
}
.section{
  padding:78px 0;
}
.section-soft{
  background:var(--soft);
}
.services-detail-section{
  padding-top:82px;
}
.detail-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:30px;
}
.detail-card{
  padding:27px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 8px 25px rgba(8,48,88,.04);
}
.detail-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
}
.detail-card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.65;
}
.detail-card ul{
  margin:0;
  padding-left:19px;
  color:var(--muted);
  line-height:1.85;
  font-size:14px;
}
.services-cta{
  padding:60px 0;
  color:#fff;
  background:linear-gradient(130deg,#086ee8,#079eea);
}
.services-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:36px;
}
.services-cta h2{
  margin:7px 0 7px;
  font-size:clamp(34px,4vw,48px);
  line-height:1.05;
}
.services-cta p{
  max-width:760px;
  margin:0;
  color:#dff1ff;
  line-height:1.6;
}
.services-cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-end;
}
.services-phone{
  color:#fff;
  text-decoration:none;
  font-size:19px;
  font-weight:900;
}

@media(max-width:980px){
  .services-hero-grid{grid-template-columns:1fr}
  .detail-grid{grid-template-columns:1fr 1fr}
  .services-cta-inner{flex-direction:column;align-items:flex-start}
  .services-cta-actions{align-items:flex-start}
}
@media(max-width:640px){
  .services-hero-page{padding:54px 0}
  .detail-grid{grid-template-columns:1fr}
  .detail-card{padding:23px}
}


/* V4 — About Us */
.about-hero-page{
  padding:80px 0;
  background:linear-gradient(135deg,#f5f9fe 0%,#fff 72%);
  border-bottom:1px solid var(--line);
}
.about-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.about-hero-page h1{
  margin:10px 0 18px;
  font-size:clamp(46px,5.5vw,70px);
  line-height:1.02;
  letter-spacing:-2px;
}
.about-hero-page p{
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  margin:0;
}
.about-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.about-year-card{
  padding:34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(7,27,61,.07);
}
.about-year{
  display:block;
  color:var(--blue);
  font-size:72px;
  line-height:1;
  font-weight:900;
  letter-spacing:-3px;
}
.about-year-card strong{
  display:block;
  margin:12px 0 9px;
  font-size:22px;
}
.about-year-card p{
  font-size:15px;
  line-height:1.65;
}
.about-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.about-story-image{
  overflow:hidden;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(7,27,61,.09);
}
.about-story-image img{
  width:100%;
  min-height:370px;
  object-fit:cover;
  object-position:center right;
}
.about-story-copy h2{
  margin:8px 0 15px;
  font-size:clamp(36px,4.2vw,53px);
  line-height:1.05;
  letter-spacing:-1.4px;
}
.about-story-copy p{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.about-values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:32px;
}
.about-value-card{
  padding:25px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
}
.about-value-card>span{
  display:block;
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:15px;
}
.about-value-card h3{
  margin:0 0 9px;
  font-size:20px;
}
.about-value-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.about-capabilities{
  padding:70px 0;
  color:#fff;
  background:#071b3d;
}
.about-capabilities-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:55px;
  align-items:center;
}
.about-capabilities h2{
  margin:8px 0 12px;
  font-size:clamp(36px,4.2vw,52px);
  line-height:1.05;
}
.about-capabilities p{
  margin:0;
  color:#aebed1;
  line-height:1.7;
}
.about-capability-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}
.about-capability-list>div{
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.04);
  font-weight:700;
}

@media(max-width:980px){
  .about-hero-grid,
  .about-story-grid,
  .about-capabilities-grid{grid-template-columns:1fr}
  .about-values-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .about-hero-page{padding:55px 0}
  .about-year{font-size:58px}
  .about-values-grid,
  .about-capability-list{grid-template-columns:1fr}
  .about-story-image img{min-height:270px}
}


/* V5 — Contact Us */
.contact-hero-page{
  padding:82px 0;
  background:linear-gradient(135deg,#f5f9fe 0%,#fff 72%);
  border-bottom:1px solid var(--line);
}
.contact-hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:58px;
  align-items:center;
}
.contact-hero-page h1{
  margin:10px 0 18px;
  max-width:780px;
  font-size:clamp(46px,5.4vw,70px);
  line-height:1.02;
  letter-spacing:-2px;
}
.contact-hero-page p{
  max-width:730px;
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.contact-page-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:27px;
}
.contact-info-card{
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(7,27,61,.07);
}
.contact-info-row{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  align-items:center;
  padding:17px 0;
  border-bottom:1px solid var(--line);
}
.contact-info-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.contact-info-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf4ff;
  color:var(--blue);
  font-size:20px;
  font-weight:900;
}
.contact-info-row div{
  display:grid;
  gap:3px;
}
.contact-info-row small{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.contact-info-row a,
.contact-info-row strong{
  color:var(--navy);
  font-size:17px;
  font-weight:800;
  text-decoration:none;
  overflow-wrap:anywhere;
}
.contact-info-row a:hover{
  color:var(--blue);
}
.contact-services-section{
  padding-top:75px;
  padding-bottom:80px;
}
.contact-topic-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:31px;
}
.contact-topic-grid>div{
  padding:25px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 7px 22px rgba(7,27,61,.035);
}
.contact-topic-grid>div>span{
  display:block;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:13px;
}
.contact-topic-grid h3{
  margin:0 0 8px;
  font-size:20px;
}
.contact-topic-grid p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
@media(max-width:980px){
  .contact-hero-grid{grid-template-columns:1fr}
  .contact-topic-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .contact-hero-page{padding:55px 0}
  .contact-topic-grid{grid-template-columns:1fr}
}


/* V6 — Privacy, Accessibility, Cookie Consent */
.legal-hero{
  padding:72px 0 54px;
  background:linear-gradient(135deg,#f5f9fe 0%,#fff 75%);
  border-bottom:1px solid var(--line);
}
.legal-hero h1{
  margin:10px 0 8px;
  font-size:clamp(42px,5vw,64px);
  line-height:1.04;
  letter-spacing:-1.8px;
}
.legal-hero p{margin:0;color:var(--muted)}
.legal-page{padding:58px 0 82px}
.legal-content{max-width:860px}
.legal-content>p{
  color:#3f4e61;
  font-size:16px;
  line-height:1.78;
}
.legal-content h2{
  margin:34px 0 10px;
  color:var(--navy);
  font-size:25px;
  letter-spacing:-.4px;
}
.legal-content a{color:var(--blue)}
.legal-note{
  margin-top:34px!important;
  padding:18px 20px;
  background:#f6f9fd;
  border:1px solid var(--line);
  border-radius:12px;
}
.accessibility-contact{
  margin:20px 0;
  padding:20px;
  background:#f7faff;
  border:1px solid var(--line);
  border-radius:12px;
}
.accessibility-contact p{margin:5px 0}
.footer-legal-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.footer-legal-links a,
.cookie-settings-link{
  color:inherit;
  font:inherit;
  text-decoration:none;
}
.footer-legal-links a:hover,
.cookie-settings-link:hover{
  text-decoration:underline;
}
.cookie-settings-link{
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}
.cookie-consent[hidden]{display:none!important}
.cookie-consent{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:99999;
  padding:16px;
  background:rgba(7,27,61,.98);
  color:#fff;
  box-shadow:0 -12px 32px rgba(0,0,0,.16);
  transform:translateY(100%);
  opacity:0;
  transition:transform .22s ease,opacity .22s ease;
}
.cookie-consent.visible{
  transform:translateY(0);
  opacity:1;
}
.cookie-consent-inner{
  width:min(calc(100% - 16px),1200px);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
}
.cookie-consent-copy strong{
  display:block;
  margin-bottom:5px;
  font-size:17px;
}
.cookie-consent-copy p{
  margin:0;
  max-width:820px;
  color:#d7e3ef;
  font-size:14px;
  line-height:1.55;
}
.cookie-consent-copy a{
  color:#fff;
  text-decoration:underline;
}
.cookie-consent-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cookie-btn{
  min-height:42px;
  padding:0 17px;
  border-radius:7px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.cookie-btn.primary{
  border:1px solid #168af3;
  background:#168af3;
  color:#fff;
}
.cookie-btn.secondary{
  border:1px solid rgba(255,255,255,.46);
  background:transparent;
  color:#fff;
}
.cookie-btn:focus-visible,
.cookie-settings-link:focus-visible{
  outline:3px solid #7bc1ff;
  outline-offset:3px;
}
@media(max-width:800px){
  .cookie-consent-inner{grid-template-columns:1fr}
  .cookie-consent-actions{justify-content:flex-start}
}
