:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f1f4f9;
  --text: #172033;
  --muted: #5f6b85;
  --line: #dfe5f0;
  --primary: #0d3b66;
  --primary-2: #164f86;
  --accent: #d6b25e;
  --accent-dark: #be9a48;
  --dark: #0d1525;
  --shadow: 0 18px 50px rgba(11, 25, 52, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-phone {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 229, 240, 0.8);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary {
  background: var(--accent);
  color: #1d1d1d;
  box-shadow: 0 10px 24px rgba(214, 178, 94, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--primary-2);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--primary);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 94, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.hero-content h1 {
  margin: 18px 0 20px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-points {
  margin: 28px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-phone {
  color: var(--muted);
  font-size: 16px;
}

.hero-phone a {
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

.hero-card .card,
.callout,
.service-card,
.reassurance-card,
.hospital-item {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card .card {
  border-radius: 28px;
  padding: 24px;
}

.card-image,
.about-image,
.electric-image,
.section-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.card-image {
  height: 220px;
  margin-bottom: 18px;
}

.card-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
}

.card-list {
  list-style: none;
  margin: 22px 0 24px;
  display: grid;
  gap: 12px;
}

.card-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 600;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

section {
  padding: 84px 0;
}

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

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.section-heading.center h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 68ch;
}

.intro-grid,
.about-grid,
.electric-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.intro-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
}

.callout {
  border-radius: var(--radius);
  padding: 28px;
}

.callout-label {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.callout-phone {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
  white-space: nowrap;
}

.callout-text {
  color: var(--muted);
  margin-bottom: 22px;
}

.section-image {
  margin-bottom: 26px;
}

.section-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}


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

.service-card,
.reassurance-card {
  border-radius: var(--radius);
  padding: 26px;
}

.service-card h3,
.reassurance-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p,
.reassurance-card p {
  color: var(--muted);
}

.center {
  text-align: center;
}

.cta-inline {
  margin-top: 28px;
}

.cta-inline p {
  margin-bottom: 14px;
  color: var(--muted);
}

.cta-inline a {
  font-weight: 800;
}

.hospital-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hospital-item {
  border-radius: 16px;
  padding: 18px 18px;
  font-weight: 700;
}

.about {
  background: linear-gradient(180deg, #f3f6fb 0%, #eef3f8 100%);
}

.about-content p,
.electric-content p,
.seo-columns p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 17px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 26px;
}

.about-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
}

.about-image,
.electric-image {
  height: 460px;
  box-shadow: var(--shadow);
}

.electric {
  background: #fff;
}

.seo-text {
  background: linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
}

.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(13, 59, 102, 0.96), rgba(9, 23, 44, 0.96)),
    linear-gradient(180deg, #0d3b66 0%, #09172c 100%);
  color: #fff;
}

.contact-box {
  text-align: center;
}

.contact h2 {
  margin: 16px auto 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.contact p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-phone {
  margin: 22px 0;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  white-space: nowrap;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  background: #0a1220;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
  white-space: nowrap;
}

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1d1d1d;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(214, 178, 94, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.floating-call:hover {
  background: var(--accent-dark);
}

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .about-grid,
  .electric-grid,
  .footer-grid,
  .seo-columns {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1,
  .section-heading h2,
  .contact h2 {
    max-width: none;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 66px 0;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .nav {
    min-height: 72px;
  }

  .hero {
    padding: 58px 0 54px;
  }

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

  .cards-grid,
  .reassurance-grid,
  .hospital-list {
    grid-template-columns: 1fr;
  }

  .callout-phone,
  .card h2,
  .contact-phone {
    font-size: 28px;
    white-space: normal;
  }

  .section-image img,
  .about-image,
  .electric-image,
  .card-image {
    height: 240px;
  }

  .floating-call {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    white-space: normal;
  }

@media (max-width: 768px) {
  .section-image img {
    height: 220px;
  }
}
}
/* ===== LOGO HEADER ===== */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* ===== LOGO FOOTER ===== */
.footer-logo {
  display: inline-block;
  background: #000;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.footer-logo img {
  display: block;
  width: 160px;
  height: auto;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:first-child p {
  max-width: 320px;
}



