/* IT PRO FZE — shared stylesheet v2 (professional dark tech theme) */
:root {
  --bg: #05070f;
  --bg-2: #090c18;
  --panel: #0c101f;
  --line: rgba(148, 163, 216, 0.14);
  --cyan: #22d3ee;
  --violet: #818cf8;
  --text: #eef1fb;
  --muted: #98a2c3;
  --grad: linear-gradient(100deg, #22d3ee, #818cf8);
  --radius: 16px;
  --head: "Sora", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--body); line-height: 1.7; font-size: 16.5px; overflow-x: hidden; }
::selection { background: rgba(34, 211, 238, 0.3); }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--head); letter-spacing: -0.015em; }

/* ---------- Nav ---------- */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 5vw;
  background: rgba(5, 7, 15, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(34, 211, 238, 0.35);
}
.logo-name { font-family: var(--head); font-weight: 700; letter-spacing: 0.02em; color: var(--text); font-size: 1.02rem; }
.logo-name em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  padding: 0.6rem 1.4rem; border-radius: 999px;
  background: var(--grad); color: #04121a !important; font-weight: 600;
  letter-spacing: 0.04em !important;
  transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34, 211, 238, 0.4); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; border-radius: 2px; }

/* ---------- Heroes ---------- */
.hero, .page-hero {
  position: relative; background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.hero { min-height: 100vh; padding: 8.5rem 6vw 5rem; }
.page-hero { min-height: 62vh; padding: 9.5rem 6vw 4.5rem; text-align: center; justify-content: center; }
#particles { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
.hero-inner, .ph-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; }
.ph-inner { max-width: 860px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(34, 211, 238, 0.35); border-radius: 999px;
  padding: 0.45rem 1.15rem; font-size: 0.76rem; color: var(--cyan);
  background: rgba(34, 211, 238, 0.07); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1.8rem; font-weight: 500;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse 2.2s infinite; }
@keyframes pulse { 50% { opacity: 0.3; } }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: 1.08; font-weight: 800; max-width: 900px; }
.page-hero h1 { margin: 0 auto; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: #c3cbe4; font-size: 1.18rem; max-width: 640px; margin: 1.7rem 0 2.5rem; font-weight: 400; }
.page-hero .lede { margin-inline: auto; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero .btn-row, .cta-inner .btn-row { justify-content: center; }
.btn {
  padding: 0.95rem 2.1rem; border-radius: 999px; text-decoration: none; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em; display: inline-block;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--grad); color: #04121a; box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(34, 211, 238, 0.5); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--text); background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 3.5rem;
  margin-top: 4rem; padding-top: 2.2rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}
.hero-stats.standalone {
  width: auto; margin: 0; padding: 2.6rem 3rem; border: 1px solid var(--line);
  border-radius: 20px; background: var(--panel); justify-content: space-between;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center;
}
.hero-stats b { display: block; font-family: var(--head); font-size: 2.1rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats span { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Sections ---------- */
section { padding: 6rem 6vw; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.8rem; }
.kicker {
  display: inline-block; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600; margin-bottom: 1rem;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; line-height: 1.18; }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.06rem; }

.grid { display: grid; gap: 1.6rem; max-width: 1240px; margin: 0 auto; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Photo cards ---------- */
.pcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.pcard:hover { transform: translateY(-7px); border-color: rgba(34, 211, 238, 0.45); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5); }
.pcard-img { position: relative; height: 200px; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(12, 16, 31, 0.9)); }
.pcard-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(5, 7, 15, 0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 211, 238, 0.4); color: var(--cyan);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.pcard-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 1.16rem; margin-bottom: 0.55rem; }
.pcard-body p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.pcard-link {
  margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--cyan); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  transition: gap 0.25s;
}
.pcard:hover .pcard-link { gap: 0.8rem; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 2.6rem 6vw; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-label { text-align: center; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.4rem; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.8rem; }
.strip-row span {
  font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: #6c7699;
  transition: color 0.3s;
}
.strip-row span:hover { color: var(--text); }

/* ---------- Feature rows ---------- */
.feature { padding: 5.5rem 6vw; }
.feature.alt { background: var(--bg-2); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
  max-width: 1240px; margin: 0 auto;
}
.feature-text h2 { margin-bottom: 1.2rem; }
.feature-text p { color: var(--muted); margin-bottom: 1.1rem; }
.feature-text .btn { margin-top: 1.2rem; }
.feature-img { position: relative; }
.feature-img img {
  border-radius: 20px; width: 100%; aspect-ratio: 4/3.4; object-fit: cover;
  border: 1px solid var(--line); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.feature-img::before {
  content: ""; position: absolute; inset: -14% -10% auto auto; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 65%);
  z-index: -1;
}
.checklist { list-style: none; margin: 1.4rem 0 0.5rem; }
.checklist li {
  padding-left: 2rem; position: relative; margin-bottom: 0.9rem; color: var(--muted); font-size: 0.97rem;
}
.checklist li b { color: var(--text); font-weight: 600; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--cyan); font-weight: 700;
}

/* ---------- Band / steps ---------- */
.band { background-size: cover; background-position: center; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; max-width: 1240px; margin: 0 auto; }
.step {
  background: rgba(12, 16, 31, 0.75); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4); }
.step i {
  font-style: normal; font-family: var(--head); font-weight: 800; font-size: 2rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Value cards ---------- */
.vcard {
  background: rgba(12, 16, 31, 0.75); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; transition: transform 0.3s, border-color 0.3s;
}
.vcard:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4); }
.vcard h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.vcard h3::before { content: ""; display: block; width: 34px; height: 3px; background: var(--grad); border-radius: 2px; margin-bottom: 0.9rem; }
.vcard p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Testimonials ---------- */
.testi {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; position: relative; display: flex; flex-direction: column;
}
.testi::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 4.4rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.4rem; height: 2.6rem;
}
.testi p { color: #c3cbe4; font-size: 0.97rem; flex: 1; }
.testi-who { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.testi-who b { display: block; font-size: 0.95rem; }
.testi-who span { color: var(--muted); font-size: 0.84rem; }

/* ---------- CTA band ---------- */
.cta-wrap { padding: 3rem 6vw 6rem; }
.cta-band {
  max-width: 1240px; margin: 0 auto; border-radius: 24px; overflow: hidden;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
}
.cta-inner { padding: 4.5rem 3rem; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: #c3cbe4; margin-bottom: 2.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; max-width: 1240px; margin: 0 auto; align-items: start; }
.contact-info { display: grid; gap: 1.1rem; }
.ccard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.6rem; }
.ccard h3 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem; }
.ccard p { color: var(--muted); font-size: 0.97rem; }
.ccard a { color: var(--text); text-decoration: none; }
.ccard a:hover { color: var(--cyan); }
.ccard em { color: var(--cyan); font-style: normal; font-size: 0.88rem; }
.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 2.5rem; }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.6rem; }
input, textarea, select {
  width: 100%; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  color: var(--text); font-family: var(--body); font-size: 0.95rem;
  transition: border-color 0.25s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--cyan); }
select option { background: var(--bg-2); }
label { display: block; margin-bottom: 0.45rem; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-btn { border: 0; cursor: pointer; width: 100%; font-size: 1rem; font-family: var(--body); }
#form-status { margin-top: 1rem; color: var(--cyan); display: none; font-size: 0.92rem; }
.map-section { padding: 0 6vw 5rem; }
.map-section iframe {
  width: 100%; height: 420px; border: 1px solid var(--line); border-radius: 20px;
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.95);
  max-width: 1240px; margin: 0 auto; display: block;
}

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 4rem 6vw 2rem; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1.2fr 1.6fr; gap: 2.8rem; margin-bottom: 3rem; max-width: 1240px; margin-inline: auto; }
.foot-brand p { margin-top: 1.2rem; }
.foot-badges { display: flex; gap: 0.7rem; margin-top: 1.3rem; flex-wrap: wrap; }
.foot-badges span {
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem;
}
footer h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--text); }
footer p, footer a, footer li { color: var(--muted); font-size: 0.93rem; text-decoration: none; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a:hover { color: var(--cyan); }
.copyright { border-top: 1px solid var(--line); padding-top: 1.6rem; text-align: center; color: #6c7699; font-size: 0.84rem; max-width: 1240px; margin: 0 auto; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 2rem; grid-template-columns: repeat(2, auto); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 60px; right: 0; flex-direction: column; align-items: flex-start;
    background: rgba(6, 8, 18, 0.98); width: 250px; padding: 1.6rem; gap: 1.3rem;
    border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.3s;
  }
  .nav-links.open { transform: none; }
  .burger { display: block; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }
}
