:root {
  --blue-950: #031f37;
  --blue-900: #062746;
  --blue-800: #0b355d;
  --blue-700: #124b7f;
  --orange: #ff7a00;
  --orange-dark: #df6300;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --soft-blue: #eef5fb;
  --text: #1c2633;
  --muted: #64748b;
  --border: #dbe4ef;
  --shadow: 0 24px 70px rgba(6, 39, 70, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section-pad { padding: 92px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 228, 239, 0.65);
}

.page-header { position: fixed; }


.nav-wrapper {
  height: 94px;
  display: flex;
  align-items: center;
}

.nav-centered { justify-content: center; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 14px 34px rgba(6, 39, 70, 0.08);
  backdrop-filter: blur(14px);
}

.main-nav a { position: relative; white-space: nowrap; }

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
  transition: width 0.22s ease;
}

.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 28px rgba(6, 39, 70, 0.1);
}

.menu-toggle span { width: 20px; height: 2px; background: var(--blue-900); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 132px;
}

.hero::before {
  content: '';
  position: absolute;
  right: -210px;
  top: -190px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 68%);
}

.hero::after {
  content: '';
  position: absolute;
  left: -260px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 75, 127, 0.09), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.74fr;
  gap: 54px;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.hero h1,
.page-hero h1 {
  color: var(--blue-900);
  font-size: clamp(2.8rem, 5.2vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  margin-bottom: 22px;
}

.hero-subtitle {
  color: var(--blue-700);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.45vw, 1.34rem);
  line-height: 1.45;
  margin-bottom: 18px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 690px;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-tags span {
  padding: 9px 14px;
  background: var(--off-white);
  color: var(--blue-900);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.26);
}

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

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--border);
}

.hero-owner {
  display: grid;
  gap: 16px;
  max-width: 430px;
  justify-self: end;
}

.hero-owner-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 430px;
  background: var(--white);
  box-shadow: 0 30px 84px rgba(6, 39, 70, 0.18);
}

.hero-owner-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-stats div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(6, 39, 70, 0.06);
}

.hero-stats strong {
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 900;
}

.hero-stats span {
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.88rem;
}

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-heading h2,
.about h2,
.owner h2,
.contact h2,
.content-copy h2 {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.section-heading p,
.about-text p,
.owner-content p,
.contact p,
.content-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.services { background: var(--white); }

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

.expertise-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(6, 39, 70, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.expertise-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(6, 39, 70, 0.12); }
.expertise-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 1.65rem;
}
.expertise-card h3 { color: var(--blue-900); font-size: 1.2rem; margin-bottom: 10px; }
.expertise-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

.about { background: var(--blue-900); color: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about h2,
.about .about-text p { color: var(--white); }
.about .about-text { display: grid; gap: 18px; }
.about .about-text p { opacity: 0.84; }

.owner { background: var(--off-white); }

.owner-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.owner-media {
  display: grid;
  gap: 18px;
}

.owner-title-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(6, 39, 70, 0.07);
}

.owner-title-card h2 {
  margin: 0 0 4px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.owner-title-card p {
  color: var(--orange);
  font-weight: 900;
}

.owner-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.owner-content p + p { margin-top: 16px; }
.text-link { display: inline-block; color: var(--orange); font-weight: 900; margin-top: 24px; }
.linkedin-link { margin-left: 18px; }

.results { background: var(--white); }

.results-panel {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 34px;
  padding: 54px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.results-panel::after {
  content: '';
  position: absolute;
  right: -110px;
  top: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.2);
}

.compact { margin-bottom: 36px; position: relative; z-index: 1; }
.results-panel h2, .results-panel p { color: var(--white); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.results-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 26px;
}

.number { color: var(--orange); font-weight: 900; font-size: 0.9rem; }
.results-grid h3 { margin: 8px 0 10px; font-size: 1.35rem; }
.results-grid p { opacity: 0.82; }

.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.contact-cta { margin-top: 26px; }

.contact-benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: var(--blue-900);
  font-weight: 800;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-item span {
  display: block;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  color: var(--blue-900);
  font-weight: 800;
  font-size: 1.04rem;
}

.page-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--soft-blue));
  padding-top: 134px;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -170px;
  top: -170px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14), transparent 68%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  align-items: center;
}

.page-accent-card {
  min-height: 320px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: 34px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.page-accent-card span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-accent-card strong {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-logo-panel {
  align-self: center;
  justify-self: end;
  width: min(100%, 470px);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.page-logo-panel img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(6, 39, 70, 0.12));
}

.content-section { background: var(--white); }

.two-column-content {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.content-copy p + p { margin-top: 16px; }
.help-stack { display: grid; gap: 18px; margin-top: 26px; }
.help-stack article { padding: 20px; background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; }
.help-stack h3 { color: var(--blue-900); font-size: 1.12rem; margin-bottom: 8px; }
.help-stack p { font-size: 0.98rem; }
.content-copy .btn { margin-top: 28px; }

.benefit-list-card,
.challenge-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 54px rgba(6, 39, 70, 0.08);
}

.clean-list,
.challenge-list {
  display: grid;
  gap: 15px;
  color: var(--blue-900);
  font-weight: 800;
}

.challenge-card h3 {
  color: var(--blue-900);
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.challenge-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.challenge-list li {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 26px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.93rem;
}

.footer-content a { color: var(--orange); font-weight: 800; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; font-size: 0.86rem; padding-inline: 18px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .nav-wrapper { justify-content: flex-end; }

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

  .main-nav.active { display: flex; }

  .main-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }

  .hero { min-height: auto; }

  .hero-grid,
  .about-grid,
  .owner-grid,
  .contact-grid,
  .page-hero-grid,
  .two-column-content {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 44px; }
  .hero-owner { max-width: 540px; margin: 0 auto; justify-self: center; }
  .page-logo-panel { justify-self: center; min-height: 220px; padding: 8px; }
  .expertise-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .challenge-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .linkedin-link { margin-left: 0; display: block; margin-top: 12px; }
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 68px 0; }
  .hero, .page-hero { padding-top: 104px; }
  .results-panel, .contact-card, .benefit-list-card, .challenge-card { padding: 24px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .expertise-grid, .results-grid, .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { grid-template-columns: 1fr; gap: 4px; }
  .hero-owner-photo, .hero-owner-photo img { min-height: 360px; height: 360px; }
  .owner-media img { min-height: 380px; height: 380px; }
  .expertise-card { min-height: auto; padding: 22px; }
  .page-logo-panel { min-height: 180px; }

  .footer-content { flex-direction: column; align-items: flex-start; }
}

.card-intro,
.card-outro {
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 18px;
}

.card-outro {
  margin-top: 22px;
  margin-bottom: 0;
}

.alt-section {
  background: var(--off-white);
}

.final-cta-section {
  background: var(--white);
}

.final-cta-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 64px);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta-card .eyebrow {
  color: var(--orange);
}

.final-cta-card h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--white);
}

.service-summary-card .eyebrow {
  margin-bottom: 10px;
}

.compact-help-stack {
  gap: 14px;
}

.compact-help-stack article {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
}

.compact-help-stack h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.compact-help-stack p {
  font-size: 0.92rem;
}
