:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-2: #f3f7fb;
  --text: #0f172a;
  --muted: #5f6b7a;
  --line: #d9e2ec;
  --brand: #27aae1;
  --brand-dark: #000b2e;
  --shadow: 0 10px 30px rgba(0, 11, 46, 0.05);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  height: 81px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}
.header-cta,
.btn-primary,
.contact-form button {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(39, 170, 225, 0.18);
}
.header-cta:hover,
.btn:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}
.header-cta:hover,
.btn-primary:hover,
.contact-form button:hover {
  background: #1499d2;
  border-color: #1499d2;
}
.btn {
  background: #fff;
  color: var(--brand-dark);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(39, 170, 225, 0.18);
}

.hero {
  padding: 54px 0 28px;
}
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}
.hero-copy,
.hero-visual,
.section-card,
.property-card,
.contact-card,
.process-card,
.metric-card,
.service-detail-card,
.faq-card,
.image-card,
.page-hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-copy,
.page-hero-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}
.eyebrow {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39, 170, 225, 0.12);
  color: var(--brand-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  max-width: 760px;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.metric-card {
  padding: 18px 18px 16px;
  min-height: 118px;
}
.metric-card strong {
  display: block;
  font-size: 22px;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.metric-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.hero-visual,
.page-hero-visual {
  overflow: hidden;
  min-height: 560px;
  position: relative;
  border-radius: var(--radius-lg);
}
.hero-visual img,
.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 290px;
  box-shadow: 0 14px 34px rgba(0, 11, 46, 0.1);
}
.hero-visual-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 15px;
}
.hero-visual-badge span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

section.page-section {
  padding: 28px 0 0;
}
.section-head {
  margin-bottom: 22px;
}
.section-head h1,
.section-head h2 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}
.section-head p {
  margin: 0;
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-grid,
.process-grid,
.properties-grid,
.contact-grid,
.service-detail-grid,
.faq-grid,
.contact-stack {
  display: grid;
  gap: 22px;
}
.services-grid,
.contact-grid,
.service-detail-grid {
  grid-template-columns: 1fr 1fr;
}
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}
.properties-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contact-stack {
  grid-template-columns: 1fr;
}
.section-card,
.service-detail-card,
.process-card,
.contact-card,
.faq-card {
  padding: 28px;
}
.section-card h3,
.service-detail-card h3,
.process-card h3,
.property-card h3,
.contact-card h3,
.faq-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--brand-dark);
}
.bullet {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.bullet li {
  margin: 9px 0;
}
.service-detail-card p,
.process-card p,
.property-card p,
.contact-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.model-emphasis {
  margin-top: 18px;
  border-left: 4px solid var(--brand);
  background: linear-gradient(180deg, #f8fbfe, #f4f8fb);
  padding: 18px 18px 18px 20px;
  border-radius: 0 16px 16px 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}
.property-card {
  overflow: hidden;
}
.property-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-image img {
  transform: scale(1.03);
}
.property-body {
  padding: 22px;
}
.property-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(39, 170, 225, 0.1);
  color: var(--brand-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.faq-grid {
  grid-template-columns: 1fr 1fr;
}
.image-card {
  overflow: hidden;
}
.image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-image-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-image-caption {
  padding: 18px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}
.page-hero-copy .section-head {
  margin-bottom: 0;
}
.page-hero-copy .section-head h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  max-width: none;
}
.page-hero-copy .section-head p {
  font-size: 18px;
  max-width: none;
}
.page-hero-visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-footer {
  margin-top: 6px;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
}
.footer-main {
  padding: 18px 0 10px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 16px;
}
.footer-logo {
  margin-bottom: 8px;
}
.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-copy {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col h4 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bottom-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom-nav a:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .header-cta {
    display: none;
  }
  .hero-grid,
  .page-hero-grid,
  .services-grid,
  .contact-grid,
  .footer-main,
  .service-detail-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 10px 0;
  }
  .brand img {
    height: 68px;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 18px 22px;
  }
  .hero {
    padding-top: 26px;
  }
  .hero-grid,
  .page-hero-grid,
  .properties-grid,
  .process-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .page-hero-copy,
  .hero-visual,
  .page-hero-visual {
    min-height: auto;
  }
  .hero-copy,
  .page-hero-copy,
  .section-card,
  .process-card,
  .property-body,
  .contact-card,
  .service-detail-card,
  .faq-card {
    padding: 22px;
  }
  h1 {
    font-size: 38px;
  }
  .section-head h1,
  .section-head h2 {
    font-size: 32px;
  }
  .footer-main {
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-bottom {
    padding-bottom: 14px;
  }
}
