/* Testimonials */
.testimonials{
  margin-top: 22px;
}
.testimonial-wrap{
  position: relative;
  overflow: hidden;
}
.testimonial{
  display: none;
  text-align: center;
  padding: 18px;
  font-size: 15px;
  color: var(--muted);
}
.testimonial.active{ display: block; }
.testimonial b{
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
}
.testimonial-dots{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.testimonial-dots span{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(0,0,0,0.2);
}
.testimonial-dots span.active{
  background: var(--accent);
}

.testimonial-logo{
  width: 175px;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.15s ease, filter 0.15s ease;
  display: block;
  margin: 10px auto 0;
}
.testimonial:hover .testimonial-logo{
  opacity: 1;
  filter: grayscale(0);
}
:root{
  --bg: #f4f5f7;
  --panel: rgba(255,255,255,0.86);
  --panel2: rgba(255,255,255,0.94);
  --text: rgba(23, 43, 77, 0.94);
  --muted: rgba(68, 84, 111, 0.92);
  --border: rgba(223, 225, 230, 0.95);
  --shadow: 0 6px 18px rgba(9, 30, 66, 0.10);
  --radius: 14px;
  --max: 1100px;

  --accent: #0052cc;
  --accent2: #0065ff;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 28px 18px 80px; }

/* Top nav */
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  position: sticky;
  top: 14px;
  z-index: 10;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, backdrop-filter 0.15s ease;
}
.nav.scrolled{
  background: var(--panel2);
  border-color: var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.brand img{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
  border: none;
}
.brand .name{ font-weight: 700; letter-spacing: 0.2px; }
.brand .tag{ font-size: 12px; color: var(--muted); margin-top: 1px; }

.navlinks{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navright{
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.navtoggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(223, 225, 230, 0.95);
  background: rgba(255,255,255,0.55);
  color: rgba(23, 43, 77, 0.94);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.navtoggle:hover{
  background: rgba(255,255,255,0.70);
  border-color: rgba(193, 199, 208, 0.95);
}
.navtoggle svg{
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navmenu{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, 92vw);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 20;
}
.navmenu.open{ display: block; }
.navmenu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(68, 84, 111, 0.95);
  font-size: 14px;
}
.navmenu a:hover{ background: rgba(9, 30, 66, 0.06); color: var(--text); }
.navmenu .cta{ margin-top: 6px; }
.navmenu .cta a{ display: inline-flex; }

@media (max-width: 720px){
  .navlinks{ display: none; }
  .navtoggle{ display: inline-flex; }
  .brand{ min-width: 0; }
  .brand .tag{ display: none; }
}
.navlinks a{
  font-size: 14px;
  color: rgba(68, 84, 111, 0.95);
  padding: 8px 10px;
  border-radius: 12px;
}
.navlinks a:hover{ background: rgba(9, 30, 66, 0.06); color: var(--text); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 82, 204, 0.22);
  background: var(--accent);
  color: rgba(255,255,255,0.96);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background: #0047b3;
  border-color: rgba(0, 82, 204, 0.30);
}
.btn.secondary{
  background: rgba(255,255,255,0.55);
  color: rgba(23, 43, 77, 0.94);
  border: 1px solid rgba(223, 225, 230, 0.95);
}
.btn.secondary:hover{
  background: rgba(255,255,255,0.70);
  border-color: rgba(193, 199, 208, 0.95);
}

/* Hero */
.hero{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(0, 101, 255, 0.10), transparent 62%),
    radial-gradient(900px 520px at 80% 10%, rgba(54, 179, 126, 0.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero > .card{
  position: relative;
  z-index: 1;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  color: var(--muted);
  font-size: 13px;
}
.dot{
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.10);
}

h1{
  margin: 14px 0 10px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.4px;
}
@media (max-width: 520px){
  h1{ font-size: 34px; }
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 62ch;
}

.actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pillgrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
@media (max-width: 980px){
  .pillgrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .pillgrid{ grid-template-columns: 1fr; }
}
.pill{
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.pill .icon{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 82, 204, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pill .icon svg{
  width: 16px;
  height: 16px;
  display: block;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}
.pill .txt{
  line-height: 1.35;
  max-width: 26ch;
}
.pill .txt b{
  display: block;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
}
.pill b{ color: var(--text); }

/* Hero illustration (simple, friendly) */
.hero-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hero-copy{
  flex: 1 1 520px;
  min-width: 0;
}
.hero-illus{
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-illus svg{
  width: 360px;
  height: auto;
  display: block;
}
@media (max-width: 900px){
  .hero-illus{ flex-basis: 300px; }
  .hero-illus svg{ width: 300px; }
}
@media (max-width: 720px){
  .hero-inner{ flex-direction: column; align-items: stretch; }
  .hero-illus{ justify-content: center; }
  .hero-illus svg{ width: 100%; max-width: 520px; }
}

/* Sections */
section{ margin-top: 22px; }
.section-title{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.section-title h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.section-title p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Logos / clients */
.clients{
  margin-top: 18px;
}
.logogrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: center;
  justify-items: center;
  justify-content: center;
}
@media (max-width: 520px){
  .logogrid{ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

.logo-item{
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo{
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.15s ease, filter 0.15s ease;
  display: block;
}
.logo-item:hover .client-logo{
  opacity: 1;
  filter: grayscale(0);
}

.client-logo-svg{
  max-height: 38px;
  max-width: 160px;
  width: auto;
  height: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.15s ease, filter 0.15s ease;
  display: block;
}
.logo-item:hover .client-logo-svg{
  opacity: 1;
  filter: grayscale(0);
}

.logo-placeholder{
  height: 40px;
  width: 100%;
  max-width: 140px;
  background: rgba(255,255,255,0.60);
  color: rgba(68, 84, 111, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.15s ease, background 0.15s ease;
  user-select: none;
}
.logo-placeholder.more{
  max-width: 180px;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
  opacity: 0.65;
}
.logo-item:hover .logo-placeholder{
  opacity: 1;
  background: rgba(255,255,255,0.72);
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .grid3{ grid-template-columns: 1fr; }
}

.item h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.item p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.list{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.70);
}
.check{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 82, 204, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}

.foot{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

/* Simple modal for contact (optional) */
dialog{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 0;
  width: min(640px, 92vw);
  box-shadow: var(--shadow);
}
dialog::backdrop{
  background: rgba(12, 18, 32, 0.35);
}
.modal{
  padding: 18px;
}
.modal header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.x{
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
}
.field{
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.field label{
  font-size: 13px;
  color: var(--muted);
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 110px; resize: vertical; }
.small{ font-size: 12px; color: var(--muted); margin-top: 8px; }

.tiny{
  font-size: 11px;
  color: var(--muted);
  opacity: 0.85;
}

/* Contact section */
.contact-card{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 720px){
  .contact-card{ grid-template-columns: 1fr; }
}

.contact-points{
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.contact-point{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.70);
}
.contact-point .mini{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 82, 204, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.contact-point .mini svg{
  width: 14px;
  height: 14px;
  display: block;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.contact-side{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.70);
  padding: 14px;
}
.contact-side .label{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-side .big{
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  color: var(--muted);
  font-size: 12px;
}