/* ============================================
   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;
  --glass-light: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.7);
  --shadow-glass: 0 8px 40px rgba(26,47,85,0.08), 0 2px 8px rgba(26,47,85,0.05), inset 0 1px 0 rgba(255,255,255,0.85);
}
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; font-optical-sizing: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
/* Soft brand-colour wash behind the page so frosted-glass surfaces have
   something to blur — invisible on its own, it makes the glass read. */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(640px circle at 88% -4%, rgba(25,118,210,.08), transparent 62%),
    radial-gradient(720px circle at -12% 38%, rgba(58,171,71,.07), transparent 62%),
    radial-gradient(560px circle at 104% 82%, rgba(96,200,255,.07), transparent 62%);
}
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); letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
.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,.82); border-bottom: 1px solid var(--glass-border); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); box-shadow: inset 0 1px 0 rgba(255,255,255,.85); }
.navbar.headroom { transition: transform .3s ease; will-change: transform; }
.navbar.headroom--unpinned { transform: translateY(-100%); }
.navbar.headroom--pinned { transform: translateY(0); }
.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; }

/* MOBILE APP PROMO */
.mobile-app-promo { padding: 12px 0 56px; }
.mobile-app-card { background: var(--glass-light); border: 1px solid var(--glass-border); border-radius: var(--r-xl); box-shadow: var(--shadow-glass); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); padding: 32px 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.mobile-app-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-app-text { flex: 1 1 240px; min-width: 220px; }
.mobile-app-text h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 5px; }
.mobile-app-text p { font-size: .85rem; color: var(--text-2); line-height: 1.6; margin: 0; }
.mobile-app-form { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.mobile-app-input { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-md); font-size: .85rem; font-family: inherit; min-width: 220px; outline: none; background: var(--bg-alt); transition: border-color .2s, background .2s; }
.mobile-app-input:focus { border-color: var(--blue); background: #fff; }
.mobile-app-btn { padding: 11px 22px; border-radius: var(--r-md); background: var(--grad-blue); color: #fff; border: none; font-size: .85rem; font-weight: 600; font-family: inherit; cursor: pointer; white-space: nowrap; transition: all .2s; }
.mobile-app-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(25,118,210,.3); }
.mobile-app-success { width: 100%; font-size: .8rem; color: var(--green); font-weight: 600; margin-top: 2px; }
.mobile-app-stores { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.store-badge { display: flex; align-items: center; gap: 10px; background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px 18px; text-decoration: none; color: #fff; transition: transform .2s, box-shadow .2s; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,47,85,.25); text-decoration: none; }
.store-badge svg { flex-shrink: 0; }
.store-badge .store-text { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge .store-text small { font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.store-badge .store-text strong { font-size: .92rem; font-weight: 700; }
@media (max-width: 700px) { .mobile-app-card { flex-direction: column; align-items: flex-start; } .mobile-app-form { width: 100%; } .mobile-app-input { flex: 1; } .mobile-app-stores { width: 100%; } }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: ''; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; }
.nav-dropdown:hover > a::after, .nav-dropdown:focus-within > a::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu { position: absolute; top: 100%; left: -14px; margin-top: 12px; min-width: 230px; background: rgba(255,255,255,.88); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--glass-border); border-radius: var(--r-md); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.85); padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .85rem; font-weight: 500; color: var(--text-2); white-space: nowrap; }
.nav-dropdown-menu li a:hover { background: var(--bg-alt); color: var(--navy); text-decoration: none; }
.nav-dropdown-menu li a small { display: block; font-size: .72rem; font-weight: 400; color: var(--text-3); margin-top: 2px; }
.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; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.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: var(--glass-light); border: 1px solid var(--glass-border); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-glass); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); }
.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(--glass-border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 10px; background: var(--glass-light); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); box-shadow: var(--shadow-glass); }
.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: transparent; transition: background .2s; user-select: none; }
.faq-q:hover { background: rgba(25,118,210,.05); }
.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; }
}
