/* ARAM IT PRODUCT - Premium Corporate UI */
:root{
  --bg: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef3fb;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --brand: #1e5eff;
  --brand-2: #0ea5e9;
  --brand-soft: rgba(30, 94, 255, .12);
  --shadow: 0 14px 40px rgba(15, 23, 42, .10);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 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.6;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }

section[id]{ scroll-margin-top: 92px; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 10000;
}
.skip-link:focus{ left: 12px; }

/* Header / Nav */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: blur(12px);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand .name{
  display: grid;
  line-height: 1.1;
}
.brand-title{
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.brand-title img{
  height: 30px;
  width: auto;
  max-width: min(320px, 52vw);
  object-fit: contain;
}
.brand .name span{ font-size: 12px; color: var(--muted); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover{
  background: rgba(30,94,255,.08);
  color: var(--text);
}
.nav-links a.active{
  background: var(--brand-soft);
  color: var(--brand);
}
.nav-cta{
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(30, 94, 255, .22);
}
.btn-primary:hover{ box-shadow: 0 18px 44px rgba(30, 94, 255, .28); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(15,23,42,.02);
  border-color: rgba(15,23,42,.10);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(30,94,255,.08); border-color: rgba(30,94,255,.18); }

.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.8);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.icon-btn:hover{ background: rgba(30,94,255,.06); border-color: rgba(30,94,255,.18); }

/* Sections */
.section{
  padding: 84px 0;
}
.section.tight{ padding: 64px 0; }
.section-alt{
  background: linear-gradient(180deg, var(--surface), #fff);
}

.section-title{
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.eyebrow{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(30,94,255,.08);
  border: 1px solid rgba(30,94,255,.14);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 12px;
}
.section-title h2{
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-title p{
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

/* Hero */
.hero{
  position: relative;
  padding: 74px 0 40px;
  overflow: hidden;
}
.hero::before{
  content:"";
  position: absolute;
  inset: -240px -180px auto -180px;
  height: 520px;
  background:
    radial-gradient(circle at 25% 35%, rgba(30,94,255,.22), transparent 55%),
    radial-gradient(circle at 70% 35%, rgba(14,165,233,.18), transparent 60%);
  pointer-events: none;
}
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 34px;
  align-items: center;
}
.hero h1{
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero p{
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 16px;
}
.hero-actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.badge i{ color: var(--brand); }

.hero-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top{
  padding: 22px 22px 0;
}
.hero-card-top h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -.01em;
}
.hero-card-top p{
  margin: 10px 0 0;
  font-size: 14px;
}
.mini-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 22px 22px;
}
.mini{
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30,94,255,.08), rgba(255,255,255,0));
  border: 1px solid rgba(30,94,255,.14);
  padding: 14px;
  display: grid;
  gap: 8px;
}
.mini .k{ font-weight: 900; color: var(--text); }
.mini .v{ font-size: 13px; color: var(--muted); }
.mini i{ color: var(--brand); }

/* Cards / grids */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(30,94,255,.18);
  box-shadow: 0 18px 44px rgba(15,23,42,.12);
}
.card .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(30,94,255,.10);
  border: 1px solid rgba(30,94,255,.14);
  color: var(--brand);
}
.card h3{
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card ul{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.card li{ margin: 6px 0; }

.highlight{
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(30,94,255,.12), rgba(14,165,233,.08));
  border: 1px solid rgba(30,94,255,.14);
  padding: 22px;
}
.highlight h3{ margin: 0; font-size: 18px; }
.highlight p{ margin: 10px 0 0; color: var(--muted); }
.checklist{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}
.check i{
  margin-top: 2px;
  color: var(--brand);
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.form{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.field{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
label{
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(247,249,252,.55);
  outline: none;
  font: inherit;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus{
  background: #fff;
  border-color: rgba(30,94,255,.35);
  box-shadow: 0 0 0 4px rgba(30,94,255,.10);
}
.form-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.form-note{
  font-size: 13px;
  color: var(--muted);
}

.contact-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247,249,252,.9), #fff);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.contact-card .row{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.contact-card .row i{ color: var(--brand); margin-top: 2px; }
.map-placeholder{
  margin-top: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(30,94,255,.32);
  background: rgba(30,94,255,.06);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.map-placeholder .top{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-weight: 900;
}
.map-placeholder p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.footer{
  background: #0b1224;
  color: rgba(255,255,255,.86);
  padding: 46px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer h3{
  margin: 0 0 8px;
  letter-spacing: -.01em;
  font-size: 16px;
  color: #fff;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-title{
  margin: 0;
  line-height: 1;
}
.footer-title img{
  height: 18px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}
.footer-logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  object-fit: cover;
}
.footer p, .footer a{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.footer a:hover{ color: #fff; }
.footer .links{
  display: grid;
  gap: 10px;
}
.footer .divider{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 26px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ order: 2; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .icon-btn{ display: grid; }
  .nav-links{
    position: fixed;
    inset: 64px 12px auto 12px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a{ padding: 12px 12px; }
  .nav-cta{ display: none; }
  .section{ padding: 74px 0; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn, .card, .reveal{ transition: none !important; }
  .card:hover{ transform: none; }
}

