:root {
  --brand: #0f8ec3;
  --brand-dark: #0a5d81;
  --brand-light: #e3f6fc;
  --ink: #0b1721;
  --muted: #4a5b65;
  --bg: radial-gradient(circle at top, #f7fbfe 0%, #eef4f8 42%, #e6f0f5 100%);
  --card: #ffffff;
  --ring: rgba(15, 142, 195, 0.25);
  --radius: 20px;
  --shadow: 0 20px 40px rgba(10, 63, 92, 0.12);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 16px/1.6 "Inter", "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.container.narrow { width: min(900px, 92vw); }

.site-header {
  background: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 142, 195, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 1.05rem;
}
.logo-text strong { color: var(--brand); }

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav a:hover {
  background: rgba(15, 142, 195, 0.08);
  color: var(--ink);
}
.nav .btn {
  margin-left: 4px;
  padding: 10px 20px;
  font-size: 0.95rem;
  background: linear-gradient(120deg, var(--brand), #13b0f1);
  color: #fff;
  box-shadow: 0 12px 22px rgba(15, 142, 195, 0.35);
  border: none;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}
.nav .btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
}
.nav .btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero {
  padding: 84px 0 40px;
  display: flex;
  justify-content: center;
}
.hero > .container {
  width: min(880px, 92vw);
  margin: 0 auto;
  padding-left: clamp(20px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  justify-items: start;
}
.hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 720px;
}
.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-dark);
  font-weight: 700;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0;
  line-height: 1.05;
}
.hero-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}
.hero-highlights {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.hero-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}
.hero-metrics div {
  background: linear-gradient(135deg, rgba(15, 142, 195, 0.12), rgba(15, 142, 195, 0.04));
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  flex: 1 1 160px;
  max-width: 200px;
}
.hero-metrics dt {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: var(--brand-dark);
}
.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.section:first-of-type {
  padding-top: 56px;
}

#services,
#pricing,
#contact {
  scroll-margin-top: 110px;
}
.section.alt {
  position: relative;
  isolation: isolate;
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.section.alt > * {
  position: relative;
  z-index: 1;
}
.section h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 26px;
  text-align: center;
}
.split h2 { text-align: left; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: var(--card);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 142, 195, 0.08);
  display: grid;
  gap: 16px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(11, 35, 51, 0.16);
}
.card figure {
  margin: -24px -24px 0;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card h3 {
  margin: 0;
  font-size: 1.3rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
.about-card {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 142, 195, 0.08);
}
.about-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.contact-info {
  display: grid;
  gap: 18px;
}
.info-card {
  background: linear-gradient(135deg, rgba(15, 142, 195, 0.15), rgba(15, 142, 195, 0.05));
  border-radius: 24px;
  padding: 22px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.info-card.secondary {
  background: var(--card);
  border: 1px solid rgba(15, 142, 195, 0.08);
}
.info-card.tertiary {
  background: linear-gradient(135deg, rgba(15, 142, 195, 0.12), rgba(15, 142, 195, 0.04));
}
.info-card.tertiary ul {
  margin-top: 12px;
}
.info-card h3 {
  margin-top: 0;
}
.info-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.contact-form {
  background: var(--card);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 142, 195, 0.08);
}
.contact-form .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}
.contact-form label.full {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 142, 195, 0.25);
  background: #fbfeff;
  outline: none;
  transition: var(--transition);
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring);
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.btn {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #12a5df);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 142, 195, 0.35);
}
.btn-outline {
  border-color: rgba(15, 142, 195, 0.3);
  background: transparent;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.btn:focus-visible {
  outline: 3px solid rgba(15, 142, 195, 0.5);
  outline-offset: 3px;
}

.pricing-block {
  margin-top: 48px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.pricing-block h2 {
  margin: 0;
}

.pricing-block .pricing-intro {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  justify-self: center;
}

.pricing-guide {
  margin-top: 12px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 142, 195, 0.08);
  overflow-x: auto;
  text-align: left;
}

.pricing-guide h3 {
  margin-top: 0;
  margin-bottom: 18px;
}
.pricing-guide table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  color: var(--muted);
  overflow: hidden;
  border-radius: 18px;
}
.pricing-guide thead {
  background: linear-gradient(135deg, rgba(15, 142, 195, 0.18), rgba(15, 142, 195, 0.08));
  color: var(--ink);
}
.pricing-guide th,
.pricing-guide td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 142, 195, 0.12);
}

.pricing-guide col.col-service {
  width: 35%;
}

.pricing-guide col.col-details {
  width: 45%;
}

.pricing-guide col.col-from {
  width: 20%;
}

.pricing-guide th:nth-child(2),
.pricing-guide td:nth-child(2) {
  text-align: left;
}
.pricing-guide tbody th {
  width: 32%;
  white-space: nowrap;
}
.pricing-guide tbody tr:last-child th,
.pricing-guide tbody tr:last-child td {
  border-bottom: none;
}
.pricing-guide tbody tr:nth-child(even) {
  background: rgba(230, 244, 250, 0.45);
}
.pricing-guide th {
  font-weight: 700;
  color: var(--ink);
}
.pricing-guide .pricing-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .pricing-guide col.col-service,
  .pricing-guide col.col-details,
  .pricing-guide col.col-from {
    width: auto;
  }
}

.testimonials {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
}
.testimonials .container {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(15, 142, 195, 0.18), transparent 55%);
  pointer-events: none;
}
.testimonials .testimonial-intro {
  margin: 0 auto;
  color: var(--muted);
  max-width: 640px;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(227, 246, 252, 0.9));
  border-radius: 24px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(15, 142, 195, 0.14);
  box-shadow: 0 22px 38px rgba(10, 63, 92, 0.14);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 46px rgba(10, 63, 92, 0.18);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 28px;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(15, 142, 195, 0.15);
  line-height: 1;
}
.testimonial-rating {
  display: inline-flex;
  gap: 2px;
  font-size: 1.1rem;
  color: #f4b400;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card figcaption {
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 700;
}

.form-status {
  margin: 18px 0 0;
  color: var(--muted);
  min-height: 1.3em;
}
.form-status.ok { color: #216e3a; }
.form-status.err { color: #9b2c2c; }

.site-footer {
  padding: 36px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 32px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .nav .btn {
    padding: 10px 18px;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    flex-wrap: wrap;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .hero {
    padding-top: 64px;
  }
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .contact-form .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}
