/* AuditLog Software Solutions - Static Site Theme */
:root{
  --navy:#1a2b3c;
  --navy2:#24354b;
  --text:#1a2b3c;
  --muted:#6b7280;
  --bg:#ffffff;
  --soft:#f6f8fb;

  --orange:#f2994a;
  --green:#8cc63f;
  --blue:#2d9cdb;
  --purple:#9b51e0;
  --yellow:#f2c94c;

  --radius:16px;
  --shadowSoft:0 4px 10px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
.container{ max-width:1100px; margin:0 auto; padding:0 20px; }

/* Header / Nav */
.site-header{ background:var(--navy); color:#fff; }
.nav{ padding:18px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:14px; min-width:220px; }
.brand-logo{
  width:72px; height:72px; object-fit:cover;
  border-radius:999px; background:rgba(255,255,255,.06); padding:0;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.brand-text{ line-height:1.1; }
.brand-title{ font-weight:900; font-size:18px; letter-spacing:.2px; }
.brand-title span{ color:var(--orange); }
.brand-subtitle{ margin-top:6px; font-size:12px; color:rgba(255,255,255,.68); }

.nav-links{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap; justify-content:flex-end;
}
.nav-links a{
  font-size:14px; color:#bdc3c7; padding:8px 12px;
  border-radius:10px; transition:all .15s ease;
}
.nav-links a:hover{ color:#fff; background:rgba(255,255,255,.08); }
.nav-links a.active{
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 18px; border-radius:14px; font-weight:800;
  border:2px solid transparent;
  transition:transform .12s ease, opacity .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); opacity:.95; }
.btn:active{ transform:translateY(0); }

.btn-cta{
  background:var(--green);
  color:#fff !important;
  padding:10px 18px !important;
  border-radius:999px !important;
}
.btn-primary{ background:var(--green); color:#fff; }
.btn-outline{ border-color:#fff; color:#fff; background:transparent; }
.btn-outline-dark{ border-color:rgba(26,43,60,.25); color:var(--navy); background:transparent; }

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:18px; margin:5px auto;
  background:#fff; border-radius:99px; opacity:.9;
}

/* Hero */
.hero{ padding:72px 0 54px; background:var(--navy); }
.hero-inner{ text-align:center; color:#fff; }
.hero h1{
  margin:0 0 16px;
  font-size:clamp(30px, 6vw, 48px);
  font-weight:900;
  letter-spacing:-.6px;
  line-height:1.12;
}
.hero h1 span{ color:var(--orange); }
.hero p{
  margin:0 auto 28px;
  max-width:820px;
  font-size:18px;
  line-height:1.65;
  color:#bdc3c7;
}
.hero-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:18px; }
.hero-badges{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:14px; }
.badge{
  padding:10px 12px; border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.86);
  font-size:12px; font-weight:700;
}

/* Sections */
.section{ padding:64px 0; }
.section-soft{ background:var(--soft); }
.section-header{ text-align:center; margin-bottom:26px; }
.section-header h2{ margin:0 0 10px; font-size:32px; font-weight:900; letter-spacing:-.3px; }
.section-header .muted{ margin:0 auto; max-width:820px; color:var(--muted); font-size:15px; line-height:1.7; }
.accent-blue{ color:var(--blue); }
.accent-orange{ color:var(--orange); }

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:28px;
}
.card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadowSoft);
  overflow:hidden;
  border-left:6px solid transparent;
  padding:22px;
  display:flex;
  flex-direction:column;
  min-height:170px;
}
.card h3{ margin:0 0 10px; font-size:18px; font-weight:900; }
.card p{ margin:0; color:#667085; line-height:1.6; font-size:14px; }
.card-foot{ margin-top:auto; padding-top:14px; }
.link{ color:var(--navy); font-weight:900; display:inline-flex; gap:8px; align-items:center; }
.link:hover{ text-decoration:underline; }

.card-blue{ border-left-color:var(--blue); }
.card-purple{ border-left-color:var(--purple); }
.card-yellow{ border-left-color:var(--yellow); }
.card-green{ border-left-color:var(--green); }

.dot{ font-weight:900; margin-right:8px; }
.dot-blue{ color:var(--blue); }
.dot-purple{ color:var(--purple); }
.dot-yellow{ color:var(--yellow); }
.dot-green{ color:var(--green); }

/* Principles grid */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:22px;
}
.mini{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadowSoft);
  padding:18px;
  border:1px solid rgba(0,0,0,.04);
}
.mini h4{ margin:0 0 8px; font-weight:900; letter-spacing:-.2px; }
.mini p{ margin:0; color:#667085; line-height:1.6; font-size:14px; }

/* CTA strip */
.cta-strip{
  margin-top:22px;
  background:linear-gradient(135deg, rgba(45,156,219,.12), rgba(242,153,74,.12));
  border:1px solid rgba(26,43,60,.10);
  border-radius:22px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cta-strip h3{ margin:0 0 6px; font-weight:900; letter-spacing:-.3px; }
.cta-strip p{ margin:0; color:#51606f; }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Pages */
.page-title{ margin:0 0 14px; font-size:34px; font-weight:900; letter-spacing:-.4px; }
.lead{ margin:0 0 22px; color:#51606f; line-height:1.7; max-width:860px; }
.prose{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadowSoft);
  padding:22px; border:1px solid rgba(0,0,0,.04);
}
.prose h2{ margin:18px 0 10px; font-size:18px; font-weight:900; }
.prose p, .prose li{ color:#445566; line-height:1.7; font-size:14px; }
.prose ul{ padding-left:18px; }
.iframe-wrap{ display:flex; justify-content:center; }
.iframe-ticket{
  width:100%;
  max-width:768px;
  height:840px;
  border:0;
  border-radius:16px;
  background:#fff;
}

/* Footer */
.site-footer{ background:var(--navy); color:#fff; padding:44px 0; }
.footer-inner{ display:flex; flex-direction:column; gap:16px; text-align:center; }
.footer-title{ font-weight:900; font-size:22px; }
.footer-title span{ color:var(--orange); }
.footer-subtitle{ margin-top:8px; color:#bdc3c7; font-size:14px; line-height:1.6; }
.footer-links{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.footer-links a{ color:#bdc3c7; padding:8px 10px; border-radius:10px; }
.footer-links a:hover{ background:rgba(255,255,255,.08); color:#fff; }
.footer-copy{ font-size:12px; color:rgba(255,255,255,.7); }

/* Responsive */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-toggle{ display:inline-block; }
  .nav-links{
    display:none; width:100%;
    flex-direction:column; align-items:stretch;
    gap:6px; margin-top:12px; padding-top:10px;
    border-top:1px solid rgba(255,255,255,.10);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ width:100%; text-align:center; }
  .brand-logo{ width:56px; height:56px; }
}
