:root{
  --bg:#F6F8FC;
  --surface:#FFFFFF;
  --surface2:#F2F5FB;
  --border: rgba(16,24,40,.10);
  --text: rgba(16,24,40,.92);
  --muted: rgba(16,24,40,.68);

  --brandA:#2563EB; /* blue */
  --brandB:#06B6D4; /* cyan */
  --shadow: 0 18px 60px rgba(16,24,40,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(37,99,235,.12), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(6,182,212,.10), transparent 55%),
    var(--bg);
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ line-height:1.15; margin:10px 0; }
h1{ font-size: clamp(2rem, 3.4vw, 3.05rem); letter-spacing:-.02em; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }
.section{ padding: 44px 0; }
.muted{ color: var(--muted); }
.small{ font-size:.9rem; }

/* Skip link */
.skip{ position:absolute; left:-9999px; }
.skip:focus{
  position:fixed; left:16px; top:16px;
  padding:10px 12px;
  border-radius:12px;
  background: var(--surface);
  border:1px solid var(--border);
  z-index:9999;
  box-shadow: var(--shadow);
}

/* Navbar */
.navbar{
  position:sticky; top:0; z-index:50;
  background: rgba(246,248,252,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  font-weight: 900;
}
.brand img{
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(16,24,40,.12);
  box-shadow: 0 14px 40px rgba(16,24,40,.12);
}
.brand-text{ display:grid; line-height:1.1; }
.brand-name{ font-size:1.15rem; }
.brand-tag{ font-size:.86rem; color: rgba(16,24,40,.62); font-weight:700; }

.nav-links{
  display:flex;
  gap: 10px;
  margin-left:auto;
  align-items:center;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(16,24,40,.78);
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover{
  background: rgba(37,99,235,.08);
  color: rgba(16,24,40,.92);
}

.nav-actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* Mobile */
.hamburger{
  display:none;
  margin-left:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
}
.mobile-nav{
  padding: 10px 0 14px;
  display:grid;
  gap:8px;
}
.mobile-nav a{
  padding:12px 12px;
  border-radius:12px;
  background: var(--surface);
  border:1px solid var(--border);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 15px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: rgba(16,24,40,.92);
  font-weight: 800;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(16,24,40,.10);
  border-color: rgba(37,99,235,.22);
}
.btn-ghost{ background: transparent; }
.btn-primary{
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brandA), var(--brandB));
  box-shadow: 0 14px 40px rgba(37,99,235,.22);
}
.btn-primary:hover{ box-shadow: 0 18px 50px rgba(37,99,235,.26); }
.btn-wide{ width:100%; }

/* Hero */
.hero{ padding: 34px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.hero-copy{
  border-radius: 22px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  font-weight: 900;
  font-size: .92rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.12);
  color: rgba(16,24,40,.86);
}
.lead{
  font-size: 1.06rem;
  color: rgba(16,24,40,.82);
  line-height: 1.7;
  margin-top: 10px;
}
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: rgba(16,24,40,.78);
  font-size:.92rem;
}
.cta-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }

/* Trustbar */
.trustbar{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.trust-item{
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  text-align:center;
  font-weight: 800;
  color: rgba(16,24,40,.82);
}

/* Hero panel */
.hero-panel{
  border-radius: 22px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.hero-logo{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}
.hero-logo img{
  width: 280px;  /* Big visible logo */
  height: 280px;
  object-fit: contain;
  border-radius: 28px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(16,24,40,.12);
  box-shadow: 0 26px 70px rgba(16,24,40,.18);
}

.panel-title{ font-weight: 900; margin: 8px 0 12px; }
.panel-list{ display:grid; gap: 10px; }
.panel-item{
  display:flex; gap:10px;
  padding:12px;
  border-radius: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: transform .18s ease;
}
.panel-item:hover{ transform: translateY(-1px); }
.icon{
  width:36px; height:36px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.12);
  flex: 0 0 auto;
}
.panel-note{ margin-top: 10px; text-align:center; }

/* Sections */
.section-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  margin-bottom: 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.card{
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(16,24,40,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(16,24,40,.12);
  border-color: rgba(37,99,235,.18);
}
.card-icon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(6,182,212,.10);
  border: 1px solid rgba(6,182,212,.16);
  margin-bottom: 10px;
}

/* Process */
.process-card{
  padding: 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.process-steps{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.step{
  padding: 16px;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display:flex;
  gap: 12px;
}
.step-num{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight: 900;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.14);
  flex: 0 0 auto;
}

/* Contact */
.contact-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-points{ display:grid; gap:8px; margin-top: 10px; }
.point{
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-weight: 700;
}
.form{
  display:grid;
  gap:10px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
}
label{ display:grid; gap:6px; font-weight:800; color: rgba(16,24,40,.86); }
input,textarea,select{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(16,24,40,.12);
  color: rgba(16,24,40,.92);
  outline:none;
  font-family: inherit;
}
input:focus,textarea:focus,select:focus{
  border-color: rgba(37,99,235,.40);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form-note{ margin:0; text-align:center; font-size:.9rem; }

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0 26px;
  color: rgba(16,24,40,.70);
  text-align:center;
}

/* Toast */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100% - 36px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(16,24,40,.18);
  color: rgba(16,24,40,.92);
  opacity: 0;
  pointer-events:none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{ opacity:1; transform: translateY(0); }

/* ===== Step 4: IT-company sections ===== */
.logo-strip{
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.logo-strip-title{
  font-weight: 900;
  margin-bottom: 10px;
}
.logos{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.logo-pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-weight: 800;
  color: rgba(16,24,40,.78);
}

.case-top{ display:flex; gap:8px; margin-bottom: 8px; flex-wrap:wrap; }
.case-tag{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.14);
  font-weight: 900;
  font-size: .82rem;
  color: rgba(16,24,40,.82);
}
.case-list{
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: rgba(16,24,40,.72);
}
.case-list li{ margin: 6px 0; }

.testimonials{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quote blockquote{
  margin:0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(16,24,40,.86);
}
.quote figcaption{
  margin-top: 10px;
  font-weight: 900;
  color: rgba(16,24,40,.70);
}

/* ===== Step 5: Page hero + tool UI ===== */
.page-hero{
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.list{
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: rgba(16,24,40,.74);
}
.list li{ margin: 6px 0; }

.callout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tool-label{
  display:grid;
  gap: 6px;
  font-weight: 800;
  color: rgba(16,24,40,.86);
  margin-top: 10px;
}

.tool-output{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: rgba(16,24,40,.86);
  min-height: 44px;
}

.tool-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(16,24,40,.82);
}
.tool-list li{ margin: 6px 0; }

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-actions{ display:none; }
  .hamburger{ display:inline-flex; margin-left:auto; }

  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
  .contact-card{ grid-template-columns: 1fr; }
  .trustbar{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials{ grid-template-columns: 1fr; }
  .callout{ flex-direction: column; align-items:flex-start; }

  .hero-logo img{
    width: 230px;
    height: 230px;
  }
}
