:root {
  --primary: #0F2742;
  --primary-dark: #091A2D;
  --secondary: #2F6F9F;
  --accent: #2FA66A;
  --accent-dark: #248657;
  --light-bg: #F5F7FA;
  --white: #FFFFFF;
  --text: #1F2933;
  --muted: #667085;
  --border: #D9E2EC;
  --shadow: 0 18px 45px rgba(15, 39, 66, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

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

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
}
.site-logo {
  display: block;
  width: 292px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 520px) {
  .site-logo {
    width: 225px;
  }
}


.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
  letter-spacing: -0.05em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  color: var(--primary);
  font-size: 0.96rem;
}

.logo-text span {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.08rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover { color: var(--secondary); }

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--accent);
  border-radius: 999px;
}

.nav-cta:hover { background: var(--accent-dark); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 111, 159, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 55%, #eef5fa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: rgba(47, 166, 106, 0.10);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  color: var(--primary);
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p { margin-top: 0; }

.hero-subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(47, 166, 106, 0.24);
}

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

.btn-secondary,
.btn-outline {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 24px rgba(15, 39, 66, 0.08);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.status-card {
  padding: 18px;
  background: var(--primary);
  border-radius: 20px;
}

.status-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.status-row:last-child { border-bottom: 0; }
.status-row strong { color: var(--white); }

.status-dot {
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(47, 166, 106, 0.16);
}

.network-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.node {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--primary);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 800;
}

.node-main {
  grid-column: span 2;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.trust-strip {
  padding: 22px 0;
  background: var(--primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.section { padding: 88px 0; }
.section-muted { background: var(--light-bg); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.process-step,
.pricing-card,
.highlight-box,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 39, 66, 0.06);
}

.service-card { padding: 28px; }

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--secondary);
  border-radius: 14px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card p,
.process-step p,
.pricing-card p,
.highlight-box p {
  color: var(--muted);
}

.split-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.8rem;
}

.highlight-box {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(47, 111, 159, 0.06), rgba(47, 166, 106, 0.06)),
    var(--white);
}

.text-link {
  color: var(--secondary);
  font-weight: 800;
}

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

.process-step { padding: 26px; }

.process-step span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 30px;
}

.pricing-card.featured {
  border-color: rgba(47, 166, 106, 0.45);
  box-shadow: 0 18px 50px rgba(47, 166, 106, 0.13);
  transform: translateY(-8px);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: rgba(47, 166, 106, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-subtitle { min-height: 52px; }

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.cta-band {
  padding: 64px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 166, 106, 0.26), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  padding: 22px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(47, 111, 159, 0.16);
  border-color: var(--secondary);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.site-footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--primary-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-logo .logo-text strong,
.footer-logo .logo-text span {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.footer-links a:hover { color: var(--white); }

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 111, 159, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 55%, #eef5fa 100%);
}

.simple-card {
  max-width: 680px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.simple-card .logo { margin-bottom: 34px; }
.simple-card h1 { margin-bottom: 14px; }

.simple-card p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero { padding-top: 72px; }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured { transform: none; }

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

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }

  .section { padding: 64px 0; }
  .hero { padding: 58px 0 60px; }

  .services-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn { text-align: center; }
  .hero-card { padding: 16px; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* SEO service page additions */
.service-hero {
  padding: 82px 0 66px;
  background:
    radial-gradient(circle at 82% 8%, rgba(47, 111, 159, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 56%, #eef5fa 100%);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs a { color: var(--secondary); }

.service-hero h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
}

.service-hero .hero-subtitle { max-width: 780px; }

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.content-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 39, 66, 0.06);
}

.content-card + .content-card { margin-top: 22px; }

.sidebar-card {
  position: sticky;
  top: 98px;
  padding: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar-card h3 { color: var(--white); }
.sidebar-card p { color: rgba(255,255,255,.78); }
.sidebar-card .btn { width: 100%; margin-top: 10px; }

.link-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.link-list a {
  display: block;
  padding: 12px 14px;
  color: var(--primary);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 800;
}

.link-list a:hover { border-color: var(--secondary); color: var(--secondary); }

.service-card-link {
  display: block;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(47,111,159,.35);
  box-shadow: var(--shadow);
}

.card-link-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--secondary);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.faq-item h3 { font-size: 1rem; }
.faq-item p { margin-bottom: 0; color: var(--muted); }

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-area-list span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 800;
  font-size: .92rem;
}

@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
