html, body {
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --text: #1f2430;
  --muted: #687285;
  --line: #e6e9f2;
  --primary: #775cff;
  --primary-2: #45c6b0;
  --shadow: 0 12px 34px rgba(28, 34, 52, 0.08);
  --radius: 22px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at left top, rgba(119, 92, 255, 0.07), transparent 30%),
    radial-gradient(circle at right top, rgba(69, 198, 176, 0.07), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner,
.footer-inner,
.hero-grid,
.actions,
.top-actions,
.contact-links,
.cards,
.cta {
  display: flex;
}

.topbar-inner,
.footer-inner,
.cta {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-inner {
  min-height: 72px;
}

.brand {
  font-weight: 700;
  font-size: 18px;
}

.top-actions,
.actions {
  gap: 12px;
  flex-wrap: wrap;
}

.top-actions a:not(.button) {
  color: var(--muted);
  font-weight: 700;
}

.hero {
  padding: 36px 0 18px;
}

.hero-grid {
  gap: 24px;
  align-items: stretch;
}

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

.hero-copy {
  flex: 1.2;
  padding: 42px;
}

.hero-card {
  flex: 0.8;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(119, 92, 255, 0.06), rgba(69, 198, 176, 0.04), #fff);
}

.tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0edff;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

h1 {
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 10px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chips span {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5d77ff);
}

.secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.contact-box {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-box p {
  margin: 8px 0;
}

.hero-card ul,
.simple-list {
  padding-left: 20px;
}

.hero-card li,
.simple-list li,
.card p,
.hero-copy p,
.footer p {
  color: var(--muted);
}

.section {
  padding: 18px 0;
}

.alt {
  background: linear-gradient(180deg, rgba(247,248,252,0.7), rgba(255,255,255,0));
}

.section-title {
  margin-bottom: 18px;
}

.cards {
  gap: 18px;
  flex-wrap: wrap;
}

.cards.four > .card {
  width: calc(25% - 14px);
}

.cards.two > .card {
  width: calc(50% - 9px);
}

.cards.three > div {
  width: calc(33.333% - 12px);
}

.card {
  padding: 28px;
}

.number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f0edff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.big {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text);
}

.contact-links {
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  background: #fff;
}

.address-card {
  padding: 30px;
}

.address-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ebfbf7;
  color: #13907d;
  font-weight: 700;
}

.address-text {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--text) !important;
  margin: 0;
}

.inner-grid {
  margin-top: 14px;
}

.summary-card h3 {
  margin-top: 10px;
}

.cta {
  padding: 30px;
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(119, 92, 255, 0.06), rgba(69, 198, 176, 0.05), #fff);
}

.footer {
  padding: 24px 0 84px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16b78b, #13c77b);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(19, 199, 123, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .topbar-inner,
  .footer-inner,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card {
    width: 100%;
  }

  .cards.four > .card,
  .cards.two > .card,
  .cards.three > div {
    width: calc(50% - 9px);
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .hero-copy,
  .hero-card,
  .card,
  .cta {
    padding: 22px;
  }

  .cards.four > .card,
  .cards.two > .card,
  .cards.three > div {
    width: 100%;
  }

  .floating {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
