/* =========================================================
   NDIS ABOUT PAGE
   Bootstrap 5 + custom styling
   No header or footer styles included.
========================================================= */

:root {
  --ndis-purple: var(--purple, #702671);
  --ndis-purple-dark: var(--purple-900, #4e1a50);
  --ndis-purple-deep: #27102d;
  --ndis-purple-soft: var(--purple-50, #f6eef7);
  --ndis-green: var(--green, #80bd42);
  --ndis-green-dark: var(--green-700, #6ba332);
  --ndis-green-soft: var(--green-50, #f1f9e8);
  --ndis-text: var(--ink, #1b1420);
  --ndis-muted: var(--body, #44394a);
  --ndis-border: var(--line, #eae1ec);
  --ndis-white: #ffffff;
  --ndis-bg: var(--bg-soft, #fbf8fc);
  --ndis-shadow: 0 18px 45px rgba(48, 20, 52, 0.10);
  --ndis-radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  color: var(--ndis-text);
  background: var(--ndis-white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.about-page,
.about-page * {
  box-sizing: border-box;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p {
  margin-top: 0;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  color: var(--ndis-text);
  letter-spacing: -0.03em;
}

.about-page p {
  color: var(--ndis-muted);
}

.section-space {
  padding: 92px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ndis-purple-soft);
  color: var(--ndis-purple);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.section-label-green {
  background: var(--ndis-green-soft);
  color: var(--ndis-green-dark);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.about-story h2 {
  margin-bottom: 16px;
  font-size: clamp(29px, 3vw, 35px);
  font-weight: 700;
  line-height: 45px;
}

.section-heading h2 span,
.about-story h2 span,
.about-cta h2 span {
  color: var(--ndis-purple);
}

.section-heading > p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-page .btn {
  min-height: 48px;
  padding: 12px 21px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s ease;
}

.about-page .btn-green {
  border-color: var(--ndis-green);
  background: var(--ndis-green);
  color: #193307;
  box-shadow: 0 10px 25px rgba(134, 200, 63, 0.22);
}

.about-page .btn-green:hover {
  border-color: var(--ndis-green-dark);
  background: var(--ndis-green-dark);
  color: var(--ndis-white);
  transform: translateY(-2px);
}

.about-page .btn-light-purple {
  border-color: var(--ndis-white);
  background: var(--ndis-white);
  color: var(--ndis-purple);
}

.about-page .btn-light-purple:hover {
  border-color: var(--ndis-green);
  background: var(--ndis-green);
  color: #173006;
  transform: translateY(-2px);
}

.about-page .btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.08);
  color: var(--ndis-white);
}

.about-page .btn-outline-light-custom:hover {
  border-color: var(--ndis-white);
  background: var(--ndis-white);
  color: var(--ndis-purple);
  transform: translateY(-2px);
}


/* =========================================================
   ABOUT HERO + FORM
========================================================= */

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0 90px;
  color: var(--ndis-white);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 13% 18%, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(112deg, #7e3280 0%, var(--ndis-purple) 52%, var(--ndis-purple-dark) 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 10px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(11deg);
}

.hero-shape::before,
.hero-shape::after {
  content: "";
  position: absolute;
  left: 25px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.hero-shape::before {
  top: 28px;
  width: 42%;
  height: 10px;
}

.hero-shape::after {
  top: 50px;
  width: 68%;
  height: 7px;
}

.hero-shape-one {
  width: 340px;
  height: 180px;
  right: -55px;
  top: -55px;
}

.hero-shape-two {
  width: 315px;
  height: 175px;
  right: 7%;
  bottom: 40px;
  transform: rotate(-10deg);
}

.hero-shape-three {
  width: 270px;
  height: 150px;
  right: -70px;
  bottom: -30px;
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 999px;
  color: var(--ndis-white);
  background: rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ndis-green);
  box-shadow: 0 0 0 4px rgba(128,189,66,0.15);
}

.about-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--ndis-white);
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.about-hero h1 span {
  display: block;
  color: #c7ff78;
}

.hero-copy {
  max-width: 660px;
  margin: 0 0 15px;
  color: rgba(255,255,255,0.90) !important;
  font-size: 16px;
  line-height: 1.68;
}

.hero-copy-secondary {
  color: rgba(255,255,255,0.72) !important;
}

.hero-actions {
  margin-top: 28px;
}

.about-hero .btn {
  min-height: 51px;
  padding: 13px 25px;
  border-radius: 999px;
}

.about-anchor {
  position: absolute;
  margin-top: -100px;
}

.hero-form-card {
  position: relative;
  z-index: 4;
  max-width: 475px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 16px;
  background: var(--ndis-white);
  box-shadow: 0 28px 70px rgba(25,7,29,0.30);
}

.about-form-title {
  padding: 22px 24px 13px;
  color: #0f0b10;
  background: var(--ndis-white);
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.about-form-ribbon {
  padding: 10px 20px;
  color: var(--ndis-white);
  background: var(--ndis-purple);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-form-body {
  padding: 20px 28px 25px;
}

.hero-form-card form {
  display: grid;
  gap: 10px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid #ddd5df;
  border-radius: 9px;
  background: #f8f8f8;
  color: var(--ndis-text);
  font-size: 13px;
  box-shadow: none;
}

.hero-form-card textarea.form-control {
  min-height: 108px;
  resize: vertical;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: rgba(112,38,113,0.55);
  background: var(--ndis-white);
  box-shadow: 0 0 0 4px rgba(112,38,113,0.08);
}

.hero-form-card ::placeholder {
  color: #6f6872;
}

.about-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 51px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--ndis-white);
  background: var(--ndis-green-dark);
  box-shadow: 0 12px 25px rgba(107,163,50,0.20);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.about-form-submit:hover {
  background: var(--ndis-green);
  box-shadow: 0 16px 30px rgba(107,163,50,0.27);
  transform: translateY(-2px);
}

.about-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 1px;
  color: #8c828f;
  font-size: 10px;
  line-height: 1.4;
}

.about-form-note i {
  color: var(--ndis-green-dark);
}

/* =========================================================
   STORY
========================================================= */

.about-story {
  background: var(--ndis-white);
}

.about-story p {
  margin-bottom: 15px;
  font-size: 15px;
}

.story-tags {
  margin-top: 25px;
}

.story-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid var(--ndis-border);
  border-radius: 999px;
  background: #fbf8fc;
  color: #564d59;
  font-size: 12px;
  font-weight: 600;
}

.story-tags i {
  color: var(--ndis-green-dark);
}

.story-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--ndis-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(134,200,63,0.15), transparent 31%),
    linear-gradient(145deg, #f8f0fa, #f0f8e9);
  box-shadow: var(--ndis-shadow);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(104,40,112,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104,40,112,0.09) 1px, transparent 1px);
  background-size: 36px 36px;
}

.story-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(87%, 480px);
  max-height: 90%;
  object-fit: contain;
  transform: translateX(-50%);
  z-index: 2;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 13px;
  border: 1px solid rgba(104,40,112,0.12);
  border-radius: 13px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 13px 30px rgba(47,23,51,0.11);
  backdrop-filter: blur(7px);
}

.floating-card-one {
  top: 55px;
  left: 28px;
}

.floating-card-two {
  right: 25px;
  bottom: 54px;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 10px;
  background: var(--ndis-purple-soft);
  color: var(--ndis-purple);
  font-size: 18px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--ndis-text);
  font-size: 13px;
}

.floating-card small {
  color: var(--ndis-muted);
  font-size: 10px;
}


/* =========================================================
   DIFFERENCE
========================================================= */

.about-difference {
  background: var(--ndis-purple-soft);
}

.difference-card {
  display: flex;
  gap: 15px;
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(104,40,112,0.10);
  border-radius: 14px;
  background: var(--ndis-white);
  box-shadow: 0 7px 22px rgba(57,27,61,0.035);
  transition: 0.25s ease;
}

.difference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104,40,112,0.25);
  box-shadow: 0 14px 34px rgba(57,27,61,0.09);
}

.difference-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: var(--ndis-green-soft);
  color: var(--ndis-green-dark);
  font-size: 19px;
}

.difference-card h3 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.difference-card p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.65;
}


/* =========================================================
   TIMELINE
========================================================= */

.about-timeline {
  background: #f6eef7;
}

.timeline-row {
  position: relative;
}

.timeline-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  padding: 25px 22px;
  border: 1px solid var(--ndis-border);
  border-radius: 15px;
  background: var(--ndis-white);
  transition: 0.25s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 23px;
  width: 54px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--ndis-green);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ndis-shadow);
}

.timeline-year {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ndis-green-soft);
  color: var(--ndis-green-dark);
  font-size: 16px;
  font-weight: 700;
}

.timeline-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--ndis-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.timeline-card p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.65;
}


/* =========================================================
   FULL-WIDTH OUTCOME CTA
========================================================= */

.about-cta {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  padding: 54px 0;
  color: var(--ndis-white);
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.10), transparent 27%),
    linear-gradient(115deg, var(--ndis-purple) 0%, #7e3280 100%);
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 46px 46px;
}

.about-cta::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
}

.about-cta .container,
.about-cta .row {
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  color: var(--ndis-white);
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.about-cta h2 {
  max-width: 540px;
  margin: 0 0 15px;
  color: var(--ndis-white);
  font-size: clamp(34px, 3.3vw, 35px);
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -.045em;
}

.about-cta h2 span {
  color: #c7ff78;
}

.about-cta > .container > .row > div:first-child > p {
  max-width: 540px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.83);
  font-size: 15px;
  line-height: 1.65;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 13px 23px;
  border-radius: 999px;
  color: var(--ndis-white);
  background: var(--ndis-green);
  box-shadow: 0 13px 28px rgba(91,147,35,.30);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.about-cta-button:hover {
  color: var(--ndis-white);
  background: var(--ndis-green-dark);
  box-shadow: 0 17px 34px rgba(91,147,35,.36);
  transform: translateY(-2px);
}

.about-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.about-cta-card:hover {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}

.about-cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--ndis-white);
  background: var(--ndis-green);
  font-size: 20px;
}

.about-cta-card h3 {
  margin: 1px 0 5px;
  color: var(--ndis-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.about-cta-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .story-visual {
    min-height: 480px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 72px 0;
  }

  .story-visual {
    min-height: 460px;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .hero-stats [class*="col-"]:nth-child(2) .stat-item {
    border-right: 0;
  }

}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .section-space {
    padding: 58px 0;
  }

  .story-visual {
    min-height: 400px;
    border-radius: 20px;
  }

  .floating-card {
    min-width: 145px;
    padding: 10px;
  }

  .floating-card-one {
    top: 20px;
    left: 15px;
  }

  .floating-card-two {
    right: 15px;
    bottom: 20px;
  }

  .difference-card {
    padding: 18px;
  }

  .timeline-card {
    min-height: auto;
  }

}

@media (max-width: 575.98px) {
  .section-heading h2,
  .about-story h2 {
    font-size: 28px;
  }

  .hero-points .col-6:last-child {
    width: 100%;
  }

  .hero-point {
    font-size: 12px;
  }

  .stat-item {
    min-height: 96px;
    padding: 18px 10px;
  }

  .stat-item strong {
    font-size: 17px;
  }

  .stat-item span {
    font-size: 10px;
  }

  .story-visual {
    min-height: 350px;
  }

  .floating-card {
    display: none;
  }
}


/* Standalone form protection and home-font consistency */
.about-hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.ndis-about-page .about-page h1,
.ndis-about-page .about-page h2,
.ndis-about-page .about-page h3,
.ndis-about-page .about-page .btn {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
}


    .npwd-about-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    color: var(--body, #44394a);
    background:
        linear-gradient(
            rgba(112, 38, 113, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(112, 38, 113, 0.025) 1px,
            transparent 1px
        ),
        #ffffff;
    background-size: 44px 44px;
    font-family: var(
        --font-display,
        "Plus Jakarta Sans",
        sans-serif
    );
}

.npwd-about-section *,
.npwd-about-section *::before,
.npwd-about-section *::after {
    box-sizing: border-box;
}

/* Left Image */

.npwd-about-visual {
    position: relative;
    max-width: 550px;
    min-height: 525px;
    padding: 20px 25px 30px 0;
}

.npwd-about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    height: 480px;
    border-radius: 0 190px 190px 0;
    box-shadow: 0 28px 65px rgba(45, 20, 49, 0.16);
}

.npwd-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 600ms ease;
}

.npwd-about-visual:hover .npwd-about-image img {
    transform: scale(1.04);
}

.npwd-about-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.npwd-about-shape-top {
    top: 0;
    right: 10px;
    width: 245px;
    height: 130px;
    border-radius: 0 0 0 130px;
    background: var(--purple, #702671);
}

.npwd-about-shape-bottom {
    bottom: 5px;
    left: -90px;
    width: 260px;
    height: 145px;
    border-radius: 0 145px 0 0;
    background: var(--green, #80bd42);
}

.npwd-experience-badge {
    position: absolute;
    z-index: 4;
    right: 5px;
    bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    padding: 15px 18px;
    border: 1px solid rgba(112, 38, 113, 0.12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(45, 20, 49, 0.15);
}

.npwd-experience-badge strong {
    color: var(--purple, #702671);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.npwd-experience-badge span {
    color: var(--body, #44394a);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Right Content */

.npwd-about-content {
    position: relative;
    max-width: 760px;
    padding: 35px 0 20px 30px;
}

.npwd-about-content::before {
    content: "ABOUT";
    position: absolute;
    z-index: -1;
    top: -5px;
    left: 0;
    color: rgba(112, 38, 113, 0.045);
    font-size: clamp(90px, 11vw, 180px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.npwd-about-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--purple, #702671);
    background: var(--purple-50, #f6eef7);
    font-family: var(--font-ui, "Sora", sans-serif);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.npwd-about-content h2 {
    max-width: 720px;
    margin: 0 0 21px;
    color: var(--ink, #1b1420);
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.045em;
}
.npwd-about-content h2 span {
    color: var(--purple, #702671);
}

.npwd-about-content p {
    max-width: 720px;
    margin: 0 0 14px;
    color: var(--body, #44394a);
    font-size: 15px;
    line-height: 1.75;
}

.npwd-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--line, #eae1ec);
}

.npwd-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    padding: 13px 25px;
    border-radius: 999px;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            var(--purple, #702671),
            var(--purple-900, #4e1a50)
        );
    box-shadow: 0 14px 30px rgba(112, 38, 113, 0.22);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.npwd-about-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.npwd-about-btn:hover {
    color: #ffffff;
    box-shadow: 0 18px 37px rgba(112, 38, 113, 0.3);
    transform: translateY(-2px);
}

.npwd-about-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink, #1b1420);
    text-decoration: none;
}

.npwd-contact-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border: 1px solid var(--line, #eae1ec);
    border-radius: 11px;
    color: var(--purple, #702671);
    background: #ffffff;
}

.npwd-contact-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.npwd-about-contact > span:last-child {
    display: flex;
    flex-direction: column;
}

.npwd-about-contact small {
    margin-bottom: 3px;
    color: var(--muted, #7b6f82);
    font-family: var(--font-ui, "Sora", sans-serif);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.npwd-about-contact strong {
    color: var(--ink, #1b1420);
    font-size: 12px;
    font-weight: 750;
}

/* Bottom Cards */

.npwd-about-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 65px;
    padding-top: 45px;
    border-top: 1px solid var(--line, #eae1ec);
}

.npwd-about-info-card {
    position: relative;
    padding: 29px 30px;
    overflow: hidden;
    border: 1px solid var(--line, #eae1ec);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(45, 20, 49, 0.055);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.npwd-about-info-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: var(--green-50, #f1f9e8);
}

.npwd-about-info-card:hover {
    border-color: rgba(112, 38, 113, 0.2);
    box-shadow: 0 18px 40px rgba(45, 20, 49, 0.09);
    transform: translateY(-5px);
}

.npwd-info-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.npwd-info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    color: #ffffff;
    background: var(--purple, #702671);
}

.npwd-info-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.npwd-info-heading h3 {
    margin: 0;
    color: var(--ink, #1b1420);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

.npwd-about-info-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--body, #44394a);
    font-size: 14px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 991.98px) {
    .npwd-about-section {
        padding: 80px 0;
    }

    .npwd-about-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .npwd-about-content {
        max-width: 760px;
        margin: 0 auto;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .npwd-about-section {
        padding: 65px 0;
    }

    .npwd-about-visual {
        min-height: auto;
        padding: 15px 0 55px;
    }

    .npwd-about-image {
        height: 400px;
        border-radius: 24px 110px 24px 24px;
    }

    .npwd-about-bottom {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .npwd-about-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .npwd-about-content h2 {
        font-size: 35px;
    }

    .npwd-about-image {
        height: 330px;
        border-radius: 20px 80px 20px 20px;
    }

    .npwd-about-btn {
        width: 100%;
    }

    .npwd-experience-badge {
        right: 15px;
        bottom: 8px;
    }

    .npwd-about-info-card {
        padding: 24px 20px;
    }
}

/* About hero and CTA responsive refinements */
@media (max-width: 991.98px) {
  .about-hero {
    padding: 70px 0 78px;
  }

  .hero-form-card {
    max-width: 620px;
    margin: 10px auto 0;
  }

  .hero-shape-two {
    right: -80px;
  }

  .about-cta {
    padding: 46px 0;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    padding: 58px 0 66px;
  }

  .about-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-form-body {
    padding: 18px;
  }

  .about-form-title {
    font-size: 25px;
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
    margin-top: 9px;
  }
}

@media (max-width: 575.98px) {
  .about-hero h1 span {
    display: inline;
  }

  .hero-shape {
    opacity: .46;
  }

  .about-cta h2 {
    font-size: 34px;
  }

  .about-cta-button {
    width: 100%;
  }
}

