/* =========================
   LUMINAR – CLEAN THEME (POLISHED)
   Keep logo sizing as-is
   ========================= */

:root{
  --lm-purple:#2E1A47;
  --lm-purple-dark:#24123a;
  --lm-gold:#F2C94C;
  --lm-text:#1F2937;
  --lm-muted:#4B5563;

  --lm-bg:#ffffff;
  --lm-card:#f5f6f8;
  --lm-border:#E5E7EB;
  --lm-shadow: 0 8px 20px rgba(0,0,0,.04);
  --lm-shadow-hover: 0 12px 30px rgba(0,0,0,.08);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--lm-bg);
  color:var(--lm-text);
  margin:0;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--lm-purple);text-decoration:none}
a:hover{text-decoration:underline}

/* Layout */
.container{max-width:1120px;margin:0 auto;padding:20px}
.section{padding:6px 0 10px;margin-top:60px}

/* Header */
.header{
  position:sticky;
  top:0;
  background:var(--lm-bg);
  z-index:10;
  border-bottom:1px solid var(--lm-border);
}
.header::after{
  content:"";
  position:absolute;
  bottom:0;left:0;width:100%;height:3px;
  background:linear-gradient(90deg, var(--lm-purple), var(--lm-gold));
}
.navwrap{display:flex;justify-content:space-between;align-items:center;padding:14px 0;gap:16px}
.nav{display:flex;gap:18px;flex-wrap:wrap}
.nav a{font-weight:700;color:var(--lm-purple)}
.nav a.active{text-decoration:underline;text-underline-offset:6px}

/* Logo sizing (UNCHANGED) */
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand img{
  height:110px; /* keep */
  width:auto;
  display:block;
  background:transparent;
}

/* Cards / sections */
.card{
  background:var(--lm-card);
  border:1px solid var(--lm-border);
  border-radius:14px;
  padding:32px;
  box-shadow:var(--lm-shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--lm-shadow-hover);
}

.hero{padding:44px 0 18px}
.hero-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:18px}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr}}

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

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:transparent;
  font-weight:800;
  color:var(--lm-purple);
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--lm-gold);
  box-shadow:0 0 0 4px rgba(242,201,76,.25);
}

/* Typography */
h1{font-size:42px;line-height:1.1;margin:14px 0 10px;color:var(--lm-purple)}
h2{margin:18px 0 10px}
h3{margin:10px 0 6px}
@media(max-width:520px){h1{font-size:34px}}
.lead{font-size:18px;color:var(--lm-muted);margin:0 0 18px}
.small{font-size:14px;color:#555}
ul{line-height:1.6}

/* Divider / footer */
.hr{height:1px;background:var(--lm-border);margin:18px 0}
.footer{margin-top:26px;padding:18px 0 30px;color:#666;font-size:14px}

/* Buttons */
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;          /* pill */
  font-weight:800;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  transition:transform .15s ease, filter .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

/* Prevent global link underline from affecting button-style links */
.btn:hover,
.btn:focus,
.btn:active{
  text-decoration:none;
}

.btn:active{transform:translateY(1px)}

/* Accessible focus ring (brand gold) */
.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(242,201,76,.25);
}

.btn-primary{background:var(--lm-purple);color:#fff}
.btn-primary:hover{background:var(--lm-purple-dark)}

.btn-secondary{background:var(--lm-gold);color:var(--lm-purple)}
.btn-secondary:hover{filter:brightness(.98)}

.btn-ghost{
  background:transparent;
  border-color:rgba(46,26,71,.35);
  color:var(--lm-purple);
}
.btn-ghost:hover{
  border-color:rgba(46,26,71,.55);
  background:rgba(46,26,71,.03);
}

/* Badges */
.badge{
  display:inline-flex;
  border:1px solid rgba(46,26,71,.12);
  border-radius:999px;
  padding:6px 10px;
  font-size:13px;
  background:rgba(255,255,255,.7);
}

/* Contact form */
.contact-form{margin-top:10px}
.contact-form label{display:block;margin:10px 0 6px}

.contact-form .field{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(31,41,55,.18);
  border-radius:12px;
  background:#fff;
  font:inherit;
  color:inherit;
  outline:none;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.contact-form .field:focus{
  border-color:rgba(46,26,71,.55);
  box-shadow:0 0 0 4px rgba(242,201,76,.25);
}
.contact-form textarea.field{
  resize:vertical;
  min-height:140px;
}

/* Two-column form layout helper */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:900px){.grid-2{grid-template-columns:1fr}}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .card, .btn{transition:none}
  .card:hover{transform:none}
}
/* Systems nav highlight */
.nav-systems {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d4af37;
  font-weight: 700;
}
.nav-systems:hover {
  background: rgba(212, 175, 55, 0.08);
  text-decoration: none;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: #d4af37;
}
.cookie-banner__btn {
  background: #d4af37;
  color: #111;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
