/* Refresh It — design tokens
   Palette matches the brand mark: deep navy chassis, cyan/blue accent. */
:root{
  --bg: #0b111a;
  --surface: #121a26;
  --surface-2: #182233;
  --light: #f4f7fb;
  --light-2: #ffffff;
  --line: #263140;
  --line-light: #e2e8f0;
  --text: #eef2f7;
  --text-dim: #92a1b3;
  --ink: #16202e;
  --ink-dim: #5b6b7f;
  --accent: #2fb2e8;
  --accent-bright: #56c6f5;
  --accent-deep: #1b7fb0;
  --radius: 6px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;}
img{max-width:100%;display:block;}

h1,h2,h3{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2.4rem,5vw,4rem);}
h2{font-size:clamp(1.6rem,3vw,2.3rem);}
h3{font-size:1.1rem;}
p{margin:0 0 1em;max-width:62ch;color:var(--text-dim);}
p.lead{font-size:1.1rem;color:var(--text);}

.wrap{max-width:1160px;margin:0 auto;padding:0 28px;}
section{padding:80px 0;}
.hairline{border:0;border-top:1px solid var(--line);margin:0;}

/* Sections that sit on the light background use dark ink text */
.on-light{background:var(--light);}
.on-light p{color:var(--ink-dim);}
.on-light h1,.on-light h2,.on-light h3{color:var(--ink);}
.on-light .kicker{color:var(--accent-deep);}

/* --- Header / nav --- */
header.site{
  position:sticky;top:0;z-index:20;
  background:linear-gradient(90deg, rgba(11,17,26,.96), rgba(18,40,56,.94), rgba(11,17,26,.96));
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 28px;max-width:1160px;margin:0 auto;gap:20px;
}
.logo{
  font-family:var(--font-display);font-weight:600;font-size:1.1rem;
  text-decoration:none;color:var(--text);
  display:flex;align-items:center;gap:10px;flex-shrink:0;
}
.logo-mark{width:32px;height:32px;flex-shrink:0;}
.logo-full{height:72px;width:auto;display:block;}
.navlinks{display:flex;gap:30px;list-style:none;margin:0;padding:0;}
.navlinks a{
  text-decoration:none;color:var(--text-dim);font-size:.95rem;font-weight:500;
  padding:6px 0;border-bottom:1px solid transparent;transition:color .15s, border-color .15s;
}
.navlinks a:hover,.navlinks a.active{color:var(--text);border-color:var(--accent);}
.nav-cta{margin-left:auto;}
.navtoggle{display:none;background:none;border:1px solid var(--line);color:var(--text);
  padding:8px 12px;border-radius:var(--radius);font-size:1rem;}

@media (max-width:900px){
  .navlinks{
    position:absolute;top:100%;left:0;right:0;background:var(--surface);
    flex-direction:column;gap:0;border-bottom:1px solid var(--line);
    max-height:0;overflow:hidden;transition:max-height .25s ease;
  }
  .navlinks.open{max-height:320px;}
  .navlinks li{border-top:1px solid var(--line);}
  .navlinks a{display:block;padding:16px 28px;}
  .navtoggle{display:block;}
  .nav-cta{display:none;}
}

/* --- Buttons --- */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 24px;border-radius:var(--radius);
  font-family:var(--font-body);font-weight:600;font-size:.95rem;
  text-decoration:none;border:1px solid transparent;cursor:pointer;
  transition:transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--accent);color:#04202c;}
.btn-primary:hover{background:var(--accent-bright);}
.btn-ghost{border-color:var(--line);color:var(--text);background:rgba(255,255,255,.03);}
.btn-ghost:hover{border-color:var(--accent);}
.btn-sm{padding:9px 16px;font-size:.85rem;}
.on-light .btn-ghost{border-color:var(--line-light);color:var(--ink);background:transparent;}

/* --- Hero --- */
.hero{
  position:relative;overflow:hidden;
  min-height:clamp(440px, 62vh, 660px);
  display:flex;align-items:center;
  padding:120px 0 60px;
  background-image:
    linear-gradient(90deg, rgba(6,10,16,.94) 0%, rgba(6,10,16,.8) 38%, rgba(6,10,16,.35) 72%, rgba(6,10,16,.1) 100%),
    url('img/hero-bg.jpg');
  background-size:cover, cover;
  background-position:center, center;
  background-repeat:no-repeat, no-repeat;
}
.hero .wrap{position:relative;z-index:1;display:flex;justify-content:flex-start;align-items:center;}
.hero-text{margin-left:0;margin-right:auto;text-align:left;}
.hero-trace{
  position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(ellipse 700px 400px at 80% 20%, #000 0%, transparent 70%);
  mask-image:radial-gradient(ellipse 700px 400px at 80% 20%, #000 0%, transparent 70%);
}
.hero-tag{
  font-family:var(--font-body);color:var(--accent);font-size:.85rem;
  font-weight:700;margin-bottom:16px;display:block;letter-spacing:.04em;text-transform:uppercase;
}
.hero-text{max-width:600px;}
.hero-text .lead{max-width:560px;}
.hero-actions{display:flex;gap:16px;margin-top:32px;flex-wrap:wrap;}
.accent-text{color:var(--accent);}
.hero-badges{
  display:flex;gap:36px;margin-top:48px;flex-wrap:wrap;
}
.hero-badges div{display:flex;align-items:center;gap:10px;}
.hero-badges span{font-size:.85rem;font-weight:600;color:var(--text);line-height:1.3;}

/* Badges row under hero */
.badges{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);
  border-top:1px solid var(--line);
}
.badges div{
  background:var(--surface);padding:22px 20px;display:flex;align-items:center;gap:12px;
}
.badges svg{flex-shrink:0;}
.badges strong{display:block;font-size:.92rem;color:var(--text);}
@media (max-width:800px){.badges{grid-template-columns:1fr 1fr;}}

/* --- Feature / service cards --- */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);}
.on-light .grid3{background:var(--line-light);border-color:var(--line-light);}
.grid3 .card{background:var(--surface);padding:30px 26px;}
.on-light .grid3 .card{background:var(--light-2);}
@media (max-width:800px){.grid3{grid-template-columns:1fr;}}
.card svg{margin-bottom:16px;}
.card h3{margin-bottom:8px;}
.card p{margin-bottom:10px;font-size:.92rem;}
.card .more{color:var(--accent-deep);font-weight:600;font-size:.88rem;text-decoration:none;}

/* Services grid — 6 floating cards, 3 per row */
.grid-services{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;}
.service-card{
  background:var(--light-2);border-radius:12px;padding:24px 16px;
  border:1px solid var(--line-light);
  box-shadow:0 4px 16px rgba(22,32,46,.06);
  text-align:center;
}
.service-card svg{display:block;margin:0 auto 14px;}
.service-card h3{margin-bottom:8px;color:var(--ink);font-size:1rem;}
.service-card p{margin:0 auto 10px;font-size:.85rem;color:var(--ink-dim);}
.service-card .more{color:var(--accent-deep);font-weight:600;font-size:.85rem;text-decoration:none;}
@media (max-width:1100px){.grid-services{grid-template-columns:repeat(3,1fr);}}
@media (max-width:640px){.grid-services{grid-template-columns:1fr 1fr;}}

/* --- Process (real sequence, numbered) --- */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;}
.process::before{content:"";position:absolute;top:22px;left:0;right:0;height:1px;background:var(--line);}
.on-light .process::before{background:var(--line-light);}
.process .step{position:relative;padding-top:60px;padding-right:24px;}
.process .num{
  position:absolute;top:0;left:0;width:44px;height:44px;border-radius:50%;
  background:var(--surface);border:1px solid var(--accent);color:var(--accent);
  display:flex;align-items:center;justify-content:center;font-family:var(--font-display);
  font-weight:600;z-index:1;
}
.on-light .process .num{background:var(--light);}
@media (max-width:800px){.process{grid-template-columns:1fr;gap:36px;}.process::before{display:none;}}

/* --- Section heading pattern --- */
.section-head{max-width:640px;margin-bottom:44px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head .kicker{color:var(--accent);font-weight:700;font-size:.85rem;letter-spacing:.04em;text-transform:uppercase;}

/* --- Why-us checklist --- */
.why-us{background:var(--surface);}
.why-us-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.why-us-grid{grid-template-columns:1fr;}}
.checklist-inline{display:flex;flex-wrap:wrap;gap:24px 32px;margin-top:28px;}
.checklist-inline div{display:flex;align-items:center;gap:8px;}
.checklist-inline span{font-weight:600;font-size:.92rem;color:var(--text);}
.why-us-visual{position:relative;}
.why-us-photo{
  aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;position:relative;
  background:linear-gradient(155deg, var(--surface-2), var(--bg));
  border:1px solid var(--line);
}
.why-us-photo img{width:100%;height:100%;object-fit:cover;}
.why-us-photo .placeholder-label{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  color:var(--text-dim);font-size:.85rem;text-align:center;padding:20px;
}
.trust-card{
  position:absolute;left:-24px;bottom:-24px;max-width:250px;
  background:var(--surface-2);border:1px solid var(--line);border-radius:10px;
  padding:20px 22px;box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.trust-card svg{margin-bottom:10px;}
.trust-card p{margin:0;font-size:.88rem;color:var(--text);}
@media (max-width:900px){.trust-card{position:static;max-width:none;margin-top:16px;}}

/* --- Table (pricing) --- */
table.pricing{width:100%;border-collapse:collapse;margin:28px 0;}
table.pricing th,table.pricing td{text-align:left;padding:16px 12px;border-bottom:1px solid var(--line);}
table.pricing th{color:var(--text-dim);font-weight:600;font-size:.85rem;}
table.pricing td:last-child,table.pricing th:last-child{text-align:right;color:var(--accent);font-family:var(--font-display);}
.note{
  border-left:3px solid var(--accent-deep);background:var(--surface-2);
  padding:16px 20px;border-radius:0 var(--radius) var(--radius) 0;color:var(--text);
  font-size:.92rem;
}

/* --- Equipment list (Despre) --- */
.equip{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:12px 32px;}
.equip li{padding:12px 0;border-bottom:1px solid var(--line);color:var(--text-dim);font-size:.95rem;}
.equip li b{color:var(--text);font-weight:600;}
@media (max-width:700px){.equip{grid-template-columns:1fr;}}

/* --- Contact --- */
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:60px;}
@media (max-width:800px){.contact-grid{grid-template-columns:1fr;}}
.field{margin-bottom:20px;}
.field label{display:block;font-size:.85rem;color:var(--text-dim);margin-bottom:6px;}
.field input,.field textarea{
  width:100%;background:var(--surface);border:1px solid var(--line);
  color:var(--text);padding:12px 14px;border-radius:var(--radius);
  font-family:var(--font-body);font-size:.95rem;
}
.field textarea{resize:vertical;min-height:120px;}
.field input:focus,.field textarea:focus{outline:2px solid var(--accent);outline-offset:1px;}
.contact-info dt{color:var(--text-dim);font-size:.85rem;margin-top:20px;}
.contact-info dd{margin:4px 0 0;font-family:var(--font-display);font-size:1.1rem;}

/* --- Footer --- */
footer.site{border-top:1px solid var(--line);padding:40px 0;}
footer.site .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;}
footer.site p{margin:0;font-size:.85rem;color:var(--text-dim);}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
}

/* === Refresh IT visual pass — homepage reference === */
:root{
  --bg:#07111b;
  --surface:#0d1a28;
  --surface-2:#122337;
  --light:#f5f8fb;
  --light-2:#ffffff;
  --line:#223345;
  --line-light:#e2e8ef;
  --text:#f4f8fb;
  --text-dim:#a9b7c6;
  --ink:#122033;
  --ink-dim:#607087;
  --accent:#19bce9;
  --accent-bright:#4bd2f5;
  --accent-deep:#0799c8;
  --radius:8px;
}

.wrap{max-width:1280px;padding-left:32px;padding-right:32px;}
section{padding:64px 0;}

header.site{
  background:rgba(7,17,27,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(80,180,220,.12);
}
.nav{max-width:1280px;padding:7px 32px;min-height:76px;}
.logo-full{height:68px;}
.navlinks{gap:34px;}
.navlinks a{font-size:1rem;color:#e1e8ef;padding:7px 0;border-bottom:2px solid transparent;}
.navlinks a:hover,.navlinks a.active{color:var(--accent);border-color:var(--accent);}
.nav-cta{padding:11px 19px;border:1px solid var(--accent);background:rgba(25,188,233,.08);color:#eefaff;}
.nav-cta:hover{background:var(--accent);color:#06202b;}

.btn{border-radius:8px;}
.btn-primary{background:var(--accent);color:#06202b;box-shadow:0 8px 24px rgba(25,188,233,.16);}
.btn-primary:hover{background:var(--accent-bright);}
.btn-ghost{border-color:var(--accent);background:rgba(5,20,31,.45);}

.hero{
  min-height:395px;
  height:395px;
  padding:38px 0 30px;
  align-items:center;
  background-image:
    linear-gradient(90deg,rgba(4,10,16,.93) 0%,rgba(4,10,16,.78) 35%,rgba(4,10,16,.38) 66%,rgba(4,10,16,.10) 100%),
    url('img/hero-bg.jpg');
  background-size:cover,cover;
  background-position:center,center;
}
.hero-text{max-width:620px;margin-left:0;margin-right:auto;text-align:left;}
.hero-tag{font-size:.82rem;letter-spacing:.12em;margin-bottom:12px;}
h1{font-size:clamp(2.5rem,4vw,3.5rem);}
.hero-text .lead{font-size:1rem;max-width:570px;line-height:1.55;}
.hero-actions{margin-top:22px;gap:14px;}
.hero-badges{gap:30px;margin-top:28px;}
.hero-badges div{gap:9px;}
.hero-badges span{font-size:.78rem;}

.on-light{padding-top:42px;padding-bottom:52px;background:#f6f9fc;}
.section-head{margin-bottom:28px;}
.section-head .kicker{letter-spacing:.13em;font-size:.76rem;}
.section-head h2{font-size:clamp(1.8rem,3vw,2.25rem);}
.grid-services{gap:14px;}
.service-card{padding:20px 14px 18px;border-radius:9px;box-shadow:0 5px 18px rgba(20,35,55,.07);}
.service-card svg{margin-bottom:12px;}
.service-card h3{font-size:.98rem;}
.service-card p{font-size:.82rem;line-height:1.45;min-height:50px;}
.service-card .more{font-size:.82rem;color:var(--accent-deep);}

.why-us{padding:58px 0 64px;background:#071522;}
.why-us-grid{gap:52px;}
.why-us h2{font-size:clamp(1.9rem,3vw,2.5rem);}
.why-us .lead{color:#e5edf4;}
.why-us-photo{border-radius:10px;border-color:rgba(80,180,220,.18);}
.trust-card{background:rgba(12,30,45,.96);border-color:rgba(25,188,233,.22);}

@media (max-width:1100px){
  .nav{padding-left:24px;padding-right:24px;}
  .wrap{padding-left:24px;padding-right:24px;}
  .navlinks{gap:22px;}
  .hero{height:430px;min-height:430px;}
  .grid-services{grid-template-columns:repeat(3,1fr);}
}

@media (max-width:640px){
  .nav{min-height:68px;padding:6px 16px;}
  .logo-full{height:54px;}
  .wrap{padding-left:18px;padding-right:18px;}
  section{padding:48px 0;}
  .hero{height:auto;min-height:560px;padding:55px 0 38px;background-position:center,center;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn{justify-content:center;}
  .hero-badges{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:28px;}
  .grid-services{grid-template-columns:1fr 1fr;}
}

/* Professional service imagery */
.service-card{overflow:hidden;padding:0 0 18px;}
.service-image{display:block;width:100%;height:132px;object-fit:cover;margin:0 0 16px;border-radius:11px 11px 0 0;}
.service-card h3,.service-card p,.service-card .more{margin-left:16px;margin-right:16px;}
.service-card h3{margin-bottom:8px;}
.service-card p{margin-bottom:10px;}
@media (max-width:640px){.service-image{height:110px;}}


/* === Final homepage Hero alignment === */
.hero .wrap{
  width:100%;
  max-width:1280px;
  margin-left:auto;
  margin-right:auto;
  padding-left:32px;
  padding-right:32px;
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
.hero-text{
  width:100%;
  max-width:620px;
  margin-left:0 !important;
  margin-right:auto !important;
  text-align:left !important;
}
@media (max-width:1100px){
  .hero .wrap{padding-left:24px;padding-right:24px;}
}
@media (max-width:640px){
  .hero .wrap{padding-left:18px;padding-right:18px;}
}


/* === Homepage: Why Refresh IT / Google reviews === */
.why-kicker{display:inline-block;color:var(--accent);font-family:var(--font-body);font-size:.82rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;margin-bottom:12px;}
.why-us-photo{background:#071522;}
.why-us-photo img{display:block;width:100%;height:100%;object-fit:cover;}
.review-card{
  position:absolute;left:-24px;bottom:-24px;width:min(330px,78%);
  background:rgba(12,30,45,.97);border:1px solid rgba(25,188,233,.22);border-radius:10px;
  padding:20px 22px;box-shadow:0 12px 30px rgba(0,0,0,.38);
  min-height:190px;display:flex;flex-direction:column;justify-content:center;
}
.review-brand{display:flex;align-items:center;gap:8px;color:#dfeaf2;font-size:.82rem;font-weight:600;margin-bottom:8px;}
.google-mark{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:#fff;color:#4285f4;font-weight:800;font-family:Arial,sans-serif;}
.review-stars{color:#ffc83d;letter-spacing:2px;font-size:1rem;margin-bottom:8px;}
.review-text{color:#eef2f7;font-size:.9rem;line-height:1.5;margin:0 0 10px;max-width:none;}
.review-author{color:var(--accent);font-size:.82rem;font-weight:600;}
.review-card.review-fade-out .review-text,.review-card.review-fade-out .review-author,.review-card.review-fade-out .review-stars{opacity:0;transition:opacity .35s ease;}
.review-text,.review-author,.review-stars{transition:opacity .35s ease;}
@media (max-width:900px){.review-card{position:static;width:100%;margin-top:16px;}}


/* === Why Refresh IT: reference-style blue gradient + workshop background === */
.why-us{
  position:relative;
  overflow:hidden;
  background:#071421;
}
.why-us::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-image:
    linear-gradient(90deg,
      rgba(3,10,18,.98) 0%,
      rgba(4,14,24,.94) 28%,
      rgba(4,19,31,.78) 52%,
      rgba(5,22,36,.42) 76%,
      rgba(5,22,36,.16) 100%),
    linear-gradient(180deg,
      rgba(2,10,18,.22) 0%,
      rgba(4,18,30,.38) 48%,
      rgba(2,10,18,.72) 100%),
    url('img/why-refresh-it.jpg');
  background-size:cover, cover, cover;
  background-position:center, center, center right;
  background-repeat:no-repeat;
}
.why-us > .wrap{position:relative;z-index:1;}
.why-us h2 .accent-text{color:var(--accent);}
.why-us-grid{grid-template-columns:1.02fr .98fr;gap:64px;}
.why-us-visual{
  min-height:330px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.why-us-photo{display:none;}
.review-card{
  position:relative;
  left:auto;
  bottom:auto;
  width:min(430px,100%);
  min-height:220px;
  margin:0;
  background:rgba(8,22,35,.78);
  border:1px solid rgba(25,188,233,.30);
  box-shadow:0 18px 48px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(8px);
}
.review-brand{font-size:.85rem;}
.review-text{font-size:.95rem;}
.review-author{font-size:.84rem;}

@media (max-width:900px){
  .why-us-grid{grid-template-columns:1fr;gap:28px;}
  .why-us-visual{min-height:0;}
  .review-card{width:100%;}
}


/* === Detailed Services page === */
.services-hero .hero-text{max-width:640px;}
.services-hero h1{max-width:640px;}
.services-hero .lead{max-width:590px;}
.services-detail-section{padding-top:54px;padding-bottom:80px;}
.services-intro{max-width:760px;margin-bottom:44px;}
.services-intro p{margin-left:auto;margin-right:auto;}
.service-detail{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:0;align-items:stretch;margin:0 0 28px;background:#fff;border:1px solid var(--line-light);border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(15,35,55,.07);scroll-margin-top:100px;}
.service-detail.reverse{grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);}
.service-detail.reverse .service-detail-media{order:2;}.service-detail.reverse .service-detail-content{order:1;}
.service-detail-media{min-height:300px;background:#071522;}.service-detail-media img{width:100%;height:100%;object-fit:cover;}
.service-detail-content{padding:42px 46px;display:flex;flex-direction:column;justify-content:center;}
.service-detail-kicker{color:var(--accent-deep);font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px;}
.service-detail h2{color:var(--ink);font-size:clamp(1.7rem,2.6vw,2.25rem);margin-bottom:14px;}
.service-detail p{color:var(--ink-dim);font-size:.98rem;max-width:58ch;}
.service-detail-list{list-style:none;margin:8px 0 18px;padding:0;display:grid;gap:8px;max-width:62ch;}
.service-detail-list li{display:flex;align-items:flex-start;gap:10px;color:var(--ink-dim);font-size:.95rem;line-height:1.45;}
.service-detail-list li span{display:inline-flex;align-items:center;justify-content:center;flex:0 0 18px;width:18px;height:18px;border-radius:50%;margin-top:2px;background:rgba(25,188,233,.16);border:1px solid rgba(25,188,233,.52);color:var(--accent-bright);font-size:.75rem;font-weight:800;}
.detail-cta{margin-top:8px;color:var(--accent-deep);font-weight:700;text-decoration:none;font-size:.92rem;}.detail-cta:hover{color:var(--accent);}
.services-cta{padding:58px 0;background:radial-gradient(circle at 12% 20%,rgba(25,188,233,.16),transparent 35%),linear-gradient(135deg,#07111b 0%,#0b1d2e 52%,#07111b 100%);}
.services-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;}.services-cta h2{font-size:clamp(1.65rem,2.8vw,2.2rem);color:var(--text);margin-bottom:0;}.services-cta .kicker{display:block;color:var(--accent);font-weight:700;font-size:.82rem;letter-spacing:.11em;text-transform:uppercase;margin-bottom:10px;}
@media (max-width:900px){.service-detail,.service-detail.reverse{grid-template-columns:1fr;}.service-detail.reverse .service-detail-media,.service-detail.reverse .service-detail-content{order:initial;}.service-detail-media{min-height:240px;}.service-detail-content{padding:34px 30px;}.services-cta-inner{flex-direction:column;align-items:flex-start;}}
@media (max-width:640px){.services-detail-section{padding-top:44px;padding-bottom:56px;}.service-detail{margin-bottom:20px;border-radius:10px;}.service-detail-media{min-height:190px;}.service-detail-content{padding:28px 22px 30px;}.service-detail p{font-size:.93rem;}}

/* === Services page: dark blue treatment (scoped so Acasă stays unchanged) === */
body.services-page{
  background:
    radial-gradient(circle at 15% 18%, rgba(25,188,233,.10), transparent 30%),
    radial-gradient(circle at 85% 34%, rgba(13,81,126,.24), transparent 34%),
    linear-gradient(180deg,#07111b 0%,#091a29 42%,#06111b 100%);
}
body.services-page .services-detail-section{
  position:relative;
  background:
    radial-gradient(circle at 12% 12%, rgba(25,188,233,.11), transparent 24%),
    radial-gradient(circle at 90% 38%, rgba(28,94,146,.16), transparent 28%),
    linear-gradient(180deg,#06121e 0%,#0a1b2b 38%,#071827 68%,#05111d 100%);
  overflow:hidden;
}
body.services-page .services-detail-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.30;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(25,188,233,.05) 18.1% 18.2%, transparent 18.3% 100%),
    linear-gradient(315deg, transparent 0 65%, rgba(25,188,233,.04) 65.1% 65.2%, transparent 65.3% 100%);
}
body.services-page .services-detail-section > .wrap{position:relative;z-index:1;}
body.services-page .services-intro .kicker{color:var(--accent);}
body.services-page .services-intro h2{color:#f3f8fd;}
body.services-page .services-intro p{color:#9eb0c1;}

body.services-page .service-card{
  background:linear-gradient(180deg,rgba(15,35,53,.92),rgba(8,24,38,.96));
  border:1px solid rgba(44,170,214,.24);
  box-shadow:0 12px 28px rgba(0,0,0,.24);
  color:var(--text);
}
body.services-page .service-card h3{color:#f2f7fb;}
body.services-page .service-card p{color:#a9bac9;}
body.services-page .service-card .more{color:var(--accent-bright);}
body.services-page .service-image{border-radius:10px 10px 0 0;}

body.services-page .service-detail{
  background:
    linear-gradient(135deg,rgba(11,29,45,.98),rgba(8,22,35,.96));
  border:1px solid rgba(58,164,208,.22);
  box-shadow:0 16px 40px rgba(0,0,0,.30);
}
body.services-page .service-detail-content{background:transparent;}
body.services-page .service-detail-kicker{color:var(--accent-bright);}
body.services-page .service-detail h2{color:#f3f7fb;}
body.services-page .service-detail p{color:#a8b9c9;}
body.services-page .service-detail-list{margin-top:2px;margin-bottom:18px;}
body.services-page .service-detail-list li{color:#c5d4e1;}
body.services-page .service-detail-list li span{background:rgba(25,188,233,.14);border-color:rgba(25,188,233,.58);color:#25c9f2;box-shadow:0 0 14px rgba(25,188,233,.08);}
body.services-page .service-detail-media{min-height:320px;}
body.services-page .service-detail-media img{width:100%;height:100%;object-fit:cover;display:block;}
body.services-page .detail-cta{color:var(--accent-bright);}
body.services-page .detail-cta:hover{color:#7edcff;}
body.services-page .service-detail-media{
  background:linear-gradient(160deg,#0b2438,#06131f);
}
body.services-page .service-detail-media img{
  filter:saturate(1.08) contrast(1.05);
}
body.services-page .services-cta{
  background:
    radial-gradient(circle at 10% 20%,rgba(25,188,233,.16),transparent 26%),
    radial-gradient(circle at 88% 75%,rgba(28,87,140,.18),transparent 30%),
    linear-gradient(135deg,#06111a 0%,#0b2235 46%,#071724 72%,#05101a 100%);
  border-top:1px solid rgba(58,164,208,.18);
}
body.services-page footer.site{
  background:#050d15;
}

@media (max-width:900px){
  body.services-page .services-detail-section::before{display:none;}
}
