/* =========================================================
   ISHIRIKA INQUBE — Design System
   McKinsey-influenced: editorial rigour, precise type,
   confident white space, structural colour accents.

   Colour key:
     Forest green  (#1a4728) — primary brand
     Lime          (#80cc28) — Community Platforms accent
     Teal          (#1e6b6b) — Climate & Sustainability accent
     Gold          (#c4962a) — Systems Practice accent
   ========================================================= */

:root {
  --ink: #0f1c13;
  --forest: #1a4728;
  --green: #2e7d45;
  --lime: #80cc28;
  --grey: #8f918f;
  --paper: #f5f6f3;
  --line: #dde0db;
  --muted: #617066;
  --white: #ffffff;
  --teal: #1e6b6b;
  --teal-lt: #e8f2f2;
  --teal-mid: #2d8f8f;
  --gold: #c4962a;

  --display: "EB Garamond", "Georgia", "Times New Roman", serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;

  --gutter: 28px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--forest);
}
h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--forest);
}
h3 {
  font-size: 21px;
  color: var(--forest);
}
h4 {
  font-size: 14px;
  color: var(--forest);
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
p {
  margin: 0 0 1.2em;
}

.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin: 0 0 18px;
}
.eyebrow.teal {
  color: var(--teal-mid);
}
.eyebrow.white {
  color: rgba(255, 255, 255, 0.6);
}

.lead {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.35;
  color: var(--forest);
  letter-spacing: -0.01em;
  max-width: 860px;
}
.body-lg {
  font-size: 18px;
  color: var(--muted);
  max-width: 740px;
  line-height: 1.72;
}
.body-md {
  font-size: 16px;
  color: #3a4e42;
  line-height: 1.75;
}

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  height: 34px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.menu a:hover {
  color: var(--green);
}
.menu a.active {
  color: var(--forest);
}
.menu a.active-climate {
  color: var(--teal);
}

.btn-nav {
  padding: 8px 16px;
  border: 1.5px solid var(--forest);
  border-radius: 4px;
  color: var(--forest);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background 0.18s,
    color 0.18s;
  background: none;
  text-decoration: none;
}
.btn-nav:hover {
  background: var(--forest);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--gutter);
  z-index: 19;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  display: block;
}
.mobile-menu a:last-child {
  border-bottom: none;
  border: none;
  background: transparent;
  color: var(--muted);
}
.mobile-menu a.active {
  color: var(--forest);
}

/* ── BUTTONS ── */
.button {
  display: inline-block;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}
.button.primary {
  background: var(--forest);
  color: var(--white);
}
.button.primary:hover {
  background: var(--green);
}
.button.secondary {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.button.secondary:hover {
  background: var(--forest);
  color: var(--white);
}
.button.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.button.ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.button.teal {
  background: var(--teal);
  color: var(--white);
}
.button.teal:hover {
  background: var(--teal-mid);
}

/* ── HERO (home) ── */
.hero {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 108% 50%,
      rgba(128, 204, 40, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 35% 55% at -8% 75%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter) 84px;
  position: relative;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 780px;
}
.hero .hero-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  margin: 0 0 52px;
  max-width: 600px;
  line-height: 1.72;
}

/* ── PILLAR ROW (hero) ── */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px 28px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.pillar:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pillar-accent {
  width: 36px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.pillar-accent.green {
  background: var(--lime);
}
.pillar-accent.teal {
  background: var(--teal-mid);
}
.pillar-accent.gold {
  background: var(--gold);
}
.pillar h3 {
  font-family: var(--display);
  font-size: 21px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}
.pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0 0 20px;
}
.pillar-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
}
.pillar:hover .pillar-link {
  color: rgba(255, 255, 255, 0.85);
}
.pillar-link::after {
  content: "→";
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero.climate {
  background: var(--teal);
  border-bottom-color: transparent;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter) 64px;
}
.page-hero h1 {
  margin-top: 18px;
  margin-bottom: 20px;
}
.page-hero.climate h1 {
  color: var(--white);
}
.page-hero.climate .body-lg {
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

/* ── MAIN WRAPPER ── */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter);
}
.section {
  margin-bottom: 88px;
}
.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 60px;
}

/* ── THREE AREA CARDS (home) ── */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.area-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 30px 30px;
  background: var(--white);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.area-card:hover {
  box-shadow: 0 6px 28px rgba(15, 28, 19, 0.09);
  transform: translateY(-2px);
}
.area-card-bar {
  height: 3px;
  width: 40px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.area-card-bar.green {
  background: var(--lime);
}
.area-card-bar.teal {
  background: var(--teal-mid);
}
.area-card-bar.gold {
  background: var(--gold);
}
.area-card .tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 3px;
  padding: 3px 9px;
  margin-bottom: 16px;
  width: fit-content;
}
.area-card .tag.green {
  color: var(--lime);
  background: rgba(128, 204, 40, 0.1);
}
.area-card .tag.teal {
  color: var(--teal-mid);
  background: rgba(30, 107, 107, 0.1);
}
.area-card .tag.gold {
  color: #a07020;
  background: rgba(196, 150, 42, 0.1);
}
.area-card h2 {
  font-size: 23px;
  margin-bottom: 14px;
}
.area-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.area-card .card-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.18s;
  text-decoration: none;
}
.area-card .card-cta.green {
  color: var(--green);
}
.area-card .card-cta.teal {
  color: var(--teal);
}
.area-card .card-cta.gold {
  color: #8a6010;
}
.area-card:hover .card-cta {
  gap: 10px;
}
.area-card .card-cta::after {
  content: "→";
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}
.why-cell {
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-cell:nth-child(2n) {
  border-right: none;
}
.why-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}
.why-cell h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.why-cell p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ── FOUR-TILE GRID ── */
.grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}
.tile {
  background: var(--white);
  padding: 26px 22px;
  transition: background 0.18s;
}
.tile:hover {
  background: var(--paper);
}
.tile h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.tile p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 50px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.cta-strip p {
  margin: 0;
  max-width: 500px;
  font-size: 15px;
  color: var(--muted);
}
.cta-strip.dark {
  background: var(--forest);
  border-color: var(--forest);
}
.cta-strip.dark h2 {
  color: var(--white);
}
.cta-strip.dark p {
  color: rgba(255, 255, 255, 0.65);
}
.cta-strip.climate {
  background: var(--teal);
  border-color: var(--teal);
}
.cta-strip.climate h2 {
  color: var(--white);
}
.cta-strip.climate p {
  color: rgba(255, 255, 255, 0.68);
}

/* ── CONTENT ROWS ── */
.content-row {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 60px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.content-row h2 {
  font-size: 21px;
  line-height: 1.22;
  padding-top: 4px;
}
.content-row .body-md {
  margin-bottom: 14px;
}
.content-row .body-md:last-child {
  margin-bottom: 0;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.feature-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 3px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: #3a4e42;
}
.feature-list li.teal-accent {
  border-left-color: var(--teal-mid);
}

/* ── CLIMATE CAPABILITY BLOCKS ── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.capability-block {
  background: var(--teal-lt);
  border: 1px solid rgba(30, 107, 107, 0.15);
  border-top: 3px solid var(--teal-mid);
  border-radius: 4px;
  padding: 24px 22px;
}
.capability-block h3 {
  font-size: 17px;
  color: var(--teal);
  margin-bottom: 8px;
}
.capability-block p {
  font-size: 14px;
  color: #2a5050;
  margin: 0;
  line-height: 1.6;
}

/* Partner callout */
.partner-callout {
  background: rgba(30, 107, 107, 0.06);
  border: 1px solid rgba(30, 107, 107, 0.2);
  border-left: 4px solid var(--teal-mid);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 32px 0 0;
}
.partner-callout p {
  margin: 0;
  font-size: 15px;
  color: #2a5050;
  line-height: 1.65;
}
.partner-callout strong {
  color: var(--teal);
}

/* ── GEO TAGS ── */
.geo-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.geo-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green);
  background: rgba(46, 125, 69, 0.08);
  border: 1px solid rgba(46, 125, 69, 0.2);
  border-radius: 3px;
  padding: 4px 11px;
}
.geo-tag.teal {
  color: var(--teal-mid);
  background: rgba(30, 107, 107, 0.08);
  border-color: rgba(30, 107, 107, 0.2);
}

/* ── PRINCIPLE LIST ── */
.principle-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  counter-reset: principles;
}
.principle-list li {
  counter-increment: principles;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.principle-list li::before {
  content: counter(principles, decimal-leading-zero);
  font-family: var(--display);
  font-size: 26px;
  color: var(--lime);
  line-height: 1;
  padding-top: 4px;
}
.principle-list li h3 {
  font-size: 18px;
  margin-bottom: 7px;
}
.principle-list li p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* ── CONTACT ── */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.contact-panel {
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
  padding: 52px;
}
.contact-panel h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.contact-panel .body-lg {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font: inherit;
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.18s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.contact-form select option {
  color: var(--ink);
  background: var(--white);
}
.contact-form .full {
  grid-column: 1 / -1;
}
.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  border-radius: 4px;
  background: var(--lime);
  color: var(--forest);
  padding: 13px 30px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
}
.contact-form button:hover {
  background: #96dd3a;
}

.enquiry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.enquiry-list li {
  font-size: 14px;
  color: var(--muted);
  border-left: 3px solid var(--lime);
  padding-left: 13px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  padding: 40px var(--gutter);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.footer-logo img {
  height: 26px;
  width: auto;
  opacity: 0.65;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer-meta {
  text-align: right;
  line-height: 1.75;
}
.footer-meta a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-meta a:hover {
  color: var(--lime);
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .area-cards {
    grid-template-columns: 1fr;
  }
  .content-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-cell {
    border-right: none;
  }
  .why-cell:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .why-cell:last-child {
    border-bottom: none;
  }
  .grid-four {
    grid-template-columns: 1fr 1fr;
  }
  .contact-two-col {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
  }
  .menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .contact-panel {
    padding: 32px 22px;
  }
  .cta-strip {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .grid-four {
    grid-template-columns: 1fr;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .full {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ==============/ MODAL PART /================ */
/* Modal backdrop */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  padding: 24px;
}

/* Bootstrap JS toggles .in in BS3 */
.modal.in {
  display: block;
}

/* Modal box wrapper */
.modal-dialog {
  width: 100%;
  max-width: 520px;
  margin: 60px auto;
}

/* Modal content */
.modal-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

/* Header */
.modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

/* Close button */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

/* Body */
.modal-body {
  padding: 22px;
}

/* Footer */
.modal-footer {
  padding: 18px 22px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

/* Form styling inside modal */
.modal .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.modal #comp_code {
  width: 100%;
  height: 46px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

.modal #comp_code:focus {
  border-color: #111827;
}

/* Submit button */
.modal-footer button[type="submit"] {
  border: 0;
  background: #28a745;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}