:root {
  --navy-950: #071626;
  --navy-900: #0b2138;
  --navy-800: #12314e;
  --teal-500: #10b6b2;
  --teal-400: #39c9c5;
  --teal-100: #dff8f7;
  --ink: #122033;
  --muted: #5d6b79;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --line: #d9e3e8;
  --shadow: 0 18px 55px rgba(7, 22, 38, .12);
  --radius: 22px;
}

* { 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(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--paper);
  color: var(--navy-950);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 22, 38, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { width: 210px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
nav { display: flex; align-items: center; gap: 26px; }
nav a {
  text-decoration: none;
  color: #eaf4f7;
  font-size: 0.95rem;
  font-weight: 600;
}
nav a:hover, nav a:focus-visible { color: var(--teal-400); }
.nav-cta {
  border: 1px solid rgba(57, 201, 197, .55);
  padding: 9px 14px;
  border-radius: 999px;
}

.hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 20%, rgba(16,182,178,.22), transparent 29%),
    linear-gradient(135deg, #071626 0%, #0b2138 58%, #103b55 100%);
  padding: 105px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-500);
  letter-spacing: .17em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  margin-bottom: 24px;
  letter-spacing: -.055em;
  max-width: 760px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero-lead {
  max-width: 710px;
  color: #dce9ee;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, nav a:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 4px;
}
.button-primary {
  background: var(--teal-500);
  color: #04161e;
  box-shadow: 0 10px 30px rgba(16,182,178,.22);
}
.button-primary:hover { background: var(--teal-400); }
.button-secondary {
  border: 1px solid rgba(255,255,255,.24);
  color: var(--paper);
  background: rgba(255,255,255,.04);
}
.tagline { margin-top: 26px; color: #a8c8d3; font-weight: 700; }

.hero-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 26px 70px rgba(0,0,0,.17);
}
.panel-line { width: 62px; height: 4px; border-radius: 10px; background: var(--teal-500); margin-bottom: 28px; }
.panel-kicker { color: var(--teal-400); font-weight: 800; margin-bottom: 10px; }
.hero-panel h2 { font-size: 2.15rem; }
.hero-panel > p { color: #d7e6eb; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.stat-grid div {
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { color: var(--paper); font-size: .93rem; }
.stat-grid span { color: #9fc2cc; font-size: .78rem; margin-top: 4px; }

.section { padding: 98px 0; }
.section-light { background: var(--mist); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 35px rgba(7,22,38,.05);
}
.service-card.featured { border: 2px solid var(--teal-500); transform: translateY(-8px); box-shadow: var(--shadow); }
.badge {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--navy-950);
  background: var(--teal-100);
  border-radius: 999px;
  padding: 6px 9px;
}
.plan-name { margin: 0 0 4px; font-weight: 800; font-size: 1.25rem; color: var(--navy-900); }
.price { margin: 0 0 14px; color: var(--muted); }
.price strong { font-size: 2.2rem; color: var(--navy-950); }
.price span { font-size: .9rem; }
.service-card > p:not(.plan-name):not(.price) { color: var(--muted); }
.service-card ul { padding-left: 20px; margin-bottom: 0; }
.service-card li { margin-bottom: 10px; }

.project-strip {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--navy-900);
  color: #dbeaf0;
  border-radius: 16px;
}
.project-strip strong { color: var(--teal-400); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}
.difference-copy { font-size: 1.08rem; color: var(--muted); }
.difference-copy p:first-child { color: var(--navy-950); font-weight: 700; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-row span {
  background: var(--teal-100);
  color: #0d6866;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 64px;
  align-items: center;
}
.portrait-frame {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #d9e3e8;
}
.portrait-frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 18%; }
.role { margin-top: -10px; font-weight: 800; color: var(--teal-500); }
.about-copy > p:not(.eyebrow):not(.role) { color: var(--muted); }
blockquote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--teal-500);
  background: var(--paper);
  color: var(--navy-900);
  font-weight: 600;
}

.cta-section {
  padding: 88px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 15%, rgba(16,182,178,.22), transparent 28%),
    var(--navy-950);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: center;
}
.cta-grid > div:first-child > p:last-child { color: #c6dbe3; max-width: 700px; }
.eyebrow-on-dark { color: var(--teal-400); }
.contact-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-label { color: var(--teal-500); font-weight: 800; }
.contact-note {
  color: #687787;
  background: var(--mist);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .92rem;
}
.full-width { width: 100%; }
.microcopy { color: var(--muted); font-size: .86rem; text-align: center; margin-bottom: 0; }

.site-footer {
  background: #040d16;
  color: #a9bdc7;
  padding: 28px 0;
  font-size: .9rem;
}
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .split, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 78px; }
  .hero-grid { gap: 44px; }
  .cards { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .about-grid { gap: 36px; }
  .portrait-frame { max-width: 520px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { width: 175px; }
  .nav-wrap { min-height: 70px; }
  .hero { padding: 66px 0 72px; }
  .section { padding: 72px 0; }
  .hero-panel { padding: 24px; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-wrap { flex-direction: column; gap: 4px; }
}


.pricing-note {
  margin: 18px 4px 0;
  color: var(--muted);
  font-size: .92rem;
}

.credibility-section {
  background: var(--paper);
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.credibility-card {
  min-height: 155px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}
.credibility-card strong,
.credibility-card span {
  display: block;
}
.credibility-card strong {
  color: var(--navy-900);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.credibility-card span {
  color: var(--muted);
  font-size: .93rem;
}

.faq-section {
  background: var(--paper);
}
.faq-list {
  max-width: 880px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.05rem;
}
.faq-list details p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 760px;
}

.contact-email {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.contact-form label {
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy-900);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9d7de;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(16,182,178,.2);
  border-color: var(--teal-500);
}
.contact-form button {
  border: 0;
  cursor: pointer;
  margin-top: 6px;
}
.form-note {
  color: var(--muted);
  font-size: .82rem;
  margin: 2px 0 0;
}

@media (max-width: 900px) {
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .credibility-grid { grid-template-columns: 1fr; }
}
