:root {
  --bg: #ffffff;
  --surface: #f7f9fc;
  --dark: #07111f;
  --dark-2: #101c2f;
  --text: #1c2635;
  --muted: #667085;
  --line: rgba(16, 24, 40, .12);
  --primary: #1e63ff;
  --primary-2: #00b8d9;
  --accent: #13ce8a;
  --shadow: 0 22px 60px rgba(18, 38, 63, .14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

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

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 24, 40, .08);
}

.navbar {
  width: min(100% - 40px, var(--container));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(30, 99, 255, .28);
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 16px;
  color: var(--dark);
}

.brand-text small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-weight: 650;
  font-size: 15px;
}

.nav-menu a:not(.btn) {
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: .25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--dark);
  border-radius: 99px;
  transition: .25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 35px rgba(30, 99, 255, .28);
}

.btn-outline {
  border-color: rgba(30, 99, 255, .25);
  color: var(--primary);
  background: rgba(30, 99, 255, .06);
}

.btn-light {
  background: white;
  color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(30, 99, 255, .20), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(0, 184, 217, .22), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #fff 70%);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 99, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 99, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(19, 206, 138, .12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  color: var(--dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.hero-desc,
.section-heading p,
.split-grid p,
.contact-info p,
.cta-box p,
.footer p,
.portfolio-block > div > p {
  color: var(--muted);
  font-size: 17px;
}

.hero-desc {
  max-width: 650px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
}

.trust-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .72);
}

.trust-list strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
}

.trust-list span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
}

.dashboard-card {
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(30,99,255,.18), rgba(0,184,217,.16), transparent);
  z-index: -1;
}

.dash-header {
  display: flex;
  gap: 8px;
  padding: 22px;
  background: var(--dark);
}

.dash-header span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.dash-body {
  padding: 30px;
}

.dash-title {
  display: grid;
  gap: 4px;
  margin-bottom: 26px;
}

.dash-title small {
  color: var(--muted);
  font-weight: 700;
}

.dash-title strong {
  color: var(--dark);
  font-size: 24px;
}

.chart-bars {
  height: 250px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(30,99,255,.08), rgba(0,184,217,.05));
  border: 1px solid rgba(30,99,255,.1);
}

.chart-bars i {
  flex: 1;
  min-width: 28px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 30px rgba(30, 99, 255, .25);
}

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

.metric-grid div {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-grid b {
  color: var(--dark);
  font-size: 22px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #0f5132;
  background: rgba(19, 206, 138, .12);
  font-weight: 700;
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(19, 206, 138, .15);
}

.logos-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.logos-strip b {
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.service-card,
.portfolio-card,
.contact-form,
.timeline-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(18, 38, 63, .07);
}

.service-card {
  padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 99, 255, .24);
}

.service-card p,
.timeline-item p,
.portfolio-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30,99,255,.12), rgba(0,184,217,.12));
  font-size: 26px;
  margin-bottom: 22px;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(30, 99, 255, .28), transparent 34%),
    linear-gradient(135deg, #07111f, #101c2f);
  color: white;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark p {
  color: rgba(255, 255, 255, .72);
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .88);
  font-weight: 650;
}

.check-list span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07331f;
  background: var(--accent);
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 190px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  color: rgba(255,255,255,.28);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.stat-card span {
  color: white;
  font-size: 20px;
  font-weight: 850;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  padding: 26px;
  position: relative;
}

.timeline-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-weight: 900;
}

.portfolio-block {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.portfolio-grid {
  display: grid;
  gap: 18px;
}

.portfolio-card {
  padding: 26px;
}

.portfolio-card small {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-section {
  padding: 0 0 92px;
  background: var(--surface);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 42px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.25), transparent 32%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 28px 70px rgba(30, 99, 255, .28);
}

.cta-box h2 {
  color: white;
}

.cta-box p {
  color: rgba(255,255,255,.82);
  margin-bottom: 0;
}

.cta-box .eyebrow {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: .2s ease;
}

.contact-list a:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 12px 35px rgba(18,38,63,.08);
}

.contact-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(30, 99, 255, .10);
}

.contact-list small {
  display: block;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-list strong {
  display: block;
  color: var(--dark);
  line-height: 1.35;
}

.contact-form {
  padding: 32px;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--dark);
  background: var(--surface);
  outline: none;
  transition: .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(30, 99, 255, .55);
  box-shadow: 0 0 0 4px rgba(30, 99, 255, .10);
  background: white;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0;
}

.footer {
  padding: 58px 0 24px;
  color: rgba(255,255,255,.76);
  background: var(--dark);
}

.footer .brand-text strong {
  color: white;
}

.footer .brand-text small,
.footer p {
  color: rgba(255,255,255,.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer h4 {
  color: white;
  margin: 0 0 14px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.74);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.56);
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: #18b75a;
  box-shadow: 0 16px 35px rgba(24, 183, 90, .34);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .portfolio-block {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 650px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-list,
  .cards-grid,
  .stats-grid,
  .timeline,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    transform: none;
    border-radius: 24px;
  }

  .dash-body {
    padding: 20px;
  }

  .chart-bars {
    height: 190px;
    gap: 10px;
    padding: 16px;
  }

  .chart-bars i {
    min-width: 18px;
  }

  .logos-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card,
  .contact-form,
  .timeline-item {
    padding: 22px;
  }

  .cta-section {
    padding-bottom: 68px;
  }

  .cta-box {
    padding: 28px;
    border-radius: 24px;
  }

  .contact-list strong {
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
}
