/* ==========================================================================
   WordPressSiteMaintenance.com — Global Styles
   Slick, clean, professional. Blue/white palette.
   ========================================================================== */

:root {
  --blue-900: #0a2540;
  --blue-700: #0b4f9c;
  --blue-600: #1466c4;
  --blue-500: #2684ff;
  --blue-100: #e8f1ff;
  --blue-50:  #f4f8ff;
  --ink:      #0f1b2d;
  --slate:    #475569;
  --slate-400:#94a3b8;
  --line:     #e4e9f2;
  --bg:       #ffffff;
  --bg-soft:  #f7f9fc;
  --green:    #16a34a;
  --radius:   14px;
  --radius-lg:22px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,.08), 0 1px 2px rgba(10,37,64,.04);
  --shadow:    0 10px 30px rgba(10,37,64,.10);
  --shadow-lg: 0 24px 60px rgba(10,37,64,.16);
  --max: 1180px;
  --gradient: linear-gradient(135deg, #1466c4 0%, #2684ff 60%, #4aa3ff 100%);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--blue-700); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--slate); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.lead { font-size: 1.18rem; color: var(--slate); max-width: 60ch; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gradient); color: #fff; box-shadow: 0 8px 20px rgba(38,132,255,.35); }
.btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(38,132,255,.45); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--blue-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-700); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.24); color: #fff; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--gradient); display: grid; place-items: center;
  color: #fff; font-weight: 900; box-shadow: 0 6px 14px rgba(38,132,255,.4);
}
.brand .logo-img {
  width: 40px; height: 40px; border-radius: 9px; object-fit: contain;
  background: #fff; padding: 3px; box-shadow: 0 6px 14px rgba(38,132,255,.25);
}
.site-footer .brand .logo-img { background: rgba(255,255,255,.95); }
.brand small { display: block; font-weight: 500; font-size: .68rem; color: var(--slate-400); letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--slate); font-weight: 600; font-size: .95rem; padding: 9px 14px; border-radius: 9px; }
.nav-links a:hover { color: var(--ink); background: var(--blue-50); }
.nav-cta { margin-left: 10px; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 290px;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transition: all .18s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: .9rem; }
.dropdown a span { display: block; font-weight: 500; font-size: .78rem; color: var(--slate-400); }
.dropdown a:hover { background: var(--blue-50); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--blue-900); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(38,132,255,.45), transparent 60%),
              radial-gradient(900px 500px at 0% 110%, rgba(74,163,255,.30), transparent 55%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 86px; padding-bottom: 92px; }
.hero h1 { color: #fff; }
.hero p { color: #c7d6ec; font-size: 1.2rem; max-width: 52ch; }
.hero .eyebrow { color: #7fb6ff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-badge .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.18); }
.hero-badge strong { display: block; color: var(--ink); font-size: .95rem; }
.hero-badge span { font-size: .8rem; color: var(--slate-400); }

.trustbar { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 38px; }
.trustbar div strong { display: block; font-size: 1.6rem; color: #fff; }
.trustbar div span { font-size: .82rem; color: #9fb6d6; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin-bottom: 18px; }
.card .card-link { margin-top: auto; font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split-media { order: -1; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: "✓"; flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--blue-50);
  color: var(--blue-600); font-weight: 800; display: grid; place-items: center; font-size: .82rem; margin-top: 2px;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); position:absolute; top:-16px; left:24px; width:40px;height:40px;border-radius:11px;background:var(--gradient);color:#fff;font-weight:800;display:grid;place-items:center;box-shadow:0 8px 16px rgba(38,132,255,.4); }
.step h3 { margin-top: 12px; font-size: 1.1rem; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.price-card { background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:34px 30px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;position:relative; }
.price-card.featured { border-color: var(--blue-500); box-shadow: var(--shadow); transform: scale(1.03); }
.price-card.featured::after { content:"Most popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gradient); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 16px; border-radius:999px; box-shadow:0 8px 16px rgba(38,132,255,.4); }
.price-card h3 { font-size:1.15rem; }
.price { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing:-.03em; }
.price small { font-size: .95rem; font-weight: 500; color: var(--slate-400); }
.price-card ul { list-style:none; padding:0; margin: 22px 0; display:grid; gap:12px; }
.price-card li { display:flex; gap:10px; align-items:flex-start; font-size:.94rem; color: var(--slate); }
.price-card li::before { content:"✓"; color: var(--green); font-weight:800; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 64px; background: var(--blue-900); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 400px at 90% -20%, rgba(38,132,255,.5), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#c7d6ec; max-width: 52ch; }
.cta-band .hero-cta { margin-top: 26px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--blue-900); position: relative; overflow:hidden; padding: 72px 0 64px; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(1000px 500px at 80% -30%, rgba(38,132,255,.4), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color:#fff; max-width: 18ch; }
.page-hero p { color:#c7d6ec; font-size:1.15rem; max-width: 54ch; }
.crumbs { font-size:.85rem; color:#88a4c9; margin-bottom: 18px; }
.crumbs a { color:#aac4e6; }

/* ---------- Logos / trust ---------- */
.logos { display:flex; gap:40px; flex-wrap:wrap; align-items:center; justify-content:center; opacity:.7; }
.logos span { font-weight:800; color: var(--slate-400); font-size:1.2rem; letter-spacing:-.02em; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display:grid; gap: 14px; }
.faq details { background:#fff;border:1px solid var(--line);border-radius:var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq summary { cursor:pointer; font-weight:700; color:var(--ink); padding: 16px 0; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.4rem; color: var(--blue-500); font-weight: 400; }
.faq details[open] summary::after { content:"–"; }
.faq details p { padding-bottom: 18px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom: 24px; }
.contact-info .info-item .icon { width:46px;height:46px;border-radius:12px;background:var(--blue-50);color:var(--blue-600);display:grid;place-items:center;flex:0 0 auto; }
.contact-info .info-item .icon svg { width:22px;height:22px; }
.contact-info strong { display:block; color: var(--ink); }
.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--line); border-radius: 11px;
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--blue-500); background:#fff; box-shadow: 0 0 0 4px rgba(38,132,255,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width:100%; justify-content:center; }
.form-note { font-size:.82rem; color: var(--slate-400); margin: 14px 0 0; text-align:center; }
.form-success { display:none; background: #ecfdf3; border:1px solid #abefc6; color:#067647; padding:16px 18px; border-radius:12px; font-weight:600; margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color:#aac0dd; padding: 64px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color:#fff; }
.site-footer .brand small { color:#7e9bc0; }
.site-footer p { color:#8da7c8; font-size:.92rem; }
.footer-col h4 { color:#fff; font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer-col a { color:#aac0dd; font-size:.92rem; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:46px; padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color:#7e9bc0; }

/* ---------- Utility ---------- */
.text-center { text-align:center; }
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.reveal { opacity:0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero-media { order: -1; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split-media { order: 0; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links { position: fixed; inset: 74px 0 auto; flex-direction: column; align-items: stretch; background:#fff; border-bottom:1px solid var(--line); padding: 16px 24px 24px; gap: 4px; transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .has-dropdown .dropdown { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding: 4px 0 4px 12px; min-width:auto; }
  .grid--3, .grid--4, .grid--2, .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trustbar { gap: 24px; }
}
