:root {
  --bg: #ffffff;
  --text: #172033;
  --muted: #5f6c85;
  --line: #dbe3ef;
  --primary: #1575bf;
  --primary-soft: #e9f5ff;
  --accent: #15b8d6;
  --dark: #0f1728;
  --shadow: 0 18px 50px rgba(16, 33, 60, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
}

.topbar-inner,
.footer-inner,
.contact-grid,
.highlight-grid,
.hero-grid {
  display: grid;
  gap: 28px;
}

.topbar-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.topbar h1,
.hero h2,
.section h3 {
  margin: 0;
  line-height: 1.08;
}

.topbar h1 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 720px;
}

.cta-button {
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.hero {
  padding: 54px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(21,184,214,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.benefit-card,
.photo-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.tag {
  display: inline-flex;
  margin: 0 0 14px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 18px;
}

.lead,
.body-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #d9ebfb;
  font-weight: 700;
}

.mini-card.strong {
  background: linear-gradient(135deg, var(--dark), #25314b);
  color: #fff;
  border-color: transparent;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
}

.panel-accent {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(160deg, var(--accent), var(--primary));
}

.hero-info {
  position: absolute;
  inset: auto 24px 24px 24px;
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.info-title {
  font-weight: 700;
  color: var(--dark);
}

.hero-info a,
.contact-card a,
.contact-strip a {
  font-weight: 700;
  color: var(--primary);
  word-break: break-word;
}

.section {
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 22px;
}

.section h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

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

.benefit-card {
  padding: 26px;
}

.benefit-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.benefit-card h4 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.benefit-card.special {
  background: linear-gradient(135deg, #f6fbff, #eef8ff);
}

.highlight-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.highlight-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.photo-card {
  overflow: hidden;
  padding: 14px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 18px;
}

.contact-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  background: #fff;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .highlight-grid,
  .contact-grid,
  .benefits-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
  }

  .cta-button {
    justify-self: start;
  }

  .photo-card img {
    min-height: 300px;
  }
}
