
:root {
  --bg: #07111f;
  --bg-2: #0a1729;
  --panel: #0e1d31;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #0f172a;
  --muted: #64748b;
  --muted-light: #a8b5c8;
  --line: #dfe6ef;
  --primary: #2f6df6;
  --primary-dark: #1e50c7;
  --cyan: #38d4f2;
  --violet: #8b5cf6;
  --success: #22c98f;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0%;
  height: 3px;
  z-index: 2000;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 10px 30px rgba(47,109,246,.32);
}

.brand-text, .footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-text strong, .footer-brand strong { font-family: "Manrope", sans-serif; font-size: .95rem; }
.brand-text small, .footer-brand small { margin-top: 4px; font-size: .7rem; color: var(--muted-light); }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  color: #cbd6e6;
}

.desktop-nav a {
  font-size: .88rem;
  transition: .2s ease;
}

.desktop-nav a:hover { color: white; }

.nav-button {
  min-height: 43px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: white;
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  transition: .2s ease;
}

.nav-button:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  transition: .25s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 14px;
  right: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7,17,31,.98);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 11px 8px; color: #d8e2ef; border-radius: 10px; }
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: white; }

.hero {
  position: relative;
  min-height: 840px;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  color: white;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orb-one {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -190px;
  background: radial-gradient(circle, rgba(47,109,246,.48), transparent 67%);
}

.hero-orb-two {
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(56,212,242,.18), transparent 68%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #bceedd;
  background: rgba(34,201,143,.1);
  border: 1px solid rgba(34,201,143,.18);
  font-size: .77rem;
  font-weight: 700;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(34,201,143,.1);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 6.3vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #75a9ff, #48d8f5);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 660px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  transition: .22s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: white;
  background: var(--primary);
  box-shadow: 0 16px 36px rgba(47,109,246,.28);
}

.button-primary:hover { background: var(--primary-dark); }

.button-ghost {
  color: white;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.play-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .65rem;
  color: var(--bg);
  background: white;
}

.trust-row {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span {
  width: 35px;
  height: 35px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: .66rem;
  font-weight: 800;
  background: #183358;
  border: 2px solid var(--bg);
}

.avatar-stack span:nth-child(2){ background:#304f7d; }
.avatar-stack span:nth-child(3){ background:#3c658e; }
.avatar-stack span:last-child{ background:var(--primary); }

.trust-row > div:last-child {
  display: flex;
  flex-direction: column;
}

.trust-row strong { font-size: .82rem; }
.trust-row small { color: var(--muted-light); font-size: .7rem; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-panel {
  width: min(440px, 100%);
  padding: 18px;
  border-radius: 28px;
  background: rgba(14,29,49,.82);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(20px);
  box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 15px;
  color: #cbd6e6;
  font-size: .75rem;
}

.window-dots { display: flex; gap: 6px; }
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
}

.profile-summary {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47,109,246,.22), rgba(56,212,242,.08));
  border: 1px solid rgba(255,255,255,.08);
}

.profile-avatar {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(145deg, #2f6df6, #173260);
}

.profile-avatar i {
  position: absolute;
  width: 13px;
  height: 13px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: var(--success);
  border: 3px solid #142747;
}

.profile-summary small { color: #96a8c1; font-size: .7rem; }
.profile-summary h2 { margin: 2px 0; font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.profile-summary p { color: #b8c5d7; font-size: .75rem; }

.metric-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.metric-grid article {
  min-width: 0;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}

.metric-grid span, .metric-grid small { color: #92a4bd; font-size: .64rem; }
.metric-grid strong { font-family: "Manrope", sans-serif; font-size: 1.45rem; }

.progress-card {
  margin-top: 14px;
  padding: 17px;
  border-radius: 17px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}

.progress-head, .progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.progress-head { font-size: .74rem; }
.progress-track {
  height: 8px;
  margin: 13px 0 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 1.2s ease .4s;
}

.visual-panel.visible-progress .progress-track span { width: 92%; }
.progress-labels small { color: #8193ab; font-size: .59rem; }

.floating-card {
  position: absolute;
  padding: 12px 15px;
  display: flex;
  gap: 11px;
  align-items: center;
  border-radius: 15px;
  background: rgba(9,22,40,.94);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.floating-card-one { top: 62px; right: -35px; }
.floating-card-two { bottom: 58px; left: -42px; }

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #aeeaff;
  background: rgba(47,109,246,.18);
}

.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: .75rem; }
.floating-card small { color: #8fa1ba; font-size: .64rem; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8293aa;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.scroll-indicator span {
  width: 20px;
  height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.23);
  position: relative;
}

.scroll-indicator span::after {
  content:"";
  position:absolute;
  width:3px;
  height:7px;
  left:50%;
  top:6px;
  border-radius:99px;
  background:white;
  transform:translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { opacity:0; transform:translate(-50%,0); }
  35% { opacity:1; }
  100% { opacity:0; transform:translate(-50%,10px); }
}

.logo-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}

.logo-strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #8793a3;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.logo-strip i { width: 4px; height: 4px; border-radius: 50%; background: #cbd4df; }

.section { padding: 110px 0; }

.section-kicker {
  display: inline-flex;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-kicker-light { color: #78dcf7; }

.section h2 {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem,4vw,3.8rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.about-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 90px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 125px;
}

.about-sticky p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  margin-top: 27px;
  display: inline-flex;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: .88rem;
}

.text-link span { transition: .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.about-content { border-top: 1px solid var(--line); }
.feature-row {
  padding: 31px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.feature-number { color: var(--primary); font-size: .75rem; font-weight: 800; }
.feature-row h3 { font-family: "Manrope",sans-serif; font-size: 1.25rem; }
.feature-row p { margin-top: 6px; color: var(--muted); }

.services { background: var(--surface-soft); }

.section-header {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: end;
}

.section-header > p {
  color: var(--muted);
  max-width: 500px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  transition: .28s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card.featured {
  color: white;
  background: linear-gradient(145deg,#102341,#0a1628);
  border-color: transparent;
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #bdefff;
  background: rgba(56,212,242,.1);
  border: 1px solid rgba(56,212,242,.2);
  font-size: .64rem;
  font-weight: 800;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: var(--primary);
  font-size: 1.45rem;
}

.card-label {
  display: block;
  margin-top: 28px;
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.featured .card-label { color: #83def5; }

.service-card h3 {
  margin: 8px 0 11px;
  font-family: "Manrope",sans-serif;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--muted);
  font-size: .9rem;
}

.featured p, .featured li { color: #aebdd0; }

.service-card ul {
  margin: 22px 0 35px;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 23px;
  color: #334155;
  font-size: .82rem;
}

.service-card li::before {
  content:"✓";
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:800;
}

.featured li::before { color:#60d8f2; }

.service-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  display: inline-flex;
  gap: 8px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 800;
}

.featured a { color: #76e0f7; }

.projects { background: white; }

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.project-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  transition: .28s ease;
}

.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.project-large { grid-row: span 2; }

.project-visual {
  position: relative;
  min-height: 245px;
  padding: 22px;
  overflow: hidden;
}

.project-large .project-visual { min-height: 430px; }

.visual-blue { background: linear-gradient(145deg,#dbe9ff,#eef6ff); }
.visual-purple { background: linear-gradient(145deg,#eee7ff,#f8f5ff); }
.visual-cyan { background: linear-gradient(145deg,#dff8fb,#f4fdff); }

.project-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1647a8;
  background: rgba(255,255,255,.76);
  font-size: .66rem;
  font-weight: 800;
}

.mini-dashboard {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -25px;
  height: 315px;
  display: grid;
  grid-template-columns: 70px 1fr;
  border-radius: 18px 18px 0 0;
  background: white;
  box-shadow: 0 25px 60px rgba(37,99,235,.18);
  overflow: hidden;
}

.mini-sidebar { background:#132b51; }

.mini-main { padding: 24px; }
.mini-head { height: 18px; width: 48%; border-radius:99px; background:#dbe6f5; }
.mini-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:25px; }
.mini-cards i { height:66px; border-radius:12px; background:#edf3fb; }
.mini-chart { position:relative; height:115px; margin-top:20px; border-radius:13px; background:#f4f7fb; overflow:hidden; }
.mini-chart::before {
  content:"";
  position:absolute;
  inset:auto 8% 28% 8%;
  height:55%;
  border-left:3px solid #5e8ffc;
  border-bottom:3px solid #5e8ffc;
  transform:skewY(-10deg);
}
.mini-chart span {
  position:absolute;
  inset:18px 18px auto auto;
  width:55px;
  height:22px;
  border-radius:99px;
  background:#dce8ff;
}

.strategy-rings {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 145px;
  height: 145px;
  transform: translate(-50%,-42%);
  display:grid;
  place-items:center;
}

.strategy-rings i {
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(139,92,246,.35);
}
.strategy-rings i:nth-child(1){ width:145px;height:145px; }
.strategy-rings i:nth-child(2){ width:105px;height:105px; }
.strategy-rings i:nth-child(3){ width:65px;height:65px; background:rgba(139,92,246,.13); }
.strategy-rings span { z-index:2; font-family:"Manrope",sans-serif; font-weight:800; color:#6940ca; }

.kpi-bars {
  position:absolute;
  inset:auto 16% 25px;
  height:145px;
  display:flex;
  align-items:end;
  justify-content:center;
  gap:13px;
}
.kpi-bars i {
  width:28px;
  height:var(--h);
  border-radius:9px 9px 3px 3px;
  background:linear-gradient(#40d7ef,#1e92b3);
}

.project-copy { padding: 26px; }
.project-copy > span { color:var(--primary); font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.project-copy h3 { margin:7px 0 9px; font-family:"Manrope",sans-serif; font-size:1.3rem; }
.project-copy p { color:var(--muted); font-size:.9rem; }
.project-result { margin-top:22px; display:flex; align-items:end; gap:10px; }
.project-result strong { font-family:"Manrope",sans-serif; font-size:2rem; color:var(--primary); }
.project-result small { color:var(--muted); margin-bottom:6px; }

.process { padding-top:30px; }

.process-shell {
  padding: 62px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  border-radius:30px;
  color:white;
  background:
    radial-gradient(circle at 90% 10%,rgba(56,212,242,.2),transparent 25%),
    linear-gradient(145deg,#0d213e,#07111f);
}

.process-copy p { margin-top:18px; color:#aebdd0; }

.process-steps { display:grid; gap:15px; }

.process-steps article {
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:15px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.process-steps article > span {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  flex-shrink:0;
  border-radius:11px;
  color:#aeeeff;
  background:rgba(47,109,246,.2);
  font-weight:800;
}

.process-steps h3 { font-family:"Manrope",sans-serif; font-size:1rem; }
.process-steps p { color:#91a2b9; font-size:.75rem; }

.testimonials { background:var(--surface-soft); }

.slider-controls { display:flex; gap:9px; justify-content:flex-end; }
.slider-controls button {
  width:44px;
  height:44px;
  border-radius:13px;
  border:1px solid var(--line);
  background:white;
  color:var(--text);
  transition:.2s ease;
}
.slider-controls button:hover { color:white; background:var(--primary); border-color:var(--primary); }

.testimonial-slider {
  position:relative;
  min-height:300px;
}

.testimonial {
  display:none;
  padding:46px;
  border-radius:24px;
  background:white;
  border:1px solid var(--line);
}

.testimonial.active { display:block; animation:fadeSlide .45s ease; }

@keyframes fadeSlide {
  from { opacity:0; transform:translateY(10px); }
  to { opacity:1; transform:none; }
}

.quote-mark {
  font-family:Georgia,serif;
  color:var(--primary);
  font-size:4rem;
  line-height:.7;
}

.testimonial blockquote {
  max-width:900px;
  margin:20px 0 34px;
  font-family:"Manrope",sans-serif;
  font-size:clamp(1.45rem,3vw,2.4rem);
  line-height:1.3;
  letter-spacing:-.025em;
}

.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-author > span {
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:white;
  background:var(--primary);
  font-size:.72rem;
  font-weight:800;
}
.testimonial-author div { display:flex; flex-direction:column; }
.testimonial-author small { color:var(--muted); font-size:.72rem; }

.testimonial-dots { margin-top:18px; display:flex; justify-content:center; gap:8px; }
.testimonial-dots button {
  width:8px;
  height:8px;
  border:0;
  border-radius:99px;
  background:#c8d1dc;
  transition:.2s ease;
}
.testimonial-dots button.active { width:24px; background:var(--primary); }

.faq-layout {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
}

.faq-intro p { margin-top:18px; color:var(--muted); }

.accordion { border-top:1px solid var(--line); }
.accordion-item { border-bottom:1px solid var(--line); }

.accordion-item button {
  width:100%;
  padding:24px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border:0;
  background:transparent;
  color:var(--text);
  text-align:left;
  font-weight:800;
}
.accordion-item button span {
  width:30px;height:30px;display:grid;place-items:center;flex-shrink:0;
  border-radius:10px;background:#edf3ff;color:var(--primary);
}

.accordion-content {
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.accordion-content p { padding:0 50px 24px 0; color:var(--muted); }
.accordion-item.active .accordion-content { max-height:160px; }

.contact { padding-top:40px; }

.contact-shell {
  padding:62px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:65px;
  border-radius:30px;
  color:white;
  background:
    radial-gradient(circle at 15% 85%,rgba(47,109,246,.32),transparent 28%),
    linear-gradient(145deg,#0b213e,#07111f);
}

.contact-copy p { margin-top:18px; color:#a9b8ca; max-width:520px; }

.contact-details { margin-top:34px; display:grid; gap:12px; }
.contact-details a {
  padding:13px 0;
  display:flex;
  align-items:center;
  gap:12px;
}
.contact-details a > span {
  width:40px;height:40px;display:grid;place-items:center;border-radius:12px;
  background:rgba(255,255,255,.07);
}
.contact-details div { display:flex; flex-direction:column; }
.contact-details small { color:#8295ad; font-size:.68rem; }
.contact-details strong { font-size:.85rem; }

.contact-form-card {
  padding:28px;
  border-radius:22px;
  color:var(--text);
  background:white;
}

.form-head {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  margin-bottom:22px;
}
.form-head span { font-family:"Manrope",sans-serif; font-weight:800; }
.form-head small { color:var(--muted); font-size:.68rem; }

.form-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}
.form-grid label {
  display:grid;
  gap:7px;
  font-size:.75rem;
  font-weight:800;
}
.form-grid .full { grid-column:1 / -1; }

.form-grid input,
.form-grid select,
.form-grid textarea {
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 13px;
  outline:none;
  color:var(--text);
  background:#fff;
  font-size:.86rem;
  font-weight:400;
  transition:.2s ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(47,109,246,.09);
}
.form-grid textarea { resize:vertical; }

.form-button { width:100%; margin-top:17px; }
.form-feedback { min-height:20px; margin-top:9px; color:var(--primary); font-size:.74rem; }

.profile-modal {
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
  place-items:center;
  padding:20px;
}
.profile-modal.open { display:grid; }
.modal-backdrop { position:absolute; inset:0; background:rgba(3,9,18,.74); backdrop-filter:blur(7px); }

.modal-card {
  position:relative;
  z-index:1;
  width:min(520px,100%);
  padding:34px;
  border-radius:24px;
  background:white;
  box-shadow:0 30px 100px rgba(0,0,0,.35);
  animation:modalIn .3s ease;
}
@keyframes modalIn { from{opacity:0;transform:translateY(15px) scale(.98)} to{opacity:1;transform:none} }

.modal-card h2 { margin:10px 0 13px; font-family:"Manrope",sans-serif; font-size:2rem; }
.modal-card p { color:var(--muted); }
.modal-close {
  position:absolute;top:16px;right:16px;width:36px;height:36px;
  border:0;border-radius:11px;background:#f0f4f8;color:var(--text);font-size:1.3rem;
}
.modal-tags { margin:22px 0; display:flex; flex-wrap:wrap; gap:8px; }
.modal-tags span { padding:6px 10px;border-radius:99px;background:#edf3ff;color:var(--primary);font-size:.72rem;font-weight:800; }

.floating-cta {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:900;
  min-height:52px;
  padding:0 18px 0 10px;
  display:flex;
  align-items:center;
  gap:9px;
  border-radius:999px;
  color:white;
  background:var(--primary);
  box-shadow:0 16px 40px rgba(47,109,246,.35);
  transition:.2s ease;
}
.floating-cta:hover { transform:translateY(-3px); }
.floating-cta span {
  width:34px;height:34px;display:grid;place-items:center;border-radius:50%;
  background:rgba(255,255,255,.14);
}
.floating-cta strong { font-size:.8rem; }

.site-footer {
  padding:50px 0 26px;
  background:white;
}

.footer-main {
  display:flex;
  justify-content:space-between;
  gap:35px;
  align-items:center;
}

.footer-brand {
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-brand .brand-mark { width:40px;height:40px;border-radius:12px; }

.footer-links { display:flex; gap:25px; color:var(--muted); font-size:.8rem; }
.footer-links a:hover { color:var(--primary); }

.footer-bottom {
  margin-top:30px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#8b97a7;
  border-top:1px solid var(--line);
  font-size:.72rem;
}

.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .desktop-nav, .nav-button { display:none; }
  .menu-button { display:block; margin-left:auto; }
  .hero-layout, .about-layout, .section-header, .process-shell, .faq-layout, .contact-shell {
    grid-template-columns:1fr;
  }
  .hero { padding-top:125px; }
  .hero-layout { gap:50px; }
  .hero-visual { min-height:580px; }
  .about-sticky { position:static; }
  .section-header { gap:20px; align-items:start; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .service-card:last-child { grid-column:1 / -1; }
  .project-grid { grid-template-columns:1fr; }
  .project-large { grid-row:auto; }
  .process-shell, .contact-shell { padding:46px; }
  .faq-layout { gap:35px; }
}

@media (max-width: 720px) {
  .container { width:min(100% - 28px,1180px); }
  .nav-shell { min-height:72px; }
  .brand-text small { display:none; }
  .hero { min-height:auto; padding:115px 0 80px; }
  .hero h1 { font-size:clamp(3rem,14vw,5rem); }
  .hero-actions { flex-direction:column; }
  .button { width:100%; }
  .hero-visual { min-height:auto; display:flex; flex-direction:column; gap:12px; }
  .visual-panel { width:100%; }
  .floating-card { position:relative; inset:auto; width:100%; }
  .scroll-indicator { display:none; }
  .logo-strip-inner { min-height:74px; overflow:auto; justify-content:flex-start; padding-bottom:2px; }
  .logo-strip-inner span { flex:0 0 auto; }
  .section { padding:78px 0; }
  .service-grid { grid-template-columns:1fr; }
  .service-card:last-child { grid-column:auto; }
  .project-large .project-visual { min-height:320px; }
  .mini-dashboard { height:250px; }
  .process-shell, .contact-shell { padding:32px 24px; border-radius:24px; }
  .testimonial { padding:30px 24px; }
  .testimonial blockquote { font-size:1.45rem; }
  .section-header .slider-controls { justify-content:flex-start; }
  .form-grid { grid-template-columns:1fr; }
  .form-grid .full { grid-column:auto; }
  .footer-main, .footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-links { flex-wrap:wrap; }
  .floating-cta strong { display:none; }
  .floating-cta { width:52px; padding:0; justify-content:center; }
}

@media (max-width: 470px) {
  .brand-mark { width:40px;height:40px;border-radius:12px; }
  .hero h1 { font-size:2.85rem; }
  .hero-description { font-size:.98rem; }
  .profile-summary { align-items:flex-start; }
  .profile-avatar { width:62px;height:62px;border-radius:18px; }
  .metric-grid { grid-template-columns:1fr; }
  .metric-grid article { flex-direction:row; align-items:baseline; gap:7px; }
  .metric-grid article span { margin-right:auto; }
  .progress-labels { display:none; }
  .feature-row { grid-template-columns:48px 1fr; }
  .project-visual { min-height:220px; }
  .project-large .project-visual { min-height:280px; }
  .mini-dashboard { left:6%;right:6%;grid-template-columns:50px 1fr; }
  .mini-main { padding:16px; }
  .contact-form-card { padding:20px; }
  .form-head { align-items:flex-start; flex-direction:column; gap:3px; }
}
