:root {
  color-scheme: light;
  --bg: #fbfcfd;
  --ink: #111827;
  --muted: #5f6875;
  --line: #e4e9ef;
  --panel: #ffffff;
  --soft: #f3f7fa;
  --dark: #101827;
  --cyan: #35bfd1;
  --violet: #7d4c92;
  --green: #43bd70;
  --blue: #317dcc;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 24, 39, .12);
  font-family: "Open Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand img { width: 182px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: .94rem;
}
.main-nav a, .header-action, .site-footer a { text-decoration: none; }
.main-nav a:hover, .site-footer a:hover { color: var(--blue); }
.header-action {
  border: 1px solid rgba(49, 125, 204, .35);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--blue);
  font-weight: 700;
}
.menu-toggle { display: none; }

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}
.muted { background: var(--soft); }
.hero {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  min-height: calc(100vh - 74px);
  background:
    radial-gradient(circle at 10% 15%, rgba(53, 191, 209, .18), transparent 30%),
    linear-gradient(135deg, #f8fbfd 0%, #eef4f8 100%);
}
.hero-media {
  position: relative;
  aspect-ratio: 2 / 3;
  max-height: 680px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Ubuntu, Arial, sans-serif;
  line-height: 1.08;
}
h1 { max-width: 760px; font-size: clamp(2.7rem, 7vw, 6rem); }
h2 { max-width: 920px; font-size: clamp(2rem, 4.5vw, 4.4rem); }
h3 { font-size: 1.18rem; }
.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 19px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}
.accent { background: var(--violet); }
.whatsapp { background: var(--green); }
.telegram { background: var(--blue); }
.ghost { background: var(--cyan); }

.section-heading {
  max-width: 1120px;
  margin: 0 auto 34px;
}
.section-heading.compact { text-align: center; }
.section-heading.compact h2, .section-heading.compact p { margin-left: auto; margin-right: auto; }
.section-heading.compact > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  max-width: 1120px;
  margin: 0 auto;
}
.about-copy {
  color: #1f2937;
  font-size: 1.05rem;
}
.about-copy p { margin: 0 0 18px; }
.stat-panel {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
}
.stat-panel div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.stat-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.stat-panel span { color: rgba(255,255,255,.72); }
.stat-panel a {
  color: #b9f7ff;
  font-weight: 700;
  text-decoration: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.service-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 24, 39, .06);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f7fafc;
  border-radius: var(--radius);
}
.service-card p { margin: 0; color: var(--muted); }
.service-card .price {
  color: var(--violet);
  font-weight: 900;
}
.service-card a {
  justify-self: start;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.reviews-frame {
  max-width: 760px;
  height: 880px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.reviews-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.project-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.project-card span { color: var(--muted); font-size: .95rem; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.social-grid a {
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  background: #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 42px;
  background: var(--dark);
  color: #fff;
}
.contact-info { max-width: 760px; justify-self: end; }
.contact-info dd, .contact-info dl { margin: 0; }
.contact-info dl {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}
.contact-info dt {
  margin-bottom: 5px;
  color: #b9f7ff;
  font-weight: 900;
}
.contact-info dd { color: rgba(255,255,255,.78); }
.contact-info a { color: #fff; }
.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}
.lead-form p { margin: 0; color: var(--muted); }
.lead-form label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: .94rem;
  font-weight: 800;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.lead-form textarea { resize: vertical; }
.lead-form .form-status { min-height: 24px; font-weight: 700; color: var(--blue); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: rgba(255,255,255,.72);
  background: #070b13;
}

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto auto; }
  .brand { grid-column: 1; }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 15px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
  }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }
  .main-nav.is-open { display: flex; }
  .header-action { display: none; }
  .hero, .about-grid, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { max-width: 420px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-info { justify-self: stretch; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .brand img { width: 150px; }
  .section { padding: 46px 16px; }
  .hero-actions .btn { width: 100%; }
  .services-grid, .projects-grid, .social-grid { grid-template-columns: 1fr; }
  .reviews-frame { height: 720px; }
  .site-footer { flex-direction: column; }
}
