* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

:root {
  --navy: #06152d;
  --blue: #1647a5;
  --gold: #f0b90b;
  --gold-dark: #b97400;
  --text: #101827;
  --muted: #64748b;
  --soft: #f6f8fc;
  --white: #ffffff;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
}

.hero {
  min-height: 88vh;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(240,185,11,0.20), transparent 35%),
    linear-gradient(135deg, rgba(6,21,45,0.97), rgba(11,42,91,0.95)),
    #06152d;
}

.navbar {
  width: 100%;
  padding: 22px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--white);
  font-size: 26px;
  letter-spacing: 0.5px;
}

.brand-text span {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 850;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.92;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
}

.hero-content {
  max-width: 980px;
  padding: 88px 7% 110px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  max-width: 980px;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 860px;
  color: #dbeafe;
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111827;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.trust-strip {
  width: 86%;
  margin: -54px auto 35px;
  background: var(--white);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 18px 45px rgba(15,23,42,0.14);
  overflow: hidden;
}

.trust-strip div {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 4px;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.section {
  padding: 82px 7%;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  line-height: 1.2;
  max-width: 850px;
  margin: 0 auto 18px;
  color: var(--navy);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.service-card {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 12px 34px rgba(15,23,42,0.08);
  border: 1px solid rgba(226,232,240,0.75);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.service-card.featured {
  background: linear-gradient(135deg, #06152d, #0b2a5b);
  color: var(--white);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.service-card h3 {
  margin: 10px 0 12px;
  font-size: 21px;
  color: inherit;
}

.service-card p {
  color: var(--muted);
}

.service-card.featured p {
  color: #dbeafe;
}

.owner-section {
  padding: 20px 7% 70px;
}

.owner-card {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 28px;
  background: var(--white);
  padding: 42px;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.09);
  text-align: left;
}

.owner-card h2 {
  color: var(--navy);
  font-size: 36px;
  margin-bottom: 14px;
}

.owner-card p {
  color: var(--muted);
  font-size: 18px;
}

.owner-details {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
}

.owner-details p {
  margin-bottom: 12px;
  font-size: 16px;
}

.owner-details a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.reviews-section {
  background: #ffffff;
}

.review-cta {
  max-width: 880px;
  margin: 34px auto 0;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  text-align: left;
}

.stars {
  color: #f59e0b;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-cta h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 8px;
}

.review-cta p {
  color: var(--muted);
}

.resources-section {
  background: #eef4ff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  text-align: left;
}

.blog-date {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}

.blog-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--muted);
}

.blog-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
}

.intake-section {
  background: var(--white);
}

.intake-form {
  max-width: 900px;
  margin: 35px auto 0;
  background: #f8fafc;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.09);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,71,165,0.11);
}

textarea {
  resize: vertical;
  margin-bottom: 18px;
}

.form-btn {
  width: 100%;
  font-size: 17px;
}

.footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 36px 7%;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
}

.footer-brand div {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand span {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 850;
}

.copyright {
  color: #cbd5e1;
  margin-top: 10px;
  font-size: 14px;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
}

.chat-toggle {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(15,23,42,0.25);
}

.chat-box {
  display: none;
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.25);
  overflow: hidden;
  margin-bottom: 12px;
}

.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 15px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.chat-messages {
  height: 250px;
  padding: 16px;
  overflow-y: auto;
  background: #f8fafc;
}

.bot-message,
.user-message {
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.bot-message {
  background: #e0ecff;
  color: var(--navy);
}

.user-message {
  background: var(--blue);
  color: var(--white);
  margin-left: 44px;
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px;
}

.quick-buttons button {
  border: 0;
  background: #eef4ff;
  color: var(--blue);
  padding: 7px 10px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}

.chat-input {
  display: flex;
  border-top: 1px solid var(--border);
}

.chat-input input {
  border: 0;
  border-radius: 0;
}

.chat-input button {
  border: 0;
  background: var(--gold);
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .owner-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    align-items: center;
    padding: 18px 6%;
  }

  .brand img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text span {
    font-size: 10px;
    max-width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 94px;
    right: 6%;
    left: 6%;
    background: var(--white);
    color: var(--navy);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    box-shadow: 0 12px 35px rgba(15,23,42,0.18);
    z-index: 20;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--navy);
  }

  .hero-content {
    padding: 58px 6% 96px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .trust-strip,
  .services-grid,
  .blog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 65px 6%;
  }

  .section h2 {
    font-size: 31px;
  }

  .review-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-box {
    width: 300px;
  }
}
