:root {
  --ink: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.12);

  --blue1: #3b5bff;
  --blue2: #6a8cff;
  --blue3: #2f46ff;

  --shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  --radius: 18px;
}

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

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #f6f7fb;
  color: var(--ink);
  line-height: 1.5;
}

/* Header */

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 220ms ease, border 220ms ease;
}

.headerInner {
  max-width: 1200px;
  margin: 0 auto;
  height: 88px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 220ms ease;
}

.siteHeader.compressed {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.siteHeader.compressed .headerInner {
  height: 64px;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.navCta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  color: white;
}

.siteHeader.compressed .navCta {
  padding: 0.45rem 0.9rem;
}

.menuBtn {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
}

.menuBtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue1) 45%, var(--blue2) 100%);
  color: white;
}

.heroInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.heroLeft h1 {
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.heroLeft p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.heroActions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.primaryBtn {
  display: inline-block;
  background: #0b1223;
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
}

.ghostBtn {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Curved image block */

.heroRight {
  display: flex;
  justify-content: flex-end;
}

.heroMedia {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.heroMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 20% 20%, rgba(255,255,255,0.18), transparent 55%);
}

.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Curved cutout at bottom of hero */

.heroCurve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: #f6f7fb;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}


@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.7rem;
  }

  .nav.open {
    display: flex;
  }

  .menuBtn {
    display: block;
  }

  .headerInner {
    height: 72px;
  }

  .siteHeader.compressed .headerInner {
    height: 58px;
  }

  .heroCurve {
    height: 90px;
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
  }
}

.serviceCard ul {
  list-style: none;
  padding-left: 0;
}

.serviceCard li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-weight: 500;
}

.serviceCard li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #64748b; /* subtle muted dash */
}
/* ===== Conversion Section ===== */

.conversion {
  background: linear-gradient(
    135deg,
    #1e2b6b 0%,
    #2f46ff 45%,
    #6a8cff 100%
  );
  color: white;
  padding: 6rem 1.5rem 6.5rem;
}

.conversionInner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.conversionLeft h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.conversionIntro {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.2rem;
}

.conversionPoints {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.4rem;
}

.conversionItem {
  display: flex;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.1rem;
}

.conversionItem .icon {
  font-size: 1.25rem;
  line-height: 1;
}

.conversionItem h4 {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.conversionItem p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Actions */

.conversionActions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Right side cards */

.conversionRight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.statCard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1.4rem;
}

.statCard h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.statCard p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.auditCard {
  grid-column: span 2;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.4rem;
}

.auditCard span {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

.auditCard p {
  margin-bottom: 0.75rem;
}

.auditCard a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

/* Mobile */

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

  .conversionLeft h2 {
    font-size: 2rem;
  }

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

  .auditCard {
    grid-column: auto;
  }
}


/* ===== Examples Section ===== */

.examples {
  position: relative;
  background: #ffffff;
  padding: 2rem 1.5rem 6.5rem;
}

/* Curved top edge */
.examples::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

.examplesInner {
  max-width: 1200px;
  margin: 0 auto;
}

.examplesTitle {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.5rem;
}

/* Images */

.examplesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.exampleCard {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.exampleCard img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */

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

  .examples {
    padding: 4.5rem 1.25rem 5rem;
  }

  .examples::before {
    top: -60px;
    height: 60px;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
  }
}
.examplesHeader {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 0rem;
}

.examplesTitle {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.examplesSubtitle {
  font-size: 1rem;
  color: #475569;
}

.exampleCard {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
}

/* ===== FEATURED SECTION FIX ===== */

.featured {
  /* force same font as rest of site */

  /* yellow–green credibility gradient */
  background: linear-gradient(
    135deg,
    #fdb857 0%,
    #ffba61 45%,
    #f56809 100%
  );

  /* make it thin */
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}

.featuredTitle {
  /* bigger, consistent typography */
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;

  /* same color logic as rest of site */
  color: #ffffff;
}

.featuredLogo {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.featuredLogo img {
  max-width: 80%;
  height: auto;
  display: block;
}

/* ===== FINAL CTA ===== */

.ctaFinal {
  background: linear-gradient(
    135deg,
    #3b5bff 0%,
    #4f6ef7 45%,
    #6a8cff 100%
  );
  padding: 4.5rem 1.5rem 5rem;
  text-align: center;
}

.ctaFinalInner {
  max-width: 720px;
  margin: 0 auto;
}

.ctaFinal h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.ctaFinal p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
}

.ctaFinalActions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaPrimary {
  background: #0f172a;
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.ctaSecondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

/* ===== FOOTER ===== */

.siteFooter {
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.75rem 1.5rem;
  font-size: 0.9rem;
}

.siteFooterInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.siteFooter a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.siteFooter a:hover {
  text-decoration: underline;
}

.footerLeft,
.footerCenter,
.footerRight {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: #475569;
}

/* Mobile */

@media (max-width: 700px) {
  .siteFooterInner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   OFFERINGS SECTION (ISOLATED)
========================================================= */

.offerings {
  background: #f6f7fb;
  padding: 4rem 1.5rem 4.5rem;
}

.offeringsInner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.offeringsHeader {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.offeringsHeader h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.offeringsHeader p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Cards */

.offeringsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}


.offeringCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.offeringCard h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: var(--ink);
}

.offeringCard ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.1rem;
}

.offeringCard li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-weight: 500;
}

.offeringCard li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #64748b;
}

.offeringLink {
  font-weight: 800;
  color: var(--blue1);
  text-decoration: none;
}

/* Mobile */

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

/* =========================================================
   PRICING SECTION
========================================================= */

.pricing {
  background: linear-gradient(135deg, #2f46ff 0%, #3b5bff 45%, #6a8cff 100%);

  padding: 4.5rem 1.5rem 5rem;
}

.pricingInner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricingHeader {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.pricingHeader h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

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

/* Cards */

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricingCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.pricingCard h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* Feature list */

.pricingCard ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricingCard li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-weight: 500;
}

.pricingCard li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #64748b;
}

/* CTA */

.pricingCta {
  margin-top: auto;
  text-align: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  color: white;
  text-decoration: none;
  font-weight: 700;
}

/* Mobile */

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

.pricingHeader h2,
.pricingHeader p {
  color: #ffffff;
}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq {
  background: #ffffff;
  padding: 4rem 1.5rem 4.5rem;
}

.faqInner {
  max-width: 900px;
  margin: 0 auto;
}

.faqHeader {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faqHeader h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
}

.faqList {
  display: grid;
  gap: 1.5rem;
}

.faqItem {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

.faqItem h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.faqItem p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about {
  background: linear-gradient(
    180deg,
    rgba(59, 91, 255, 0.05),
    rgba(59, 91, 255, 0.02)
  );
  padding: 6rem 1.5rem;
}

.aboutInner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

/* Text */

.aboutEyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue1);
  margin-bottom: 0.75rem;
}

.aboutText h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.aboutText p {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1rem;
}

/* Photo */

.aboutPhotoWrap {
  position: relative;
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  justify-self: end;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.aboutPhotoWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 20% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.aboutPhotoWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LinkedIn hover */

.linkedinOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 70, 255, 0.85),
    rgba(106, 140, 255, 0.85)
  );
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  text-decoration: none;

  opacity: 0;
  transition: opacity 220ms ease;
}

.aboutPhotoWrap:hover .linkedinOverlay {
  opacity: 1;
}

/* Mobile */

@media (max-width: 900px) {
  .aboutInner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aboutPhotoWrap {
    justify-self: center;
  }

  .aboutText p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================================================
   PROCESS / TRUST SECTION
========================================================= */

.process {
  background: #ffffff;
  padding: 5.5rem 1.5rem;
}

.processInner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */

.processHeader {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.processHeader h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

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

/* Grid */

.processGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Steps */

.processStep {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.stepNumber {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue1);
  margin-bottom: 0.6rem;
}

.processStep h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.processStep p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Mobile */

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

  .processHeader h2 {
    font-size: 1.9rem;
  }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact {
  background: #f6f7fb;
  padding: 5.5rem 1.5rem 6rem;
}

.contactInner {
  max-width: 520px;
  margin: 0 auto;
}

.contactHeader {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contactHeader h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

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

/* Form */

.contactForm {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.formGroup label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.formGroup textarea {
  resize: vertical;
}

.contactBtn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.formNote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* =========================
   PRIVACY POLICY PAGE
   ========================= */

.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.privacy h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.privacy .updated {
  font-size: 0.9rem;
  color: #9aa0b4;
  margin-bottom: 2.5rem;
}

.privacy h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
}

.privacy li {
  margin-bottom: 0.4rem;
}

.privacy a {
  color: inherit;
  text-decoration: underline;
}










