/* KA IT — Premium Skin (Stripe/Unit-T inspired) — LIGHT ONLY
   Clean Reset v12 — single, stable layer on top of style.css
   - No global dark background
   - No sticky/top here (header sticky is in style.css)
   - Mobile: top-bar hidden, packs stack, menu stays above content
*/

/* Small accent helpers */
:root{
  --ka-accent: var(--brand, #4f46e5);
  --ka-accent-soft: rgba(79,70,229,.10);
  --ka-border-subtle: rgba(15,23,42,.08);
  --ka-shadow-soft: 0 18px 45px rgba(15,23,42,.10);
}

/* LIGHT global background (subtle) */
body{
  background-color: var(--bg, #ffffff);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,.16) 0, transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(129,140,248,.14) 0, transparent 42%),
    radial-gradient(circle at 20% 100%, rgba(45,212,191,.10) 0, transparent 45%);
  background-repeat:no-repeat;
  background-size: 120% 120%;
}

/* Top info bar (inside header) — desktop only */
.top-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  padding:10px 16px;
  font-size:13px;
  color: rgba(15,23,42,.78);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(15,23,42,.06);
  backdrop-filter: saturate(160%) blur(8px);
}
.top-bar a{color: rgba(15,23,42,.86); text-decoration:none}
.top-bar a:hover{color: rgba(79,70,229,1); text-decoration:underline}
.top-bar .top-bar-spacer{opacity:.55}

/* Mobile: hide top-bar to avoid crowding/bugs */
@media (max-width: 600px){
  .top-bar{display:none !important; backdrop-filter:none !important;}
}

/* Hero (Stripe-like, light) */
.hero{
  position:relative;
  padding: 28px 0 8px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-24px -80px auto -80px;
  height: 340px;
  background:
    radial-gradient(circle at 25% 25%, rgba(56,189,248,.20) 0, transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(129,140,248,.18) 0, transparent 55%),
    radial-gradient(circle at 65% 80%, rgba(45,212,191,.12) 0, transparent 60%);
  filter: blur(2px);
  z-index:-1;
  pointer-events:none;
}
.hero-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}
.hero-main h1{
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h1-accent{color: var(--ka-accent);}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(8px);
  color: rgba(15,23,42,.78);
  font-size:13px;
  line-height:1.2;
  margin:6px 0;
}
.hero-visual img{display:block;width:100%;height:auto;border-radius:14px}
.hero-main p{
  font-size: 18px;
  line-height: 1.5;
  color: rgba(15,23,42,.74);
  margin-top: 14px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.hero-side{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.hero-card{
  position:relative;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 20px 60px rgba(15,23,42,.08);
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto -80px;
  height: 240px;
  background:
    radial-gradient(circle at 20% 30%, rgba(56,189,248,.18) 0, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(129,140,248,.16) 0, transparent 62%);
  z-index:0;
  pointer-events:none;
}
.hero-card > *{position:relative; z-index:1;}
.hero-kpis{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.kpi{
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px;
  padding: 12px;
  background:#fff;
}
.kpi .k{font-size:12px;color:rgba(15,23,42,.60);text-transform:uppercase;letter-spacing:.05em}
.kpi .v{font-size:18px;font-weight:700;margin-top:6px;color:rgba(15,23,42,.92)}

/* Make hero single column on mobile */
@media (max-width: 900px){
  .hero-split{grid-template-columns:1fr; gap: 16px;}
  .hero{padding-top: 18px;}
}

/* Pricing / Packs — explicit grid + robust stacking */
.pricing-preview{
  margin-top: 10px;
}
.pricing-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  align-items: stretch;
}
.pricing-row .tier{height:100%;}
@media (max-width: 1100px), (max-device-width: 480px){
  .pricing-row{grid-template-columns: 1fr !important;}
  .pricing-row .tier{width:100% !important; max-width:none !important;}
}

/* Tier typography polish */
.tier h3{margin:8px 0 6px; font-size:18px; line-height:1.25}
.tier .price{font-size:34px; font-weight:800; letter-spacing:-0.02em}
.tier .benefits{margin-top:12px}
.tier .benefits li{margin:6px 0}
.tier.featured{transform: translateY(-2px)}

/* Contact/Forms: ensure comfortable spacing on mobile */
@media (max-width: 900px){
  .form-card{grid-template-columns:1fr !important;}
}

/* Footer polish (keep light) */
footer{
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(15,23,42,.06);
}

/* Ensure burger/mobile panel is above everything */
.burger{position:relative; z-index:80;}
.mobile{z-index:90;}

/* === Release v14: iPhone/Android hard stack for Packs ===
   Safari can render "desktop website" with a wide CSS viewport.
   This forces the 3 pack cards to stack on touch devices regardless of viewport width. */
@media (hover: none) and (pointer: coarse){
  .pricing-row{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .pricing-row > .tier{
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}


/* =========================
   v10.1 — Logo sizing bump
   Goal: make KA IT logo less small without breaking nav.
   Recommended navbar heights often sit around ~64px, with logo ~40–48px desktop and a bit smaller on mobile.
   ========================= */
.brand img,
.brand-logo{
  height: 44px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

/* Mobile: slightly smaller to prevent wrapping/overflow */
@media (max-width: 980px){
  .brand img,
  .brand-logo{
    height: 38px;
    max-width: 240px;
  }
}

