:root {
  --ink: #102331;
  --muted: #5f7482;
  --paper: #fbfdff;
  --panel: #ffffff;
  --blue-50: #eef9ff;
  --blue-100: #dff4ff;
  --blue-200: #bfeaff;
  --blue-500: #45b8f4;
  --blue-600: #1f95da;
  --blue-700: #1676b6;
  --line: #d8edf7;
  --silver: #edf3f7;
  --shadow: 0 18px 48px rgba(25, 130, 190, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Montserrat, "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(69, 184, 244, 0.18);
  background: rgba(251, 253, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #153447;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(69, 184, 244, 0.22));
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue-700);
}

.hero {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(38px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(48px, 8vw, 104px);
  background:
    linear-gradient(180deg, rgba(223, 244, 255, 0.62), rgba(251, 253, 255, 0) 62%),
    radial-gradient(circle at 78% 22%, rgba(111, 204, 255, 0.24), transparent 34%);
  overflow: hidden;
}

.hero-copy {
  max-width: 790px;
}

.hero-logo {
  display: block;
  width: min(520px, 86vw);
  margin: 0 0 24px 0;
  filter: drop-shadow(0 18px 34px rgba(69, 184, 244, 0.16));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--blue-600);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 149, 218, 0.2);
}

.button.primary:hover {
  background: var(--blue-700);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-700);
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-frame {
  position: absolute;
  display: block;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.frame-a {
  inset: 18px 70px 145px 0;
  width: calc(100% - 70px);
  height: 360px;
}

.frame-b {
  right: 0;
  bottom: 34px;
  width: 58%;
  height: 245px;
}

.frame-c {
  right: 22px;
  top: 92px;
  width: 170px;
  height: 170px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.signal-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

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

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: #153447;
}

.signal-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 35, 49, 0.05);
}

.package-card {
  padding: 24px;
}

.package-card.featured {
  border-color: rgba(69, 184, 244, 0.58);
  box-shadow: var(--shadow);
}

.package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.package-topline span {
  white-space: nowrap;
  color: var(--blue-700);
  font-weight: 900;
}

.package-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.package-card li {
  margin-bottom: 8px;
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.work-section {
  background: linear-gradient(180deg, var(--blue-50), #fff);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-card {
  overflow: hidden;
}

.photo-card img,
.photo-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(69, 184, 244, 0.16), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, #d7effb 0 20px, #f5fbff 20px 40px);
}

.photo-card h3,
.photo-card p {
  padding: 0 18px;
}

.photo-card h3 {
  margin-top: 18px;
}

.photo-card p {
  color: var(--muted);
  padding-bottom: 18px;
}

.comparison-section {
  background: #fff;
}

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

.comparison-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 35, 49, 0.05);
}

.comparison-card span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(16, 35, 49, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.comparison-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.process-section {
  background: #153447;
  color: #fff;
}

.process-section .eyebrow {
  color: var(--blue-200);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(191, 234, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.landlord-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: #fff;
}

.landlord-copy p {
  color: var(--muted);
  font-size: 20px;
}

.landlord-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.landlord-copy li {
  padding-left: 2px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--blue-50);
}

.quote-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 3px;
  max-width: 360px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quote-form .full,
.quote-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

input[type="file"] {
  padding: 11px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  outline: 3px solid rgba(69, 184, 244, 0.18);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.file-field {
  padding: 14px;
  border: 1px dashed var(--blue-200);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.file-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #102331;
  color: #fff;
}

.footer div,
.footer span {
  display: block;
}

.footer div {
  min-height: 54px;
  padding-left: 68px;
  position: relative;
}

.footer-mark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(69, 184, 244, 0.2));
}

.footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: var(--blue-200);
  font-weight: 900;
}

@media (max-width: 940px) {
  .hero,
  .landlord-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 390px;
  }

  .package-grid,
  .gallery,
  .comparison-grid,
  .process-list,
  .signal-strip {
    grid-template-columns: 1fr;
  }

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

  .signal-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 132px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 30px;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-logo {
    width: min(310px, 86vw);
    margin-inline: auto;
  }

  .lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: 46px;
  }

  .hero-media {
    width: min(100%, 520px);
    min-height: 330px;
    margin-inline: auto;
  }

  .frame-a {
    inset: 0 36px 92px 0;
    width: calc(100% - 36px);
    height: 250px;
  }

  .frame-b {
    bottom: 0;
    width: 64%;
    height: 150px;
  }

  .frame-c {
    right: 8px;
    top: 72px;
    width: 118px;
    height: 118px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

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