/* Birdie Property Management — shared styles */

:root {
  --blue: #4A9FD4;
  --blue-dark: #3B87BC;
  --navy: #16294B;
  --navy-soft: #24304d;
  --mist: #F2F6FA;
  --text: #1c2b45;
  --muted: #5B6B82;
  --border: #E4EAF1;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 41, 75, 0.08);
  --shadow-sm: 0 4px 14px rgba(22, 41, 75, 0.06);
  --wrap: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand .wordmark b { font-weight: 700; letter-spacing: 0.5px; color: var(--navy); font-size: 17px; }
.brand .wordmark span { font-size: 10px; letter-spacing: 3px; color: var(--blue); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav a:hover, .nav a.active { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 20px;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(74,159,212,.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-dark); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 12.5px;
  font-weight: 700; color: var(--blue); margin-bottom: 14px;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
.lead { font-size: 1.18rem; color: var(--muted); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { padding: 92px 0 88px; background:
  radial-gradient(1200px 500px at 80% -10%, rgba(74,159,212,.10), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-line { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.trust-line .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.hero-visual {
  background: var(--navy); border-radius: 24px; padding: 44px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0, rgba(74,159,212,.35), transparent 55%);
}
.hero-visual .card {
  position: relative; z-index: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 18px 20px; margin-top: 14px; display: flex; align-items: center; gap: 14px;
  color: #eaf2fb;
}
.hero-visual .card:first-child { margin-top: 0; }
.hero-visual .card .ic {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: rgba(74,159,212,.25); display: grid; place-items: center;
}
.hero-visual .card b { color: #fff; font-size: 15px; display: block; }
.hero-visual .card small { color: #a9bfd8; font-size: 13px; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s;
}
.card-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-feature .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--mist);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 18px;
}
.card-feature h3 { margin-bottom: 8px; }
.card-feature p { color: var(--muted); font-size: 15px; }

.tint { background: var(--mist); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); color: #fff; border-radius: 24px; padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #eaf4fb; max-width: 560px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Pricing ---------- */
.price-hero { background: var(--mist); padding: 76px 0 64px; }
.price-card {
  background: var(--navy); color: #fff; border-radius: 24px; padding: 48px;
  box-shadow: var(--shadow); max-width: 720px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
}
.price-card::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 50% -20%, rgba(74,159,212,.4), transparent 60%); }
.price-card > * { position: relative; z-index: 1; }
.price-figure { font-size: clamp(2.6rem, 8vw, 4.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.price-figure small { display: block; font-size: 1.05rem; font-weight: 600; color: #a9bfd8; margin-top: 8px; }
.price-sub { color: #cfe1f2; font-size: 1.05rem; margin-top: 6px; }
.badge-nofee {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
}

/* ---------- Pricing tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 840px; margin: 0 auto; }
.tier { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.tier.hl { border-color: var(--blue); box-shadow: 0 12px 30px rgba(74,159,212,.18); }
.tier .u { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.tier .p { font-size: 3.1rem; font-weight: 800; color: var(--navy); line-height: 1; margin: 10px 0 5px; letter-spacing: -0.03em; }
.tier .p small { font-size: 1.15rem; font-weight: 700; color: var(--blue); }
.tier .r { font-size: 14px; color: var(--muted); }
.tier-note { text-align: center; color: var(--muted); font-size: 15px; margin-top: 26px; }
.tier-note b { color: var(--navy); font-weight: 600; }

.included { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.included li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.included .chk {
  width: 24px; height: 24px; border-radius: 50%; background: var(--mist); color: var(--blue);
  display: grid; place-items: center; flex: none; margin-top: 2px;
}
.included li b { display: block; color: var(--navy); }
.included li span { color: var(--muted); font-size: 14.5px; }

.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--muted); }

/* ---------- Interior page hero ---------- */
.page-hero { background: var(--mist); padding: 72px 0 60px; }
.page-hero .section-head { margin-bottom: 0; }
.page-hero.center-hero { text-align: center; }
.page-hero.center-hero .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Split / story ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .lead { margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.story-panel {
  background: var(--navy); color: #eaf2fb; border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.story-panel::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 100% 0, rgba(74,159,212,.35), transparent 55%); }
.story-panel > * { position: relative; z-index: 1; }
.story-panel h3 { color: #fff; margin-bottom: 16px; }
.value-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
.value-row:first-of-type { border-top: none; }
.value-row .ic { width: 40px; height: 40px; border-radius: 10px; flex: none; background: rgba(74,159,212,.25); display: grid; place-items: center; }
.value-row b { color: #fff; display: block; }
.value-row span { color: #b9cbe2; font-size: 14.5px; }

/* ---------- Detailed service rows ---------- */
.svc { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid var(--border); }
.svc:first-child { border-top: none; }
.svc .ic { width: 52px; height: 52px; border-radius: 13px; background: var(--mist); color: var(--blue); display: grid; place-items: center; }
.svc h3 { margin-bottom: 8px; }
.svc p { color: var(--muted); }
.callout {
  background: var(--mist); border: 1px solid var(--border); border-left: 4px solid var(--blue);
  border-radius: 0; padding: 22px 26px; margin-top: 10px;
}
.callout b { color: var(--navy); }
.callout p { color: var(--muted); margin: 6px 0 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info .info-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--mist); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-info .info-item b { color: var(--navy); display: block; }
.contact-info .info-item a, .contact-info .info-item span { color: var(--muted); }
.contact-info .info-item a:hover { color: var(--blue-dark); }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 15px; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,159,212,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form .btn-primary { width: 100%; padding: 14px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

.form-status { font-size: 14.5px; font-weight: 500; margin-top: 4px; }
.form-status:empty { margin: 0; }
.form-status.ok { color: #1d7a4d; }
.form-status.err { color: #c0392b; }

/* ---------- Founder / stats ---------- */
.founder-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-ph { position: relative; margin: 0; border-radius: 16px; overflow: hidden; background: var(--mist); border: 1px solid var(--border); aspect-ratio: 3 / 4; }
.photo-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-ph figcaption { display: none; }
.photo-ph.empty { display: grid; place-items: center; }
.photo-ph.empty figcaption { display: block; padding: 14px; text-align: center; color: var(--muted); font-size: 13px; }
.photo-ph.personal { margin-top: 26px; }
.stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 28px; }
.stat b { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 14px; }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; max-width: 760px; margin: 0 auto; }
.tstm { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .45s ease; text-align: center; margin: 0; }
.tstm.is-active { position: relative; opacity: 1; visibility: visible; }
.tstm .stars { color: #f2a93b; letter-spacing: 4px; font-size: 18px; margin-bottom: 16px; }
.tstm p { font-family: var(--serif); font-size: 1.32rem; line-height: 1.6; color: var(--navy); margin-bottom: 18px; }
.tstm cite { font-style: normal; font-weight: 600; color: var(--muted); }
.tstm-dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.tstm-dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s; }
.tstm-dots button.is-active { background: var(--blue); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c8dd; padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a { display: block; color: #b9c8dd; padding: 5px 0; font-size: 15px; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #8ea1bd;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4, .steps, .included { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 6px 24px 16px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 2px; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav a.btn-primary { margin-top: 12px; text-align: center; justify-content: center; border-bottom: none; color: #fff; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .grid-3, .grid-4, .grid-2, .steps, .included, .tiers { grid-template-columns: 1fr; }
  .cta-band, .price-card { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
