/* ============================================
   GAZOLE — Shared Inner Pages Stylesheet
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a2f55; --blue: #1976d2; --green: #3aab47;
  --blue-light: #e3edfb; --green-light: #e8f5ea;
  --bg: #ffffff; --bg-alt: #f7f9fc; --border: #e4eaf4;
  --text: #1a2f55; --text-2: #4b5e80; --text-3: #8898b8;
  --grad-hero: linear-gradient(145deg,#0b1a38 0%,#0f2550 50%,#0a2040 100%);
  --grad-blue: linear-gradient(135deg,#1976d2,#1565c0);
  --grad-green: linear-gradient(135deg,#3aab47,#2e8a3b);
  --shadow-md: 0 6px 24px rgba(26,47,85,.1);
  --shadow-lg: 0 12px 48px rgba(26,47,85,.14);
  --r-md: 12px; --r-lg: 18px; --r-xl: 24px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { font-family: 'Space Grotesk',-apple-system,sans-serif; line-height: 1.2; color: var(--navy); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.gradient-text { background: linear-gradient(135deg,#1976d2,#12a07a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
img { max-width: 100%; }

/* NAV */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); border-bottom: 1px solid var(--border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.nav-container { max-width: 1180px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-2); transition: color .2s; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-cta { display: flex; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--r-md); font-size: .88rem; font-weight: 600; cursor: pointer; text-decoration: none; border: none; transition: all .22s; white-space: nowrap; font-family: inherit; }
.btn-blue { background: var(--grad-blue); color: #fff; box-shadow: 0 4px 16px rgba(25,118,210,.28); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(25,118,210,.38); text-decoration: none; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); text-decoration: none; }
.btn-portal { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); font-weight: 600; }
.btn-portal:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-green { background: var(--grad-green); color: #fff; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* PAGE HERO */
.page-hero { background: var(--grad-hero); padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(25,118,210,.4) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(58,171,71,.25) 0%, transparent 50%); }
.page-hero .container { position: relative; z-index: 1; }
.page-chip { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #60c8ff; background: rgba(96,200,255,.1); border: 1px solid rgba(96,200,255,.25); padding: 4px 14px; border-radius: 100px; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.75; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); border: 1px solid rgba(25,118,210,.18); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.pill.green { color: var(--green); background: var(--green-light); border-color: rgba(58,171,71,.2); }
.section-title { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin-bottom: 14px; }
.section-sub { font-size: .97rem; color: var(--text-2); line-height: 1.75; max-width: 600px; }

/* CARDS */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-md); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* FOOTER */
.footer { background: var(--navy); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 16px; max-width: 240px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; }
.social-links a:hover { background: rgba(255,255,255,.15); color: #fff; }

/* FAQ accordion */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 10px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .92rem; color: var(--navy); background: #fff; transition: background .2s; user-select: none; }
.faq-q:hover { background: var(--bg-alt); }
.faq-q .faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .88rem; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* Status indicators */
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-dot.up   { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.status-dot.warn { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251,191,36,.2); }
.status-dot.down { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.2); }

/* Uptime bars */
.uptime-bar { display: flex; gap: 2px; height: 28px; border-radius: 6px; overflow: hidden; margin: 8px 0; }
.uptime-day { flex: 1; background: #22c55e; opacity: .7; border-radius: 2px; }
.uptime-day.partial { background: #fbbf24; }

@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 52px; }
}
