:root {
  --navy: #071426;
  --navy2: #0b2038;
  --navy3: #102d4c;
  --blue: #2878ff;
  --cyan: #35d5f2;
  --white: #f8fbff;
  --ink: #10243c;
  --muted: #63758b;
  --line: #dfe8f2;
  --soft: #f3f7fb;
  --shadow: 0 18px 50px rgba(12, 38, 71, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 42px));
  margin: auto;
}
.site-header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 38, 66, 0.08);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 13px;
  font-weight: 900;
  font-size: 21px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.25);
}
.brand b {
  display: block;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.brand small {
  display: block;
  font-size: 8px;
  color: #7d90a7;
  letter-spacing: 1.6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #33485e;
}
.nav-links > a:hover,
.dropdown button:hover {
  color: var(--blue);
}
.nav-links .help {
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(135deg, #4c82ef, #2878ff);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(40, 120, 255, 0.2);
}
.dropdown {
  position: relative;
}
.dropdown button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  padding: 20px 0;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 55px;
  left: -16px;
  width: 210px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu {
  display: grid;
}
.dropdown-menu a {
  padding: 9px 11px;
  border-radius: 8px;
}
.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--blue);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
}
.hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 17, 34, 0.98) 0%,
    rgba(4, 17, 34, 0.87) 44%,
    rgba(4, 17, 34, 0.16) 100%
  );
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 100px 0;
  z-index: 2;
}
.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(53, 213, 242, 0.38);
  background: rgba(53, 213, 242, 0.09);
  color: #9ceeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin: 24px 0;
  max-width: 850px;
}
.hero h1 span {
  color: var(--cyan);
}
.hero p {
  font-size: 19px;
  color: #c3d3e4;
  max-width: 670px;
}
.actions {
  display: flex;
  gap: 13px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 19px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #195acc);
  box-shadow: 0 12px 28px rgba(40, 120, 255, 0.22);
}
.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.outline {
  color: var(--blue);
  border-color: #bbd1ef;
  background: #fff;
}
.light {
  background: #fff;
  color: #154b85;
}
.trust {
  display: flex;
  gap: 21px;
  margin-top: 39px;
  color: #bcd0e3;
  font-size: 13px;
}
.section {
  padding: 96px 0;
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section-title {
  max-width: 750px;
  margin-bottom: 42px;
}
.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-title > span,
.eyebrow,
.cta-box > div > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.section-title h2,
.split h2,
.contact-grid h2,
.help-grid h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.7px;
  margin: 11px 0;
}
.section-title p,
.service-card p,
.split p,
.contact-grid p,
.help-grid p {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #adcdf7;
}
.service-icon,
.detail-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #edf5ff, #f7fbff);
  color: var(--blue);
  border: 1px solid #d7e7fb;
}
.service-icon svg,
.detail-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 19px;
  margin: 22px 0 8px;
}
.service-card p {
  font-size: 14px;
}
.service-card > a,
.text-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.center {
  text-align: center;
  margin-top: 37px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.dark p {
  color: #afc1d4;
}
.stats {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}
.stats div {
  flex: 1;
  padding: 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.stats b {
  display: block;
  color: var(--cyan);
  font-size: 24px;
}
.stats span {
  font-size: 12px;
  color: #afc1d4;
}
.glass-list {
  display: grid;
  gap: 13px;
}
.glass-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
}
.glass-list b {
  color: #fff;
}
.glass-list small {
  grid-column: 2;
  color: #a9bfd2;
}
.cta {
  padding: 70px 0;
  background: var(--soft);
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 43px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(125deg, #1759c7, #0aaac1);
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.1;
  margin: 8px 0;
}
.cta-box > div > span {
  color: #c4f7ff;
}
.page-hero {
  padding: 105px 0 82px;
  background: radial-gradient(
      circle at 85% 10%,
      rgba(53, 213, 242, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
}
.page-hero p {
  max-width: 690px;
  color: #b9ccde;
  font-size: 18px;
}
.detail-grid {
  padding: 70px 0 100px;
}
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  max-width: 900px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.detail-icon {
  width: 76px;
  height: 76px;
}
.detail-icon svg {
  width: 35px;
}
.service-detail h2,
.solution-stack h2 {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 8px 0;
}
.service-detail p {
  color: var(--muted);
}
.service-detail ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  list-style: none;
}
.service-detail li:before {
  content: "✓";
  color: var(--blue);
  font-weight: bold;
  margin-right: 8px;
}
.about {
  align-items: start;
}
.portrait-card {
  overflow: hidden;
  text-align: center;
  padding: 36px;
  border-radius: 25px;
  background: linear-gradient(145deg, var(--navy3), var(--navy));
  color: #fff;
  box-shadow: var(--shadow);
}
.monogram {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 10px auto 26px;

    border-radius: 50%;
    overflow: hidden;

    background-image: url('profileIMG.jpeg');
    background-size: 130%;
    background-position: center -8px;
    background-repeat: no-repeat;

    border: 5px solid rgba(255,255,255,.15);
}
.portrait-card p {
  color: #aec5da;
}
.portrait-card a {
  color: var(--cyan);
  font-weight: 800;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 28px;
}
.values div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.values b,
.values span {
  display: block;
}
.values span {
  font-size: 13px;
  color: var(--muted);
}
.solution-stack {
  display: grid;
  gap: 18px;
}
.solution-stack article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 35px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}
.num {
  font-weight: 900;
  font-size: 55px;
  color: #d5e6fb;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips span {
  padding: 7px 11px;
  border-radius: 99px;
  color: #2b5e9b;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 700;
}
.connect-wheel {
  width: 440px;
  height: 440px;
  margin: 0 auto 80px;
  border: 1px solid #cfe0f4;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, #eef7ff, transparent 69%);
}
.wheel-center {
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #0ca7c0);
  box-shadow: 0 20px 50px rgba(40, 120, 255, 0.3);
}
.wheel-center b {
  font-size: 25px;
}
.wheel-center span {
  font-size: 36px;
  font-weight: 900;
}
.orbit {
  position: absolute;
  padding: 9px 13px;
  border-radius: 99px;
  color: #24548c;
  background: #fff;
  border: 1px solid #c5dcf7;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 900;
}
.o1 {
  top: 20px;
  left: 175px;
}
.o2 {
  right: -8px;
  top: 200px;
}
.o3 {
  bottom: 19px;
  left: 170px;
}
.o4 {
  left: -25px;
  top: 200px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.steps div {
  padding: 22px;
  border-radius: 17px;
  border: 1px solid var(--line);
}
.steps b {
  color: var(--blue);
}
.steps p {
  font-size: 14px;
  color: var(--muted);
}
.contact-grid,
.help-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-info a {
  display: grid;
  padding: 15px;
  border-radius: 13px;
  background: var(--soft);
}
.contact-info span {
  font-size: 13px;
  color: var(--muted);
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow);
}
label {
  font-size: 13px;
  font-weight: 800;
}
.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #cbd9e8;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea {
  resize: vertical;
}
form button {
  justify-self: start;
}
.help-card {
  padding: 38px;
  border-radius: 23px;
  background: linear-gradient(145deg, var(--navy3), var(--navy));
  color: #fff;
}
.help-card p {
  color: #bcd0e2;
}
.checklist {
  display: grid;
  gap: 12px;
}
.checklist div {
  display: flex;
  gap: 15px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.checklist b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--blue);
}
.checklist strong,
.checklist span {
  display: block;
}
.checklist span {
  font-size: 13px;
  color: var(--muted);
}
footer {
  padding: 65px 0 0;
  background: #061426;
  color: #b2c2d3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.9fr 1.3fr;
  gap: 45px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-brand {
  color: #fff;
}
.footer-grid p {
  font-size: 13px;
  max-width: 280px;
}
.footer-grid h4 {
  color: #fff;
  margin: 0 0 7px;
}
.footer-grid a {
  font-size: 13px;
}
.footer-grid a:hover {
  color: var(--cyan);
}
.copyright {
  padding: 25px 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .dropdown button {
    padding: 0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 8px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-overlay {
    background: rgba(4, 17, 34, 0.78);
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .hero {
    min-height: 620px;
  }
  .hero h1,
  .page-hero h1 {
    letter-spacing: -2px;
  }
  .actions,
  .trust {
    flex-direction: column;
  }
  .cards,
  .values,
  .steps {
    grid-template-columns: 1fr;
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail ul {
    grid-template-columns: 1fr;
  }
  .solution-stack article {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .connect-wheel {
    width: 290px;
    height: 290px;
  }
  .wheel-center {
    inset: 78px;
  }
  .o1 {
    top: 5px;
    left: 102px;
  }
  .o2 {
    right: -18px;
    top: 130px;
  }
  .o3 {
    bottom: 5px;
    left: 100px;
  }
  .o4 {
    left: -30px;
    top: 130px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .stats {
    flex-direction: column;
  }
  form {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
}


-----IAssistent---

:root{
    --ai-primary:#00d4ff;
    --ai-secondary:#0078ff;
    --ai-bg:#ffffff;
    --ai-card:#f5f7fa;
    --ai-text:#111827;
}

@media (prefers-color-scheme: dark){

:root{
    --ai-bg:#0f172a;
    --ai-card:#1e293b;
    --ai-text:#ffffff;
}

}

.chsys-ai{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;
    font-family:'Segoe UI',sans-serif;
}

.ai-fab{
    width:72px;
    height:72px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:linear-gradient(135deg,#00d4ff,#0078ff);
    box-shadow:
        0 0 25px rgba(0,212,255,.7),
        0 0 50px rgba(0,120,255,.5);
}

.ai-panel{
    width:380px;
    max-width:95vw;
    background:var(--ai-bg);
    border-radius:24px;
    overflow:hidden;
    position:absolute;
    bottom:90px;
    right:0;
    opacity:0;
    pointer-events:none;
    transform:translateY(20px);
    transition:.3s;
    border:1px solid rgba(0,212,255,.3);
    box-shadow:
        0 0 40px rgba(0,212,255,.15);
}

.ai-panel.open{
    opacity:1;
    pointer-events:auto;
    transform:none;
}

.ai-header{
    background:linear-gradient(
        135deg,
        #001f3f,
        #003366,
        #001f3f
    );
    padding:18px;
    color:white;
    display:flex;
    align-items:center;
    gap:12px;
}

.ai-avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #00d4ff,
        #0078ff
    );
}

@keyframes hologram{
    0%{transform:translateY(0)}
    50%{transform:translateY(-5px)}
    100%{transform:translateY(0)}
}

.ai-powered{
    font-size:11px;
    color:#8eefff;
}

.ai-body{
    padding:18px;
    background:var(--ai-card);
}

.ai-message{
    background:white;
    border-radius:18px;
    padding:14px;
    margin-bottom:15px;
}

.ai-options{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.ai-btn{
    cursor:pointer;
    border:none;
    padding:10px 15px;
    border-radius:12px;
    background:#e6f8ff;
    color:#0066cc;
    transition:.2s;
}

.ai-btn:hover{
    transform:translateY(-2px);
}

.ai-footer{
    padding:15px;
    display:flex;
    gap:10px;
    background:var(--ai-bg);
}

.ai-input{
    flex:1;
    padding:12px;
    border-radius:12px;
    border:1px solid #d1d5db;
}

.ai-send{
    background:#0078ff;
    color:white;
    border:none;
    border-radius:12px;
    width:50px;
    cursor:pointer;
}
`