:root {
  --green: #35b83a;
  --green-dark: #0aa362;
  --purple: #3b3447;
  --black: #111111;
  --dark: #303030;
  --ink: #061a33;
  --gray: #5f6875;
  --muted: #96a0aa;
  --light: #f5f5f5;
  --panel: #f8f8f8;
  --white: #ffffff;
  --border: #e8e8e8;
  --shadow: 0 24px 60px rgba(6, 26, 51, 0.12);
  --soft-shadow: 0 16px 38px rgba(6, 26, 51, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #eeeeee 0, #eeeeee calc((100% - 1160px) / 2), #ffffff calc((100% - 1160px) / 2), #ffffff calc(100% - ((100% - 1160px) / 2)), #eeeeee calc(100% - ((100% - 1160px) / 2)));
}

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

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

.top-line {
  height: 11px;
  background: var(--purple);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(48, 48, 48, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  display: block;
  width: 108px;
  height: auto;
}

.header-phone {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone:hover,
.contact-row a:hover,
.contacts-list a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 84% 12%, rgba(53, 184, 58, 0.17), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8f8f8 55%, #eeeeee 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 7px;
  background: var(--green);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 58px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.card-label,
.section-kicker,
.info-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(48px, 6.4vw, 82px);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.notice-card {
  margin-top: 28px;
  padding: 28px 30px;
  border-left: 5px solid var(--green);
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.notice-card p {
  margin: 0;
  color: var(--gray);
  font-size: 17px;
}

.notice-card p + p {
  margin-top: 14px;
}

.notice-card a {
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid rgba(53, 184, 58, 0.48);
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(53, 184, 58, 0.24);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--green-dark);
  border-color: rgba(53, 184, 58, 0.55);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(53, 184, 58, 0.20);
}

.contact-card {
  width: 100%;
  padding: 36px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 12px;
  margin-bottom: 28px;
}

.contact-row {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-row span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.contact-row a {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.info-section {
  padding: 76px 0;
  background: var(--white);
}

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

.info-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.info-card h3 {
  margin-top: 14px;
}

.info-card p {
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 16px;
}

.contacts-section {
  padding: 86px 0;
  background: var(--light);
}

.contacts-panel {
  padding: 46px;
  border-top: 5px solid var(--green);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contacts-panel h2 {
  margin-top: 14px;
}

.contacts-panel p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 18px;
}

.contacts-list {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 30px 0 0;
}

.contacts-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.contacts-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contacts-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 32px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  border-top: 7px solid var(--purple);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand img {
  display: block;
  width: 120px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  body::before {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .logo img {
    width: 98px;
  }

  .hero {
    padding: 56px 0 66px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .notice-card {
    padding: 22px;
    border-radius: 0 20px 20px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-card,
  .contacts-panel,
  .info-card {
    padding: 26px;
  }

  .contacts-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-inner p {
    text-align: left;
  }
}
