/* Little Sprouts Home Child Care — Modern, friendly UI (vanilla HTML/CSS) */
:root {
  --bg: #f7fafc;
  --bg-2: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-2: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 23, 42, 0.10);
  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.70);
  --muted-2: rgba(15, 23, 42, 0.55);

  --shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
  --shadow-soft: 0 10px 26px rgba(2, 6, 23, 0.08);

  /* Brand (soft, modern, not "rookie") */
  --brand: #22c55e;       /* fresh green */
  --brand-2: #3b82f6;     /* calm blue */
  --brand-3: #f59e0b;     /* warm amber */
  --brand-4: #fb7185;     /* soft rose */

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --nav-h: 76px;

  --focus: 0 0 0 3px rgba(59,130,246,0.28);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(34,197,94,0.16), transparent 60%),
    radial-gradient(1200px 800px at 92% 10%, rgba(59,130,246,0.14), transparent 55%),
    radial-gradient(1200px 900px at 60% 110%, rgba(245,158,11,0.10), transparent 55%),
    radial-gradient(900px 700px at 20% 70%, rgba(251,113,133,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 52%, #f0f5ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.55;
  overflow-x: hidden;
}
/* Apple-ish modern backdrop: soft blurred color fields (subtle, premium) */
body::before,
body::after{
  content:"";
  position: fixed;
  inset: -30vh -30vw;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.85;
  transform: translateZ(0);
}
body::before{
  background:
    radial-gradient(45% 40% at 20% 15%, rgba(34,197,94,0.22), transparent 62%),
    radial-gradient(40% 35% at 85% 12%, rgba(59,130,246,0.20), transparent 60%),
    radial-gradient(42% 36% at 60% 95%, rgba(245,158,11,0.16), transparent 62%);
}
body::after{
  background:
    radial-gradient(40% 36% at 15% 70%, rgba(251,113,133,0.14), transparent 60%),
    radial-gradient(38% 34% at 75% 55%, rgba(99,102,241,0.10), transparent 62%);
  opacity: 0.55;
  filter: blur(80px);
}

/* Section backplates: very subtle colored "shadows" behind content as you scroll */
.section{
  position: relative;
}
.section::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(980px, calc(100% - 40px));
  height: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(70% 50% at 15% 10%, rgba(59,130,246,0.08), transparent 60%),
    radial-gradient(70% 50% at 85% 35%, rgba(34,197,94,0.08), transparent 60%),
    radial-gradient(70% 55% at 60% 85%, rgba(245,158,11,0.06), transparent 62%);
  border-radius: 40px;
  z-index: -1;
}
.section:nth-of-type(even)::before{
  background:
    radial-gradient(70% 50% at 20% 20%, rgba(251,113,133,0.07), transparent 60%),
    radial-gradient(70% 50% at 82% 25%, rgba(59,130,246,0.07), transparent 62%),
    radial-gradient(70% 55% at 60% 88%, rgba(34,197,94,0.06), transparent 64%);
}

/* Cards get a hint of colored ambient shadow, still subtle */
.card{
  box-shadow:
    0 10px 26px rgba(2,6,23,0.08),
    0 22px 70px rgba(59,130,246,0.06),
    0 22px 70px rgba(34,197,94,0.05);
}
.hero-media{
  box-shadow:
    0 18px 55px rgba(2,6,23,0.10),
    0 26px 90px rgba(59,130,246,0.08),
    0 26px 90px rgba(34,197,94,0.06);
}


a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; outline: none; box-shadow: var(--focus); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(2,6,23,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(15,23,42,0.72);
  backdrop-filter: blur(10px);
}
.badge .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 3px rgba(52,211,153,0.15);
}

.h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.kicker {
  color: rgba(15,23,42,0.64);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
}
.section {
  padding: 88px 0;
}
.section.compact {
  padding: 60px 0;
}
.hr {
  height: 1px;
  background: rgba(2,6,23,0.06);
  border: 0;
  margin: 0;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.card.pad { padding: 18px; }
.card.pad-lg { padding: 22px; }
.card.soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  box-shadow: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  color: rgba(15,23,42,0.92);
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.20); }
.btn:active { transform: translateY(0px); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }

.btn.primary {
  background: linear-gradient(135deg, rgba(34,197,94,0.95), rgba(59,130,246,0.92));
  border-color: rgba(255,255,255,0.18);
  color: #052012;
}
.btn.primary:hover { filter: saturate(1.05); }
.btn.secondary {
  background: linear-gradient(135deg, rgba(245,158,11,0.92), rgba(251,113,133,0.90));
  border-color: rgba(255,255,255,0.18);
  color: #0b1220;
}
.btn.ghost {
  background: transparent;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(60% 80% at 30% 20%, rgba(255,255,255,0.75), transparent 55%),
    linear-gradient(135deg, rgba(52,211,153,1), rgba(96,165,250,1));
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 12px 28px rgba(52,211,153,0.12);
  position: relative;
  overflow: hidden;
}
.logo:after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 40%);
  transform: rotate(18deg);
}
.brand-name {
  display: grid;
  line-height: 1.05;
}
.brand-name strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.brand-name span {
  font-size: 12px;
  color: var(--muted-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links a {
  color: rgba(15,23,42,0.78);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.70);
}
.nav-links a.active {
  background: rgba(2,6,23,0.06);
  border: 1px solid rgba(15,23,42,0.10);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-btn {
  display: none;
}

.mobile-drawer {
  display: none;
}

.hero {
  padding: 34px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.06);
  position: relative;
  min-height: 420px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.point {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.06);
}
.point strong {
  display: block;
  font-size: 13px;
}
.point span {
  display: block;
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 2px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 18px;
}
.feature .top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: rgba(15,23,42,0.74);
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}
.list li { margin: 8px 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  padding: 16px;
}
.stat .num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-size: 12px;
  color: var(--muted-2);
}

.quote {
  padding: 22px;
  display: grid;
  gap: 10px;
}
.quote .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.stars {
  letter-spacing: 1px;
  color: rgba(251,191,36,0.92);
}

.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.06);
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  font-size: 12px;
  color: rgba(15,23,42,0.64);
  font-weight: 650;
}
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { box-shadow: var(--focus); border-color: rgba(96,165,250,0.35); }

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.22);
  color: rgba(255,255,255,0.86);
}
.notice strong { color: #fff; }

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.footer a {
  color: rgba(15,23,42,0.74);
}
.footer a:hover { text-decoration: underline; }
.small {
  font-size: 12px;
  color: var(--muted-2);
}

.breadcrumbs {
  font-size: 12px;
  color: var(--muted-2);
  margin: 16px 0 0;
}
.breadcrumbs a { color: rgba(15,23,42,0.74); }

.page-hero {
  padding: 26px 0 0;
}
.page-title {
  margin-top: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.g-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .25s ease;
}
.g-item:hover img {
  transform: scale(1.03);
}
.g-item .cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.10);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: rgba(15,23,42,0.82);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,0.70);
  z-index: 100;
  padding: 22px;
}
.modal.open { display: grid; }
.modal .panel {
  width: min(980px, 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.modal .panel img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}
.modal .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.modal .bar .title {
  font-weight: 700;
  color: rgba(15,23,42,0.88);
  font-size: 14px;
}
.modal .bar .actions {
  display: flex; gap: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
}
.table th, .table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  text-align: left;
}
.table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(15,23,42,0.64);
  background: rgba(255,255,255,0.05);
}
.table td {
  color: rgba(15,23,42,0.78);
}
.table tr:last-child td { border-bottom: 0; }

.callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(800px 280px at 10% 10%, rgba(52,211,153,0.14), transparent 60%),
    radial-gradient(800px 280px at 90% 20%, rgba(96,165,250,0.16), transparent 60%),
    rgba(255,255,255,0.05);
}
.callout .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-drawer {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(15,23,42,0.08);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    z-index: 60;
  }
  .mobile-drawer.open { display: block; }
  .mobile-drawer a {
    display: block;
    padding: 12px 18px;
    color: rgba(15,23,42,0.82);
    font-weight: 650;
  }
  .mobile-drawer a:hover { background: rgba(255,255,255,0.07); }
  .hero-points { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}


/* Premium visual upgrade */
body{
  background:
    radial-gradient(900px 620px at 10% 8%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(900px 620px at 92% 10%, rgba(59,130,246,0.16), transparent 58%),
    radial-gradient(820px 680px at 58% 45%, rgba(251,113,133,0.10), transparent 62%),
    radial-gradient(900px 700px at 50% 105%, rgba(245,158,11,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 38%, #f4f8ff 100%);
}

.nav{
  box-shadow: 0 10px 35px rgba(15,23,42,0.06);
}
.logo{
  box-shadow: 0 14px 32px rgba(34,197,94,0.20), 0 10px 28px rgba(59,130,246,0.14);
}

.hero{
  padding: 52px 0 34px;
}
.hero-grid{
  gap: 34px;
}
.hero-grid > .card{
  position: relative;
  overflow: hidden;
}
.hero-grid > .card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(420px 220px at 12% 0%, rgba(34,197,94,0.13), transparent 62%),
    radial-gradient(420px 220px at 95% 10%, rgba(59,130,246,0.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
  z-index:-1;
}
.h1{
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.045em;
}
.h2{
  letter-spacing: -0.035em;
}
.p{
  font-size: 16.5px;
}

.hero-slider{
  min-height: 540px;
  isolation: isolate;
}
.slider-track,
.slide{
  position:absolute;
  inset:0;
}
.slide{
  opacity:0;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 1.2s ease;
}
.slide.active{
  opacity:1;
  transform: scale(1);
}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.slider-gradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.02), rgba(15,23,42,0.22)),
    radial-gradient(520px 280px at 20% 18%, rgba(255,255,255,0.22), transparent 60%);
  z-index:2;
  pointer-events:none;
}
.slider-controls{
  position:absolute;
  right:16px;
  bottom:16px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-radius:999px;
  background:rgba(255,255,255,0.74);
  border:1px solid rgba(255,255,255,0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 35px rgba(2,6,23,0.13);
}
.slider-btn{
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:rgba(15,23,42,0.08);
  color:rgba(15,23,42,0.86);
  font-weight:900;
  cursor:pointer;
}
.slider-btn:hover{
  background:rgba(15,23,42,0.13);
}
.slider-dots{
  display:flex;
  align-items:center;
  gap:7px;
}
.slider-dot{
  width:8px;
  height:8px;
  border:0;
  border-radius:999px;
  background:rgba(15,23,42,0.24);
  cursor:pointer;
  transition: width .2s ease, background .2s ease;
}
.slider-dot.active{
  width:24px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
}
.hero-float-card{
  position:absolute;
  z-index:4;
  left:18px;
  top:18px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(2,6,23,0.13);
}
.hero-float-card strong{
  display:block;
  color:rgba(15,23,42,0.92);
  font-size:13px;
}
.hero-float-card span{
  display:block;
  color:rgba(15,23,42,0.58);
  font-size:12px;
}
.mini-avatar-stack{
  display:flex;
}
.mini-avatar-stack span{
  width:24px;
  height:24px;
  border-radius:999px;
  border:2px solid white;
  margin-left:-7px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
}
.mini-avatar-stack span:first-child{ margin-left:0; background:linear-gradient(135deg,#fbbf24,#fb7185);}
.mini-avatar-stack span:nth-child(2){ background:linear-gradient(135deg,#60a5fa,#a78bfa);}
.mini-avatar-stack span:nth-child(3){ background:linear-gradient(135deg,#34d399,#22c55e);}

.premium-strip-section{
  padding-top: 34px;
}
.premium-strip{
  display:grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items:center;
  gap:18px;
  padding:20px;
  border-radius:28px;
  border:1px solid rgba(15,23,42,0.09);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.64)),
    radial-gradient(520px 220px at 15% 20%, rgba(34,197,94,0.14), transparent 64%),
    radial-gradient(520px 220px at 85% 20%, rgba(59,130,246,0.12), transparent 64%);
  box-shadow:
    0 18px 55px rgba(2,6,23,0.08),
    0 26px 80px rgba(59,130,246,0.08);
  backdrop-filter: blur(18px);
}
.availability-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.mini-stat{
  padding:13px 12px;
  border-radius:18px;
  background:rgba(255,255,255,0.68);
  border:1px solid rgba(15,23,42,0.08);
  text-align:center;
}
.mini-stat strong{
  display:block;
  font-size:22px;
  line-height:1;
  letter-spacing:-0.03em;
  color:rgba(15,23,42,0.92);
}
.mini-stat span{
  display:block;
  margin-top:5px;
  font-size:11px;
  color:rgba(15,23,42,0.56);
}

.premium-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:16px;
}
.premium-card{
  position:relative;
  overflow:hidden;
  min-height:210px;
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(15,23,42,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.72));
  box-shadow:
    0 18px 50px rgba(2,6,23,0.08),
    0 24px 75px rgba(34,197,94,0.06);
}
.premium-card::before{
  content:"";
  position:absolute;
  inset:auto -30% -45% -30%;
  height:70%;
  background:
    radial-gradient(45% 70% at 25% 50%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(45% 70% at 75% 50%, rgba(59,130,246,0.16), transparent 62%);
  filter: blur(20px);
  pointer-events:none;
}
.premium-card:nth-child(2)::before{
  background:
    radial-gradient(45% 70% at 25% 50%, rgba(245,158,11,0.17), transparent 60%),
    radial-gradient(45% 70% at 75% 50%, rgba(251,113,133,0.14), transparent 62%);
}
.premium-card:nth-child(3)::before{
  background:
    radial-gradient(45% 70% at 25% 50%, rgba(59,130,246,0.15), transparent 60%),
    radial-gradient(45% 70% at 75% 50%, rgba(167,139,250,0.14), transparent 62%);
}
.premium-card h3{
  position:relative;
  margin:16px 0 8px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height:1.05;
  letter-spacing:-0.035em;
  color:rgba(15,23,42,0.92);
}
.premium-card p{
  position:relative;
  color:rgba(15,23,42,0.64);
  margin:0;
}
.premium-card .pill{
  position:relative;
  display:inline-flex;
  background:rgba(255,255,255,0.66);
}
.premium-card-large{
  min-height:260px;
}

.card,
.premium-strip,
.premium-card,
.hero-media{
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover,
.premium-card:hover{
  transform: translateY(-2px);
}

.feature{
  min-height: 210px;
}
.feature,
.point,
.stat,
.faq details{
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68));
}
.point:hover,
.stat:hover{
  transform: translateY(-2px);
  transition: transform .2s ease;
}

@media (max-width: 980px){
  .premium-strip{
    grid-template-columns: 1fr;
  }
  .premium-grid{
    grid-template-columns:1fr;
  }
  .hero-slider{
    min-height: 460px;
  }
}
@media (max-width: 720px){
  .availability-cards{
    grid-template-columns:1fr;
  }
  .slider-controls{
    right:12px;
    bottom:12px;
  }
  .hero-float-card{
    left:12px;
    top:12px;
  }
}



/* === Polished contrast + less plain design pass === */
/* Remove accidental white text on light backgrounds and make all content readable */
body,
.h1, .h2, .h3,
.card, .premium-card, .premium-strip,
.point, .stat, .feature, .callout,
.faq details, .table td, .table th,
label, input, select, textarea {
  color: rgba(15, 23, 42, 0.92);
}

.p,
.list,
.faq details p,
.premium-card p,
.small,
.brand-name span,
.stat .lbl,
.point span,
.mini-stat span {
  color: rgba(15, 23, 42, 0.64) !important;
}

.kicker {
  color: rgba(15, 23, 42, 0.62) !important;
}

.nav-links a,
.mobile-drawer a,
.footer a,
.breadcrumbs,
.breadcrumbs a,
.pill {
  color: rgba(15, 23, 42, 0.72) !important;
}

.badge,
.notice {
  color: rgba(15, 23, 42, 0.74) !important;
}

.badge strong,
.notice strong,
.card strong,
.point strong,
.stat .num,
.mini-stat strong,
.hero-float-card strong {
  color: rgba(15, 23, 42, 0.94) !important;
}

.btn {
  color: rgba(15, 23, 42, 0.92) !important;
}

.btn.primary,
.btn.secondary {
  color: #07131f !important;
}

.stars {
  color: #d97706 !important;
}

input, select, textarea {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.12);
}
input::placeholder,
textarea::placeholder {
  color: rgba(15, 23, 42, 0.42);
}

/* Make sections feel designed, not plain blocks */
body {
  background:
    radial-gradient(1000px 680px at 8% 6%, rgba(34,197,94,0.20), transparent 62%),
    radial-gradient(980px 660px at 92% 8%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(860px 700px at 55% 42%, rgba(251,113,133,0.11), transparent 64%),
    radial-gradient(900px 700px at 50% 105%, rgba(245,158,11,0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 38%, #f3f7ff 100%) !important;
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46px;
  width: min(1040px, calc(100% - 32px));
  height: calc(100% - 90px);
  transform: translateX(-50%);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30)),
    radial-gradient(680px 280px at 15% 20%, rgba(59,130,246,0.07), transparent 62%),
    radial-gradient(680px 280px at 85% 35%, rgba(34,197,94,0.07), transparent 62%),
    radial-gradient(680px 320px at 50% 90%, rgba(245,158,11,0.05), transparent 65%);
  border: 1px solid rgba(15,23,42,0.045);
  z-index: -2;
  pointer-events: none;
}

.section:nth-of-type(even)::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0.28)),
    radial-gradient(680px 280px at 15% 25%, rgba(251,113,133,0.07), transparent 62%),
    radial-gradient(680px 280px at 85% 28%, rgba(59,130,246,0.07), transparent 62%),
    radial-gradient(680px 320px at 55% 90%, rgba(34,197,94,0.055), transparent 65%);
}

/* More premium cards with a clean white center and colored ambient glow */
.card,
.feature,
.point,
.stat,
.faq details,
.callout,
.premium-card,
.premium-strip {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78)) !important;
  border: 1px solid rgba(15,23,42,0.09) !important;
  box-shadow:
    0 14px 35px rgba(15,23,42,0.07),
    0 28px 80px rgba(59,130,246,0.055),
    0 28px 80px rgba(34,197,94,0.045) !important;
}

.card.soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62)) !important;
}

/* hero copy card looks more intentional */
.hero-grid > .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78)),
    radial-gradient(420px 220px at 12% 0%, rgba(34,197,94,0.14), transparent 62%),
    radial-gradient(420px 220px at 96% 8%, rgba(59,130,246,0.12), transparent 62%) !important;
}

/* Better visual hierarchy */
.h1 {
  color: #102033 !important;
  text-wrap: balance;
}
.h2 {
  color: #102033 !important;
  text-wrap: balance;
}
.p {
  max-width: 68ch;
}

/* Cool but simple hover / interaction */
.card:hover,
.premium-card:hover,
.point:hover,
.stat:hover,
.faq details:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(15,23,42,0.09),
    0 30px 90px rgba(59,130,246,0.08),
    0 30px 90px rgba(34,197,94,0.06) !important;
}

/* Slider polish and readable overlay */
.slider-gradient {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.00), rgba(15,23,42,0.26)),
    radial-gradient(560px 280px at 25% 16%, rgba(255,255,255,0.20), transparent 60%) !important;
}
.hero-media .chip {
  background: rgba(255,255,255,0.82) !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
  color: rgba(15,23,42,0.72) !important;
}
.hero-float-card {
  background: rgba(255,255,255,0.84) !important;
  color: rgba(15,23,42,0.92) !important;
}

/* Better buttons: still simple, more app-like */
.btn {
  background: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(15,23,42,0.10) !important;
  box-shadow: 0 10px 24px rgba(15,23,42,0.055);
}
.btn:hover {
  background: rgba(255,255,255,0.96) !important;
  border-color: rgba(15,23,42,0.16) !important;
}
.btn.primary {
  background: linear-gradient(135deg, #86efac, #93c5fd) !important;
  box-shadow: 0 14px 32px rgba(59,130,246,0.16), 0 12px 30px rgba(34,197,94,0.14) !important;
}
.btn.secondary {
  background: linear-gradient(135deg, #fde68a, #fda4af) !important;
  box-shadow: 0 14px 32px rgba(245,158,11,0.13), 0 12px 30px rgba(251,113,133,0.12) !important;
}
.btn.ghost {
  background: rgba(255,255,255,0.50) !important;
}

/* Give feature cards a small "designed" accent */
.feature,
.premium-card {
  position: relative;
}
.feature::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 40%),
    linear-gradient(135deg, rgba(134,239,172,0.70), rgba(147,197,253,0.70));
  opacity: 0.55;
  pointer-events: none;
}
.feature:nth-child(2)::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 40%),
    linear-gradient(135deg, rgba(253,230,138,0.75), rgba(253,164,175,0.70));
}
.feature:nth-child(3)::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 40%),
    linear-gradient(135deg, rgba(191,219,254,0.75), rgba(221,214,254,0.70));
}

/* Coming soon portal */
.coming-soon-wrap {
  min-height: 520px;
  display: grid;
  place-items: center;
}
.coming-soon-card {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  width: 100%;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.76)),
    radial-gradient(620px 320px at 8% 8%, rgba(34,197,94,0.17), transparent 62%),
    radial-gradient(620px 320px at 92% 20%, rgba(59,130,246,0.15), transparent 64%),
    radial-gradient(620px 320px at 50% 100%, rgba(245,158,11,0.10), transparent 66%);
  border: 1px solid rgba(15,23,42,0.09);
  box-shadow:
    0 22px 60px rgba(15,23,42,0.09),
    0 38px 110px rgba(59,130,246,0.09);
}
.coming-soon-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -62px;
  top: -72px;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(134,239,172,0.62), rgba(147,197,253,0.58));
  transform: rotate(18deg);
  filter: blur(1px);
}
.coming-soon-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -54px;
  bottom: -62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(253,230,138,0.58), rgba(253,164,175,0.52));
}
.coming-soon-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  text-align: center;
}
.soon-badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15,23,42,0.09);
  color: rgba(15,23,42,0.70);
  font-size: 13px;
  font-weight: 800;
}
.soon-icon {
  width: 72px;
  height: 72px;
  justify-self: center;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #86efac, #93c5fd);
  box-shadow: 0 18px 45px rgba(59,130,246,0.18), 0 14px 40px rgba(34,197,94,0.14);
}
.soon-icon svg {
  width: 34px;
  height: 34px;
}
.soon-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #102033;
}
.soon-subtitle {
  justify-self: center;
  max-width: 620px;
  margin: 0;
  color: rgba(15,23,42,0.66);
  font-size: 17px;
}
.soon-features {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.soon-feature {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.08);
  color: rgba(15,23,42,0.70);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .soon-features {
    grid-template-columns: 1fr 1fr;
  }
  .section::after {
    display: none;
  }
}



/* === Kid Adventures final accurate design pass === */
:root {
  --ka-ink: #132033;
  --ka-muted: rgba(19, 32, 51, 0.66);
  --ka-sage: #7fd7a3;
  --ka-sky: #8bc9ee;
  --ka-cream: #fff8ec;
  --ka-peach: #ffd6b5;
  --ka-lilac: #d9c9ff;
}

body {
  color: var(--ka-ink) !important;
  background:
    radial-gradient(900px 600px at 7% 8%, rgba(127,215,163,.28), transparent 63%),
    radial-gradient(900px 620px at 93% 8%, rgba(139,201,238,.26), transparent 60%),
    radial-gradient(800px 560px at 55% 46%, rgba(255,214,181,.18), transparent 63%),
    linear-gradient(180deg, #fffdf8 0%, #f8fbff 42%, #f6f4ff 100%) !important;
}

.brand-name strong {
  color: var(--ka-ink) !important;
  font-size: 14px !important;
  line-height: 1.08 !important;
}
.brand-name span {
  color: rgba(19,32,51,.58) !important;
  max-width: 260px;
}

.nav {
  background: rgba(255,255,255,.78) !important;
  border-bottom: 1px solid rgba(19,32,51,.08) !important;
}

.kid-hero {
  padding: 48px 0 34px !important;
}
.hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
  align-items: stretch !important;
}
.hero-copy-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.80)),
    radial-gradient(560px 240px at 12% 3%, rgba(127,215,163,.24), transparent 62%),
    radial-gradient(520px 230px at 98% 8%, rgba(139,201,238,.20), transparent 62%) !important;
}
.kid-hero-slider {
  height: clamp(430px, 52vw, 560px) !important;
  min-height: 0 !important;
  max-height: 580px !important;
  border-radius: 34px !important;
}
.kid-hero-slider .slide img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.hero-media .chip {
  left: 18px !important;
  bottom: 18px !important;
  max-width: calc(100% - 150px);
}
.slider-controls {
  bottom: 18px !important;
  right: 18px !important;
}

.h1 {
  font-size: clamp(34px, 4.4vw, 60px) !important;
  line-height: 1.02 !important;
  color: var(--ka-ink) !important;
}
.h2 {
  color: var(--ka-ink) !important;
}
.p, .list, .small {
  color: var(--ka-muted) !important;
}
.badge, .pill, .notice {
  color: rgba(19,32,51,.72) !important;
}
.badge strong, strong {
  color: var(--ka-ink) !important;
}

.card, .premium-strip, .premium-card, .feature, .point, .stat, .faq details, .callout {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.76)) !important;
  border: 1px solid rgba(19,32,51,.09) !important;
  box-shadow:
    0 16px 38px rgba(19,32,51,.07),
    0 30px 90px rgba(139,201,238,.10),
    0 30px 90px rgba(127,215,163,.08) !important;
}

.btn.primary {
  background: linear-gradient(135deg, #95e5b1, #91cdf2) !important;
  color: var(--ka-ink) !important;
}
.btn.secondary {
  background: linear-gradient(135deg, #ffe08f, #ffb8be) !important;
  color: var(--ka-ink) !important;
}

/* Modern home page feature accents */
.premium-strip {
  border-radius: 32px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(560px 260px at 12% 20%, rgba(127,215,163,.22), transparent 64%),
    radial-gradient(520px 260px at 92% 40%, rgba(139,201,238,.20), transparent 64%) !important;
}

.premium-grid {
  grid-template-columns: 1.2fr .9fr .9fr !important;
}

.premium-card {
  border-radius: 30px !important;
  min-height: 235px !important;
}

.table th {
  color: rgba(19,32,51,.66) !important;
}
.table td {
  color: rgba(19,32,51,.78) !important;
}

/* Gallery: no tall weird photos; clean premium cards */
.gallery-masonry,
.gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.g-item {
  height: 280px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  box-shadow:
    0 15px 35px rgba(19,32,51,.08),
    0 30px 80px rgba(139,201,238,.08) !important;
}
.g-item img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.gallery-card-2, .gallery-card-6 {
  grid-column: span 2;
}
.gallery-card-2 {
  height: 340px !important;
}
.gallery-card-4, .gallery-card-8 {
  height: 340px !important;
}
.g-item .cap {
  background: rgba(255,255,255,.82) !important;
  color: rgba(19,32,51,.82) !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  box-shadow: 0 12px 30px rgba(19,32,51,.08);
}

/* Forms and text readability */
input, select, textarea {
  color: var(--ka-ink) !important;
  background: rgba(255,255,255,.88) !important;
}
input::placeholder, textarea::placeholder {
  color: rgba(19,32,51,.42) !important;
}

/* Footer/contact readability */
.footer {
  background: rgba(255,255,255,.62) !important;
}
.footer a, .nav-links a {
  color: rgba(19,32,51,.76) !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-copy-card {
    min-height: auto;
  }
  .kid-hero-slider {
    height: 430px !important;
  }
  .gallery-masonry,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .gallery-card-2, .gallery-card-6 {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .brand-name span {
    display: none;
  }
  .kid-hero-slider {
    height: 340px !important;
  }
  .hero-media .chip {
    max-width: calc(100% - 24px);
    right: 12px;
  }
  .slider-controls {
    transform: scale(.92);
    transform-origin: right bottom;
  }
  .gallery-masonry,
  .gallery {
    grid-template-columns: 1fr !important;
  }
  .g-item, .gallery-card-2, .gallery-card-4, .gallery-card-6, .gallery-card-8 {
    height: 260px !important;
    grid-column: auto !important;
  }
}


/* === Final polish: logo + balanced hero === */
.logo-img {
  display: block !important;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.logo.logo-img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
}
.footer-logo-img {
  width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
}

.kid-hero {
  padding-top: 42px !important;
}
.hero-grid {
  align-items: start !important;
  gap: 28px !important;
}
.hero-copy-card {
  min-height: auto !important;
  padding: 24px !important;
}
.hero-copy-card .h1 {
  font-size: clamp(28px, 3.8vw, 52px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  max-width: 11ch;
  margin: 16px 0 14px !important;
}
.hero-copy-card .p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  max-width: 56ch !important;
  margin-bottom: 16px !important;
}
.hero-actions {
  gap: 10px !important;
  margin-top: 6px !important;
  margin-bottom: 14px !important;
}
.hero-points {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 0 !important;
}
.hero-points .point {
  padding: 12px 14px !important;
  min-height: 0 !important;
  border-radius: 18px !important;
}
.hero-points .point strong {
  font-size: 15px !important;
  line-height: 1.2 !important;
}
.hero-points .point span {
  font-size: 12.5px !important;
  line-height: 1.4 !important;
  margin-top: 4px !important;
}
.kid-hero-slider {
  height: 560px !important;
}
.brand-name strong {
  font-size: 13px !important;
}
.brand-name span {
  font-size: 11.5px !important;
  max-width: 250px !important;
}
@media (max-width: 980px) {
  .hero-copy-card .h1 { max-width: none; }
  .kid-hero-slider { height: 420px !important; }
}
@media (max-width: 720px) {
  .hero-copy-card { padding: 18px !important; }
  .hero-points { grid-template-columns: 1fr !important; }
  .logo.logo-img { width: 40px !important; height: 40px !important; }
}


/* === Production pass: balanced hero, first slider image, working forms === */
.hero-grid {
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr) !important;
  align-items: center !important;
}

.hero-copy-card {
  min-height: auto !important;
  padding: 22px !important;
  align-self: center !important;
}

.hero-copy-card .badge {
  padding: 7px 12px !important;
}

.hero-copy-card .h1 {
  font-size: clamp(30px, 3.15vw, 46px) !important;
  line-height: 1.03 !important;
  max-width: 13ch !important;
  margin: 14px 0 12px !important;
}

.hero-copy-card .p {
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  margin-bottom: 14px !important;
  max-width: 52ch !important;
}

.hero-actions {
  margin: 0 0 12px !important;
}

.hero-actions .btn {
  padding: 11px 14px !important;
}

.hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.hero-points .point {
  padding: 10px 12px !important;
}

.hero-points .point strong {
  font-size: 13.5px !important;
}

.hero-points .point span {
  font-size: 11.5px !important;
}

.kid-hero-slider {
  height: 520px !important;
  max-height: 520px !important;
}

.kid-hero-slider .slide:first-child img {
  object-position: center 42% !important;
}

/* Tuition quote style */
.table td:last-child {
  font-weight: 800;
  color: rgba(19, 32, 51, 0.86) !important;
}

/* Real form polish */
form[action="send-form.php"] .field {
  position: relative;
}
form[action="send-form.php"] button[type="submit"] {
  min-width: 160px;
}

/* Gallery addition */
.gallery-card-10 {
  grid-column: span 2;
  height: 340px !important;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-copy-card .h1 {
    max-width: none !important;
  }
  .kid-hero-slider {
    height: 430px !important;
    max-height: 430px !important;
  }
}

@media (max-width: 720px) {
  .kid-hero-slider {
    height: 340px !important;
    max-height: 340px !important;
  }
  .gallery-card-10 {
    grid-column: auto;
    height: 260px !important;
  }
}


/* Fix: keep philosophy/quote cards cleanly stacked */
.quote {
  overflow: hidden;
}
.quote + .quote {
  margin-top: 0;
}
.quote .who {
  flex-wrap: wrap;
}


/* === Cheerful childcare polish: brighter, warmer, more playful === */
:root {
  --ka-mint: #8df0bd;
  --ka-blue: #8fd7ff;
  --ka-yellow: #ffe58a;
  --ka-coral: #ffb0a0;
  --ka-pink: #ffc7df;
  --ka-violet: #d8c2ff;
}

html {
  background: #fff8ee;
}

body {
  background:
    linear-gradient(115deg, rgba(255,229,138,0.42) 0%, rgba(255,229,138,0) 26%),
    linear-gradient(245deg, rgba(143,215,255,0.42) 0%, rgba(143,215,255,0) 30%),
    linear-gradient(20deg, rgba(141,240,189,0.35) 0%, rgba(141,240,189,0) 34%),
    linear-gradient(155deg, rgba(255,199,223,0.30) 0%, rgba(255,199,223,0) 38%),
    linear-gradient(180deg, #fffdf7 0%, #f6fcff 42%, #fff8fb 72%, #f6f2ff 100%) !important;
}

body::before {
  inset: 0 !important;
  filter: none !important;
  opacity: 0.38 !important;
  background:
    repeating-linear-gradient(45deg, rgba(19,32,51,0.025) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(135deg, rgba(255,176,160,0.15) 0 8px, transparent 8px 64px),
    repeating-linear-gradient(90deg, rgba(141,240,189,0.12) 0 10px, transparent 10px 78px) !important;
}

body::after {
  inset: 0 !important;
  filter: none !important;
  opacity: 0.46 !important;
  background:
    linear-gradient(100deg, transparent 0 12%, rgba(255,229,138,0.16) 12% 18%, transparent 18% 44%, rgba(143,215,255,0.14) 44% 50%, transparent 50%),
    linear-gradient(164deg, transparent 0 24%, rgba(255,199,223,0.15) 24% 30%, transparent 30% 66%, rgba(141,240,189,0.13) 66% 72%, transparent 72%) !important;
}

.nav {
  background: rgba(255,255,255,0.84) !important;
  box-shadow: 0 12px 34px rgba(19,32,51,0.08), inset 0 -1px rgba(255,255,255,0.7) !important;
}

.brand-name strong {
  color: #10233a !important;
}

.section::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.66), rgba(255,255,255,0.30)),
    linear-gradient(115deg, rgba(255,229,138,0.13), transparent 34%),
    linear-gradient(245deg, rgba(143,215,255,0.14), transparent 36%),
    linear-gradient(20deg, rgba(141,240,189,0.11), transparent 40%) !important;
  border-color: rgba(19,32,51,0.06) !important;
}

.hero-copy-card,
.coming-soon-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.78)),
    linear-gradient(125deg, rgba(255,229,138,0.28), transparent 36%),
    linear-gradient(240deg, rgba(143,215,255,0.26), transparent 38%),
    linear-gradient(20deg, rgba(255,199,223,0.20), transparent 42%) !important;
}

.card,
.premium-strip,
.premium-card,
.feature,
.point,
.stat,
.faq details,
.callout,
.g-item,
.modal .panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.76)),
    linear-gradient(130deg, rgba(255,229,138,0.10), transparent 42%),
    linear-gradient(250deg, rgba(143,215,255,0.10), transparent 44%) !important;
  border-color: rgba(19,32,51,0.085) !important;
  box-shadow:
    0 16px 38px rgba(19,32,51,0.08),
    0 30px 80px rgba(143,215,255,0.12),
    0 28px 72px rgba(255,176,160,0.08) !important;
}

.h1,
.soon-title {
  color: #10233a !important;
}

.kicker {
  color: #2f7c69 !important;
  letter-spacing: 0.08em !important;
}

.badge,
.pill,
.soon-badge {
  background: rgba(255,255,255,0.78) !important;
  border-color: rgba(19,32,51,0.08) !important;
  box-shadow: inset 0 1px rgba(255,255,255,0.85);
}

.badge .dot {
  background: linear-gradient(135deg, #22c55e, #38bdf8, #f59e0b) !important;
}

.btn {
  border-radius: 16px !important;
}

.btn.primary {
  background: linear-gradient(135deg, #72e7a6 0%, #8fd7ff 52%, #ffe58a 100%) !important;
  color: #10233a !important;
}

.btn.secondary {
  background: linear-gradient(135deg, #ffe58a 0%, #ffb0a0 50%, #ffc7df 100%) !important;
  color: #10233a !important;
}

.premium-strip {
  border-radius: 30px !important;
}

.hero-points .point:nth-child(1),
.feature:nth-child(1),
.soon-feature:nth-child(1) {
  border-top: 4px solid var(--ka-mint) !important;
}

.hero-points .point:nth-child(2),
.feature:nth-child(2),
.soon-feature:nth-child(2) {
  border-top: 4px solid var(--ka-blue) !important;
}

.hero-points .point:nth-child(3),
.feature:nth-child(3),
.soon-feature:nth-child(3) {
  border-top: 4px solid var(--ka-yellow) !important;
}

.hero-points .point:nth-child(4),
.soon-feature:nth-child(4) {
  border-top: 4px solid var(--ka-coral) !important;
}

.stats .stat:nth-child(1) { border-top: 4px solid var(--ka-blue) !important; }
.stats .stat:nth-child(2) { border-top: 4px solid var(--ka-mint) !important; }
.stats .stat:nth-child(3) { border-top: 4px solid var(--ka-yellow) !important; }
.stats .stat:nth-child(4) { border-top: 4px solid var(--ka-pink) !important; }

.quote {
  border-left: 5px solid var(--ka-violet) !important;
}

.quote:nth-child(2) {
  border-left-color: var(--ka-yellow) !important;
}

.quote:nth-child(3) {
  border-left-color: var(--ka-mint) !important;
}

.footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,248,238,0.86)),
    linear-gradient(90deg, rgba(141,240,189,0.18), rgba(143,215,255,0.16), rgba(255,199,223,0.18)) !important;
}

@media (max-width: 720px) {
  body::after {
    opacity: 0.26 !important;
  }

  .section {
    padding: 64px 0 !important;
  }

  .hero-copy-card .h1 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }
}


/* === Mobile rescue: roomy phone layout === */
@media (max-width: 760px) {
  :root {
    --nav-h: 66px;
  }

  .container {
    width: min(100% - 28px, var(--max)) !important;
  }

  .nav-inner {
    height: var(--nav-h) !important;
    gap: 8px !important;
  }

  .brand {
    min-width: 0;
    gap: 8px !important;
  }

  .brand-name strong {
    max-width: 150px !important;
    font-size: 12px !important;
    line-height: 1.05 !important;
  }

  .nav-cta {
    gap: 8px !important;
    flex: 0 0 auto;
  }

  .nav-cta > a {
    display: none !important;
  }

  .menu-btn {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 16px !important;
  }

  .mobile-drawer {
    inset: var(--nav-h) 0 auto 0 !important;
  }

  .kid-hero {
    padding: 26px 0 20px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .hero-copy-card {
    padding: 18px !important;
    border-radius: 26px !important;
  }

  .hero-copy-card .badge {
    max-width: 100%;
    white-space: normal;
    align-items: flex-start;
    line-height: 1.25;
  }

  .hero-copy-card .h1 {
    max-width: none !important;
    margin: 16px 0 12px !important;
    letter-spacing: -0.025em !important;
  }

  .hero-copy-card .p {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    max-width: none !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 16px 0 !important;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px !important;
  }

  .hero-points,
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .premium-grid,
  .availability-cards,
  .footer-grid,
  .split,
  .callout,
  .premium-strip,
  .soon-features {
    grid-template-columns: 1fr !important;
  }

  .hero-points {
    gap: 10px !important;
  }

  .hero-points .point,
  .stat,
  .premium-card,
  .feature {
    min-height: auto !important;
  }

  .kid-hero-slider {
    height: 390px !important;
    max-height: 390px !important;
    border-radius: 28px !important;
  }

  .hero-float-card {
    left: 14px !important;
    right: 14px !important;
    top: 14px !important;
    width: auto !important;
    max-width: none !important;
    padding: 10px 12px !important;
    border-radius: 18px !important;
  }

  .hero-float-card strong {
    font-size: 12.5px !important;
  }

  .hero-float-card span {
    font-size: 11.5px !important;
  }

  .hero-media .chip {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: none !important;
    width: auto !important;
    padding: 9px 12px !important;
    border-radius: 18px !important;
    line-height: 1.28 !important;
    white-space: normal !important;
  }

  .slider-controls {
    top: auto !important;
    right: 22px !important;
    bottom: 78px !important;
    transform: none !important;
    padding: 6px !important;
    gap: 8px !important;
    max-width: calc(100% - 44px);
  }

  .slider-btn {
    width: 34px !important;
    height: 34px !important;
  }

  .slider-dots {
    gap: 6px !important;
  }

  .slider-dot.active {
    width: 20px !important;
  }

  .section.compact,
  .premium-strip-section {
    padding: 42px 0 !important;
  }

  .premium-strip,
  .callout {
    padding: 18px !important;
    border-radius: 26px !important;
  }

  .premium-card {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .premium-card h3 {
    font-size: 24px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }

  .premium-card p {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
    letter-spacing: -0.02em !important;
  }

  .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .g-item,
  .gallery-card-10 {
    height: 245px !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px) !important;
  }

  .brand-name strong {
    max-width: 124px !important;
  }

  .logo.logo-img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-copy-card {
    padding: 16px !important;
  }

  .hero-copy-card .h1 {
    font-size: clamp(30px, 11vw, 39px) !important;
  }

  .kid-hero-slider {
    height: 360px !important;
    max-height: 360px !important;
  }

  .slider-controls {
    bottom: 86px !important;
    right: 18px !important;
  }
}
