:root {
  --ink: #13201b;
  --muted: #596861;
  --paper: #fbfcf8;
  --soft: #eef4ed;
  --line: #dce7df;
  --green: #12684a;
  --green-dark: #0b4e38;
  --gold: #d39b2f;
  --blue: #1d5c8f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(19, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--green-dark);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px) 42px;
}

.hero-solo {
  grid-template-columns: minmax(0, 900px);
  padding-bottom: 28px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.trust-row {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.hero-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.status-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 78, 56, 0.86);
  backdrop-filter: blur(10px);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  margin-top: 4px;
  opacity: 0.86;
}

.metrics,
.section,
.process,
.compliance-preview,
.trust-section,
.contact-section,
.faq {
  padding-inline: clamp(18px, 5vw, 72px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics div {
  padding: 22px;
  background: var(--white);
}

.metrics strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.45rem;
}

.metrics span {
  color: var(--muted);
}

.section,
.process,
.trust-section,
.faq {
  padding-top: clamp(60px, 8vw, 96px);
}

.compliance-preview {
  padding-top: clamp(38px, 6vw, 72px);
}

.compliance-preview .hero-panel {
  max-width: 980px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.center-heading {
  max-width: none;
  text-align: center;
}

.center-heading .eyebrow {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  text-transform: none;
}

.center-heading h2 {
  max-width: 760px;
  margin: 12px auto 0;
}

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

.service-card,
.pricing-grid article,
.steps div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card p,
.steps p,
.pricing p,
.pricing li,
.contact-section p,
details p,
.site-footer p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-link:hover,
.whatsapp-float:hover,
.enquiry-float:hover {
  background: var(--green-dark);
}

.process {
  padding-bottom: clamp(42px, 6vw, 72px);
}

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

.process-flow article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -15px;
  z-index: 2;
  width: 28px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(0 30%, 62% 30%, 62% 0, 100% 50%, 62% 100%, 62% 70%, 0 70%);
}

.process-flow strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

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

.trust-section {
  padding-bottom: clamp(60px, 8vw, 96px);
}

.trust-section .metrics {
  margin: 0 0 18px;
}

.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card,
.blog-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.testimonial-card p {
  margin-top: 0;
  color: var(--ink);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--green-dark);
}

.testimonial-card span,
.blog-grid p {
  color: var(--muted);
}

.blog-section {
  padding-bottom: clamp(60px, 8vw, 96px);
  background: var(--soft);
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.pricing {
  padding-bottom: clamp(60px, 8vw, 96px);
  background: var(--soft);
}

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

.pricing-grid article {
  padding: 26px;
}

.pricing-grid .featured {
  border-color: rgba(18, 104, 74, 0.35);
  box-shadow: var(--shadow);
}

.pricing ul {
  padding-left: 18px;
}

.pricing a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 36px;
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: clamp(60px, 8vw, 96px);
  color: var(--white);
  background: var(--green-dark);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
}

.faq {
  padding-bottom: clamp(60px, 8vw, 96px);
}

details {
  max-width: 900px;
  margin-bottom: 12px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.whatsapp-float,
.enquiry-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(19, 32, 27, 0.22);
  font-weight: 900;
}

.whatsapp-float {
  background: #178d58;
}

.enquiry-float {
  background: var(--blue);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.business-registration-hero {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
  text-align: center;
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(22px, 4vw, 40px);
}

.business-registration-hero .hero-text,
.business-registration-hero .service-intro {
  margin-inline: auto;
}

.business-registration-hero .hero-actions,
.business-registration-hero .button {
  justify-self: center;
}

.service-intro {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-hero .button {
  margin-top: 24px;
}

.service-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-summary ul,
.detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

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

.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.registration-option-grid,
.advantage-grid {
  display: grid;
  gap: 14px;
}

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

.advantage-grid {
  grid-template-columns: repeat(3, 1fr);
}

.registration-option-grid a,
.advantage-grid div {
  display: flex;
  min-height: 76px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 900;
}

.registration-option-grid a:hover {
  border-color: rgba(18, 104, 74, 0.42);
  box-shadow: var(--shadow);
}

.registration-detail-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.registration-page .registration-detail-hero {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.registration-page .registration-detail-hero .hero-text {
  margin-inline: auto;
}

.registration-page .registration-detail-hero .hero-actions {
  justify-content: center;
}

.registration-page .service-summary {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.registration-page .detail-card h3 {
  text-align: center;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(18, 104, 74, 0.3);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
}

.package-card strong {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.package-card p,
.package-card li {
  color: var(--muted);
}

.package-card ul {
  margin: 0;
  padding: 20px 20px 20px 38px;
  border-radius: 8px;
  background: var(--soft);
}

.package-card .button {
  grid-column: 1 / -1;
  width: fit-content;
  justify-self: center;
}

.detail-section,
.package-section,
.advantages-section,
.reviews-section {
  padding-top: clamp(38px, 6vw, 70px);
}

.advantage-grid div {
  justify-content: center;
  min-height: 92px;
  text-align: center;
  color: var(--white);
  background: var(--green);
}

.service-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(50px, 7vw, 80px) clamp(18px, 5vw, 72px);
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.service-contact p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1060px) {
  .service-grid,
  .process-flow,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow article:not(:last-child)::after {
    display: none;
  }

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

  .service-hero,
  .detail-grid,
  .package-card,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }

  .hero-panel img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 65px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metrics,
  .pricing-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-inline: 18px;
  }

  .service-grid,
  .process-flow,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .service-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-actions {
    left: 18px;
    right: 18px;
  }

  .service-contact .button,
  .whatsapp-float,
  .enquiry-float {
    width: calc(100% - 36px);
  }

  .whatsapp-float,
  .enquiry-float {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.28rem;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 300px;
  }
}
