:root{
  /* Brand-inspired palette (softened) */
  --teal-900:#0f4c57;
  --teal-700:#1b6b7a;
  --teal-200:#cfeef0;

  --cream:#fff7ef;
  --cream-2:#fff1e6;

  --peach:#FF7E33;   /* primary CTA */
  --peach-2:#E66B2A; /* hover */
  --gold:#FFB366;    /* accent (matches your logo orange light) */

  --ink:#1f2937;
  --muted:#5b6776;
  --line:rgba(15, 76, 87, .14);

  --radius:18px;
  --shadow:0 14px 36px rgba(31,41,55,.10);
  --shadow-soft:0 10px 24px rgba(31,41,55,.08);

  --container:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(27,107,122,.14), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(244,176,94,.16), transparent 55%),
    linear-gradient(180deg, var(--cream), #ffffff 55%);
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:"Quicksand", "Nunito", system-ui, sans-serif;
  letter-spacing:.2px;
  margin:0 0 10px;
}
p{margin:0 0 12px}
a{color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background:#fff; box-shadow:var(--shadow-soft);
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(15,76,87,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand-logo{
  width:46px; height:46px; object-fit:contain;
  border-radius:14px;
  background:rgba(255,255,255,.7);
  padding:6px;
  box-shadow:0 8px 18px rgba(31,41,55,.08);
}
.brand-text{display:flex; flex-direction:column}
.brand-name{font-weight:700}
.brand-tag{font-size:.92rem; color:var(--muted)}

.nav{display:flex; align-items:center; gap:10px;}
.nav-link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  color:var(--ink);
  transition:transform .12s ease, background .12s ease;
}
.nav-link:hover{background:rgba(27,107,122,.10)}
.nav-link.active{background:rgba(244,176,94,.18)}
.nav-cta{
  background:linear-gradient(180deg, rgba(255,138,107,.95), rgba(255,111,74,.95));
  color:#fff;
  box-shadow:0 10px 24px rgba(255,111,74,.22);
}
.nav-cta:hover{transform:translateY(-1px)}

.burger{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(15,76,87,.18);
  background:rgba(255,255,255,.8);
  border-radius:14px;
  box-shadow:0 8px 18px rgba(31,41,55,.06);
}
.burger span{
  display:block; height:2px; margin:6px 10px;
  background:rgba(31,41,55,.65);
  border-radius:999px;
}

/* Hero */
.hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:var(--hero-image);
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
  filter:saturate(1.05) contrast(1.02);
  z-index:0;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(255,247,239,.68), transparent 55%),
    radial-gradient(700px 500px at 80% 10%, rgba(255,241,230,.62), transparent 50%),
    linear-gradient(90deg, rgba(15,76,87,.35), rgba(15,76,87,.10));
  z-index:1;
}
.hero-inner{position:relative; z-index:2; padding:56px 0;}
.hero-card{
  width:min(560px, 100%);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,76,87,.14);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:22px 22px 18px;
}
.hero-card h1{
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  line-height:1.12;
}
.hero-card p{color:var(--muted); font-size:1.08rem}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.hero-badges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.badge{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(27,107,122,.10);
  border:1px solid rgba(27,107,122,.14);
  color:rgba(31,41,55,.85);
  font-size:.92rem;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  font-weight:800;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, var(--peach), var(--peach-2));
  box-shadow:0 12px 26px rgba(255,111,74,.22);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-ghost{
  background:rgba(255,255,255,.85);
  border-color:rgba(15,76,87,.18);
  color:var(--teal-900);
  box-shadow:0 10px 18px rgba(31,41,55,.06);
}
.btn-ghost:hover{transform:translateY(-1px)}
.btn.full{width:100%}

/* Sections */
.section{padding:64px 0}
.section.alt{
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(207,238,240,.55), transparent 55%),
    radial-gradient(700px 460px at 85% 15%, rgba(244,176,94,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,247,239,.55));
  border-top:1px solid rgba(15,76,87,.08);
  border-bottom:1px solid rgba(15,76,87,.08);
}
.section-head{margin-bottom:20px}
.section-head p{color:var(--muted)}

.grid{
  display:grid; gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
}

.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,76,87,.12);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow-soft);
}
.card h3{margin-bottom:6px}
.card p{color:var(--muted)}
.card.featured{
  border-color:rgba(255,111,74,.28);
  box-shadow:0 16px 40px rgba(255,111,74,.12);
  position:relative;
}
.pill{
  position:absolute; top:14px; right:14px;
  font-size:.8rem;
  background:rgba(244,176,94,.22);
  border:1px solid rgba(244,176,94,.35);
  padding:6px 10px;
  border-radius:999px;
}

.split{
  display:grid; gap:18px;
  grid-template-columns: 1.3fr .9fr;
  align-items:start;
}
.panel{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,76,87,.12);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.muted{color:var(--muted)}

.steps{padding-left:18px}
.checklist, .bullets{margin:10px 0 0; padding-left:0; list-style:none;}
.checklist li, .bullets li{
  margin:10px 0;
  padding-left:28px;
  position:relative;
  color:var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:20px; height:20px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  background:rgba(27,107,122,.12);
  color:var(--teal-900);
  font-weight:900;
}
.bullets li::before{
  content:"•";
  position:absolute; left:10px; top:-1px;
  color:rgba(255,111,74,.85);
  font-size:1.4rem;
}

/* Quotes */
.quote{
  margin:0;
  padding:16px;
  border-radius:22px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(15,76,87,.12);
  box-shadow:var(--shadow-soft);
}
.quote blockquote{margin:0; font-size:1.02rem}
.quote figcaption{margin-top:10px; color:var(--muted)}

/* Page hero */
.page-hero{padding:56px 0 24px;}
.page-hero .lead{color:var(--muted); font-size:1.08rem; max-width:70ch}

/* FAQ */
.faq details{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,76,87,.12);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow-soft);
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  font-family:"Quicksand","Nunito",system-ui,sans-serif;
}

/* CTA */
.section.cta{
  background:
    radial-gradient(800px 500px at 15% 10%, rgba(255,138,107,.22), transparent 55%),
    radial-gradient(800px 500px at 85% 15%, rgba(27,107,122,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,247,239,.7));
  border-top:1px solid rgba(15,76,87,.08);
}
.cta-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; flex-wrap:wrap;
}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

/* Contact mini cards */
.contact-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:12px; margin-top:10px;
}
.mini-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,76,87,.12);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow-soft);
}
.notice{
  margin-top:16px;
  padding:14px;
  border-radius:18px;
  background:rgba(244,176,94,.16);
  border:1px solid rgba(244,176,94,.28);
}

/* Footer */
.site-footer{
  padding:28px 0 100px;
  border-top:1px solid rgba(15,76,87,.12);
  background:rgba(255,255,255,.7);
}

.mini-card a {
  word-wrap: normal;
  overflow-wrap: normal;
  font-size: 0.85rem;
  white-space: nowrap;
}
.footer-inner{
  display:flex; gap:18px; justify-content:space-between;
  flex-wrap:wrap; align-items:flex-start;
}
.footer-brand img{width:54px}
.footer-cols{display:flex; gap:34px; flex-wrap:wrap}
.footer-cols h4{margin:0 0 8px}
.footer-cols a, .footer-cols span{
  display:block; margin:6px 0;
  text-decoration:none; color:var(--muted)
}
.footer-bottom{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid rgba(15,76,87,.10);
  color:var(--muted);
  font-size:.95rem;
}

/* Mobile nav */
@media (max-width: 860px){
  .burger{display:inline-block}
  .nav{
    position:absolute;
    right:20px; top:66px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    min-width:220px;
    padding:10px;
    border-radius:20px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(15,76,87,.14);
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .nav-link{padding:12px 14px}
  .split{grid-template-columns:1fr}
  .hero{min-height:520px}
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  transform: none;
  background: rgba(15, 76, 87, 0.9);
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 1001;
  box-shadow: 0 10px 24px rgba(31,41,55,.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: none;
}

.back-to-top:hover {
  background: var(--peach);
  bottom: 35px;
  box-shadow: 0 14px 30px rgba(31,41,55,.2);
  color: #fff;
}

.back-to-top.visible {
  display: block;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 30px;
    left: 15px;
  }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating-contact {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2000;
  animation: pulse 2s infinite;
}

.floating-contact a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  background: #FF7E33 !important; /* orange-bright */
  color: white !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  border: 1.5px solid white !important;
  transition: all 0.3s ease;
  white-space: nowrap !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
}

.floating-contact a:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
}

.floating-contact svg {
  width: 14px !important;
  height: 14px !important;
  fill: white !important;
  display: inline-block !important;
  margin: 0 !important;
}
