:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#5b677a;

  --teal:#14b8a6;
  --teal-dark:#0f766e;

  --max:1100px;
  --radius:24px;

  --card: rgba(255,255,255,0.94);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.12);
  --shadow-soft: 0 14px 38px rgba(2, 6, 23, 0.10);
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#bubbles{
  position:fixed;
  inset:0;
  z-index:0;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:1;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}

.logo-img{
  height:42px;
  width:auto;
  display:block;
  border-radius:10px;
}

@media (max-width: 768px){
  .logo-img{ height:36px; }
}

.brand-text .brand-name{
  font-weight:950;
  letter-spacing:-0.3px;
}

.brand-tag{
  font-size:12.5px;
  color:var(--muted);
  font-weight:700;
  margin-top:2px;
}

.header-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.btn:active{ transform: translateY(1px); }

.btn.primary{
  color:#fff;
  background: linear-gradient(135deg, var(--teal), #34d399);
  box-shadow: 0 12px 30px rgba(20,184,166,0.22);
}

.btn.primary:hover{ opacity:0.95; }

.btn.ghost{
  color:var(--text);
  background: rgba(2,6,23,0.04);
}

.btn.large{
  padding:12px 18px;
  border-radius:18px;
  font-size:16px;
}

/* Hero */
.hero{
  padding: 52px 0 30px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items:start;
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(20,184,166,0.12);
  color: var(--teal-dark);
  font-weight:950;
  user-select:none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
}

.badge:hover{
  background: linear-gradient(135deg, var(--teal), #34d399);
  color:#fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20,184,166,0.18);
}

h1{
  margin: 14px 0 12px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height:1.05;
  letter-spacing:-0.8px;
}

.hero-subtext{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  font-weight:650;
}

.hero-trust{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:800;
  margin: 0 0 18px;
}

.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 0 0 14px;
}

.note{
  color: rgba(2,6,23,0.70);
  font-weight:700;
  background: rgba(2,6,23,0.03);
  padding: 12px 14px;
  border-radius: 18px;
}

/* Sections */
.section{ padding: 44px 0; }

h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing:-0.3px;
}

.section-lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-weight:700;
  max-width: 760px;
}

.body-text{
  margin: 0 0 12px;
  color: rgba(2,6,23,0.70);
  font-weight:650;
  line-height:1.55;
}

/* Cards */
.card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(2,6,23,0.04);
}

.card h3{
  margin: 0 0 8px;
  letter-spacing:-0.2px;
}

.card p{
  margin: 0;
  color: var(--muted);
  font-weight:650;
  line-height:1.45;
}

.card.highlight{
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.98);
}

.card-title{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing:-0.2px;
}

.card-sub{
  margin: 0 0 16px;
  color: var(--muted);
  font-weight:650;
}

/* Pricing */
.price-hero{
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(2,6,23,0.06);
  margin-bottom: 14px;
}

.price-hero-rate{
  font-weight: 980;
  font-size: 34px;
  letter-spacing: -0.6px;
  color: var(--teal-dark);
}

.price-hero-detail{
  margin-top: 6px;
  color: rgba(2,6,23,0.62);
  font-weight: 750;
  font-size: 13.5px;
}

.price-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.price-tile{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(2,6,23,0.06);
}

.price-name{ font-weight:950; letter-spacing:-0.2px; }
.price-range{ margin-top: 6px; font-size: 22px; font-weight: 980; color: var(--teal-dark); }
.price-detail{ margin-top: 6px; color: rgba(2,6,23,0.62); font-weight:700; font-size: 13.5px; }

.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 8px;
}

.fineprint{
  color: rgba(2,6,23,0.60);
  font-size: 12.5px;
  font-weight:700;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Owners layout */
.owners-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items:center;
}

.owner-photo{
  width:100%;
  max-width: 440px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.18);
  display:block;
}

/* Chips (clickable pills) */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(2,6,23,0.08);
  color: var(--teal-dark);
  font-weight:950;
  text-decoration:none;

  cursor:pointer;
  user-select:none;
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(2,6,23,0.08);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
}

.chip:hover{
  background: linear-gradient(135deg, var(--teal), #34d399);
  color:#fff;
  border-color: rgba(20,184,166,0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(20,184,166,0.18);
}

.chip:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(2,6,23,0.10);
}

.chip:focus-visible{
  outline: 3px solid rgba(20,184,166,0.35);
  outline-offset: 3px;
}

/* Contact */
.contact-grid .contact-big{
  font-size: 18px;
  font-weight: 950;
  margin-top: 4px;
}

.contact-grid a{
  color: var(--teal-dark);
  text-decoration:none;
}

.muted{
  margin-top: 10px !important;
  color: var(--muted) !important;
}

/* CTA bar */
.cta-bar{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  background: rgba(2,6,23,0.03);
  border-radius: 22px;
  padding: 14px 14px;
}

.cta-text{
  font-weight:850;
  color: rgba(2,6,23,0.72);
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(2,6,23,0.06);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color: var(--muted);
  font-weight:700;
}

.footer-links{
  display:flex;
  gap: 14px;
}

.footer-links a{
  color: var(--teal-dark);
  text-decoration:none;
  font-weight:900;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .owners-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .cta-bar{
    flex-direction:column;
    align-items:flex-start;
  }
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}
