:root{
  --sky-top:#1e8fe0;
  --sky-bottom:#8fd3f4;
  --grass-top:#6fc13a;
  --grass-bottom:#2f8f3e;
  --navy:#12213a;
  --glass-bg:rgba(255,255,255,0.55);
  --glass-bg-strong:rgba(255,255,255,0.78);
  --glass-border:rgba(255,255,255,0.75);
  --accent-blue:#1f8fe6;
  --accent-blue-dark:#116bb5;
  --accent-green:#4bbf4a;
  --accent-green-dark:#2f9430;
  --radius-lg:26px;
  --radius-md:18px;
  --shadow-soft:0 12px 30px rgba(10,40,70,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--navy);
  background:
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 45%, var(--grass-top) 46%, var(--grass-bottom) 100%);
  background-attachment:fixed;
  position:relative;
  overflow-x:hidden;
}
h1,h2,h3,.brand-name{font-family:"Montserrat Alternates", "Montserrat", sans-serif;}
a{color:inherit;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 24px;}

/* ---------- bubbles ---------- */
.bubble-field{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}
.bubble{
  position:absolute;
  bottom:-80px;
  left:var(--left);
  width:var(--size);
  height:var(--size);
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 22%, rgba(255,255,255,0.05) 45%, rgba(180,230,255,0.15) 70%, rgba(255,255,255,0.35) 100%);
  border:1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 0 6px rgba(255,255,255,0.6), 0 0 8px rgba(255,255,255,0.25);
  animation: rise var(--dur) linear infinite;
  animation-delay: var(--delay);
  opacity:0.85;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  8%{ opacity:0.85; }
  100%{ transform:translateY(-115vh) translateX(20px); opacity:0; }
}

/* ---------- glass components ---------- */
.glass-panel, .glass-card{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.8);
}
.glass-card{ padding:28px 26px; border-radius:var(--radius-md); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-family:"Montserrat Alternates", sans-serif;
  font-weight:600;
  font-size:1rem;
  text-decoration:none;
  border:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.btn::after{
  content:"";
  position:absolute;
  top:4%;
  left:6%;
  right:6%;
  height:42%;
  border-radius:999px 999px 60% 60%;
  background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  pointer-events:none;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
  box-shadow:0 10px 22px rgba(20,110,190,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover{ box-shadow:0 14px 26px rgba(20,110,190,0.5), inset 0 1px 0 rgba(255,255,255,0.6); }

.btn-ghost{
  color:var(--navy);
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(255,255,255,0.8);
}

.btn-small{ padding:9px 18px; font-size:0.9rem; }
.btn-block{ width:100%; margin-top:8px; }

/* ---------- header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(20,80,150,0.28);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.35);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-logo{ width:40px; height:auto; filter:drop-shadow(0 4px 6px rgba(0,0,0,0.25)); }
.brand-name{
  color:#fff;
  font-weight:600;
  font-size:1.05rem;
  line-height:1.1;
  display:flex;
  flex-direction:column;
  text-shadow:0 2px 6px rgba(0,0,0,0.25);
}
.brand-name em{ font-style:normal; font-size:0.7rem; font-weight:500; opacity:0.85; letter-spacing:0.06em; text-transform:uppercase; }
.site-nav{ display:flex; align-items:center; gap:22px; }
.site-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:0.95rem;
  text-shadow:0 1px 4px rgba(0,0,0,0.25);
}
.site-nav a.btn{ color:#fff; text-shadow:none; }

/* ---------- hero ---------- */
.hero{ position:relative; z-index:1; padding:70px 0 40px; }
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:36px;
  align-items:center;
}
.hero-copy{ padding:42px 40px; }
.eyebrow{
  display:inline-block;
  font-weight:600;
  color:var(--accent-blue-dark);
  background:rgba(255,255,255,0.6);
  border-radius:999px;
  padding:6px 16px;
  font-size:0.82rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin:0 0 16px;
}
.hero h1{
  font-size:2.6rem;
  line-height:1.12;
  margin:0 0 18px;
  color:var(--navy);
}
.hero-sub{ font-size:1.08rem; line-height:1.55; margin:0 0 28px; color:#243b5c; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; }
.hero-art{ display:flex; justify-content:center; }
.hero-dolphin{
  width:100%;
  max-width:420px;
  filter:drop-shadow(0 20px 30px rgba(10,40,70,0.35));
  animation:bob 5s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform:translateY(0) rotate(-2deg); }
  50%{ transform:translateY(-14px) rotate(2deg); }
}

/* ---------- sections ---------- */
.section{ position:relative; z-index:1; padding:64px 0; }
.section-alt{ background:rgba(255,255,255,0.12); }
.section-title{ font-size:2rem; text-align:center; margin:0 0 10px; color:#0d3b17; }
.pricing .section-title, #pricing .section-title{ color:var(--navy); }
.section-title{ color:var(--navy); }
.section-sub{ text-align:center; max-width:620px; margin:0 auto 40px; color:#1f3a2b; font-size:1.05rem; }
#pricing .section-sub, #faq .section-sub, #apply .section-sub{ color:#25436a; }

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:22px;
}
.card-icon{ font-size:2rem; margin-bottom:10px; }
.glass-card h3{ margin:0 0 8px; font-size:1.15rem; }
.glass-card p{ margin:0; line-height:1.5; color:#243b5c; }

/* ---------- pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:26px;
  max-width:780px;
  margin:0 auto;
}
.pricing-card{ text-align:left; position:relative; }
.pricing-card h3{ font-size:1.3rem; margin-bottom:2px; }
.pricing-card .price{ font-size:2.4rem; font-weight:700; font-family:"Montserrat Alternates",sans-serif; margin:6px 0 0; color:var(--accent-blue-dark); }
.pricing-card .price-note{ margin:0 0 18px; color:#4a6280; font-size:0.9rem; }
.pricing-list{ list-style:none; padding:0; margin:0 0 22px; display:flex; flex-direction:column; gap:10px; }
.pricing-list li{ padding-left:26px; position:relative; color:#243b5c; line-height:1.4; }
.pricing-list li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--accent-green-dark);
  font-weight:700;
}
.pricing-card.featured{ border:2px solid rgba(31,143,230,0.55); box-shadow:0 16px 34px rgba(20,110,190,0.28), inset 0 1px 0 rgba(255,255,255,0.8); }
.badge{
  position:absolute; top:-14px; right:22px;
  background:linear-gradient(180deg, #ffd35c, #f5a623);
  color:#4a2f00;
  font-weight:700;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.04em;
  padding:6px 14px;
  border-radius:999px;
  box-shadow:0 6px 14px rgba(180,120,0,0.35), inset 0 1px 0 rgba(255,255,255,0.7);
  margin:0;
}
.pricing-footnote{ text-align:center; color:#3c5a80; font-size:0.85rem; max-width:560px; margin:34px auto 0; }

/* ---------- placeholder proof cards ---------- */
.placeholder-card{ text-align:center; border-style:dashed; border-width:2px; background:rgba(255,255,255,0.35); }
.placeholder-avatar{
  width:64px; height:64px; border-radius:50%;
  margin:0 auto 14px;
  background:repeating-linear-gradient(45deg, rgba(255,255,255,0.5) 0 8px, rgba(255,255,255,0.2) 8px 16px);
  border:2px dashed rgba(18,33,58,0.35);
}
.placeholder-text{ color:#4a6280; font-style:italic; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ padding:18px 24px; }
.faq-item summary{ cursor:pointer; font-weight:600; font-size:1.02rem; list-style:none; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; float:right; font-weight:700; color:var(--accent-blue-dark); }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ margin:14px 0 0; color:#243b5c; line-height:1.55; }

/* ---------- apply form ---------- */
.apply-wrap{ display:flex; justify-content:center; }
.apply-panel{ width:100%; max-width:560px; padding:40px; }
.apply-form{ display:flex; flex-direction:column; gap:16px; margin-top:10px; }
.form-row{ display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-weight:600; font-size:0.9rem; color:#1f3a5c; }
.form-row input{
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(18,33,58,0.25);
  background:rgba(255,255,255,0.75);
  font-family:inherit;
  font-size:1rem;
  color:var(--navy);
}
.form-row input:focus{ outline:2px solid var(--accent-blue); outline-offset:1px; }
.hp-field{ position:absolute; left:-9999px; top:-9999px; }
.form-status{ min-height:22px; text-align:center; font-weight:600; margin:0; }
.form-status.success{ color:#1c7a2e; }
.form-status.error{ color:#b3261e; }

/* ---------- footer ---------- */
.site-footer{
  position:relative; z-index:1;
  padding:36px 0 44px;
  color:#0d3b17;
}
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.footer-logo{ width:44px; }
.site-footer a{ text-decoration:underline; }

/* ---------- responsive ---------- */
@media (max-width:860px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero-ctas{ justify-content:center; }
  .hero-copy{ padding:32px 24px; }
  .site-nav{ gap:14px; }
  .site-nav a:not(.btn){ display:none; }
}
@media (max-width:520px){
  .hero h1{ font-size:2rem; }
}
