/* Agilgen — clean static rebuild (no GoDaddy blobby/widget code) */
:root {
  --navy: #0b2545;
  --navy-2: #123a63;
  --teal: #0e7490;
  --teal-dark: #155e75;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --text: #334155;
  --text-strong: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .05);
  --shadow-hover: 0 2px 6px rgba(15, 23, 42, .08), 0 14px 32px rgba(15, 23, 42, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "League Spartan", "Poppins", sans-serif; color: var(--text-strong); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.6vw, 34px); font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 21px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #cbd5e1; }
p { margin-bottom: 12px; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }
.eyebrow { display: inline-block; font-family: "League Spartan", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; color: var(--teal); margin-bottom: 10px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { color: var(--text); font-size: 15px; font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-link:hover { color: var(--teal); }
.nav-link.active { color: var(--teal); border-bottom-color: var(--teal); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  font-size: 20px; width: 42px; height: 38px; cursor: pointer; color: var(--text-strong); }

/* Buttons */
.btn { display: inline-block; font-family: "League Spartan", sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: .02em; padding: 12px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: all .18s ease; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #e2e8f0; color: var(--navy); }
.btn-ghost-light { border-color: rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Hero */
.hero { position: relative; color: #fff; padding: 110px 0 96px; background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,37,69,.92) 0%, rgba(11,37,69,.72) 42%, rgba(14,116,144,.45) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 14px; max-width: 15em; }
.hero .subtitle { font-size: 19px; color: rgba(255,255,255,.88); max-width: 42em; margin-bottom: 26px; }
.hero .tagline { font-family: "League Spartan", sans-serif; letter-spacing: .14em; text-transform: uppercase;
  font-size: 13px; color: #7dd3fc; margin-bottom: 16px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Mission */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.mission-copy p { font-size: 16.5px; color: var(--text); }
.mission-panel { background: linear-gradient(160deg, #eef6fb, #f8fbff); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.mission-panel h3 { margin-bottom: 8px; }

/* Service cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .2s ease, transform .2s ease; display: block; color: inherit; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); color: inherit; }
.card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px 26px 26px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--muted); margin-bottom: 0; font-size: 15px; }
.card-link { font-family: "League Spartan", sans-serif; font-weight: 600; font-size: 14px; color: var(--teal); margin-top: 14px; display: inline-block; }

/* Testimonial */
.testimonial { background: var(--navy); color: #e2e8f0; text-align: center; }
.testimonial h2 { color: #fff; }
.testimonial blockquote { max-width: 720px; margin: 0 auto; font-size: 20px; line-height: 1.6; color: #f1f5f9; font-style: italic; }
.testimonial .mark { font-size: 40px; color: var(--teal); font-family: Georgia, serif; line-height: 1; margin-bottom: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: start; }
.contact-info .info-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--text); font-size: 15.5px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 30px 26px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-strong); margin-bottom: 6px; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="file"],
.form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
  font: inherit; color: var(--text-strong); background: #fff; transition: border-color .15s ease; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,116,144,.12); }
.form-status { margin-top: 12px; font-size: 14.5px; }
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }

/* Solid-form page bits */
.lead { font-size: 21px; color: var(--text-strong); font-weight: 500; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.split-text .bullets { margin: 16px 0 0 0; }
.bullets li { position: relative; padding: 5px 0 5px 26px; color: var(--text); font-size: 15.5px; }
.bullets li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--teal); }
.result-list { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius); padding: 20px 24px; margin-top: 18px; }
.result-list h4 { color: #9a3412; margin-bottom: 8px; }
.result-list .bullets li::before { background: #ea580c; }
.turnaround-badge { display: inline-block; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
  font-family: "League Spartan", sans-serif; font-weight: 600; padding: 8px 16px; border-radius: 999px; margin-top: 6px; }
.deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.deliver-grid .card-image { aspect-ratio: 4/3; }
.engage-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 30px; }
.engage-panel .bullets li { padding-top: 8px; padding-bottom: 8px; }
.contact-card-light { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(120deg, #eef6fb, #f8fbff); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; }
.contact-card-light h3 { margin-bottom: 6px; }
.contact-card-light p { margin-bottom: 4px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--navy); color: #cbd5e1; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding: 56px 20px 40px; }
.footer-col p { font-size: 14.5px; color: #94a3b8; }
.footer-col a { color: #cbd5e1; font-size: 14.5px; display: inline-block; margin-bottom: 6px; }
.footer-col a:hover { color: #fff; }
.footer-col h4 { margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13.5px; color: #64748b; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
  border-radius: 999px; padding: 9px 16px; color: #fff; font: inherit; }
.newsletter-form input::placeholder { color: #94a3b8; }
.newsletter-form input:focus { outline: none; border-color: var(--teal); }

/* Cookie banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100; max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 40px rgba(15,23,42,.18);
  padding: 16px 20px; display: none; gap: 14px; align-items: center; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 13.5px; color: var(--muted); flex: 1; }
.cookie-banner .btn { flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .mission-grid, .two-col, .contact-grid, .deliver-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 30px; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); flex-direction: column; padding: 16px 20px 22px; gap: 4px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { margin: 10px 0 0 0; }
  .hero { padding: 76px 0 64px; }
  .section { padding: 44px 0; }
}
