

/* =====================================================
   EXTRACTED FROM index.html
   Source: uploaded index.html
   Note: Inline style attributes remain in HTML for now.
===================================================== */

/* =====================================================
   START PRIMARY SITE STYLING

   Purpose:
   Defines core layout, brand colours, typography,
   cards, buttons, navigation, responsive behaviour,
   and major homepage section styling.

   Status:
   Active
===================================================== */

.erp-ai-brief {
  background: #f7f7f2;
  padding: 70px 20px;
}

.erp-ai-container {
  max-width: 1100px;
  margin: 0 auto;
}

.erp-ai-card {
  background: #ffffff;
  border-left: 6px solid #b28b00;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.erp-ai-label {
  color: #b28b00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.erp-ai-card h2 {
  color: #0b1f3a;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.erp-ai-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
}

.erp-ai-emphasis {
  font-weight: 700;
  color: #0b1f3a !important;
}

.erp-ai-card ul {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.erp-ai-card li {
  font-size: 18px;
  margin-bottom: 10px;
}

.erp-ai-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.erp-ai-btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
}

.erp-ai-btn.primary {
  background: #0b1f3a;
  color: #ffffff;
}

.erp-ai-btn.secondary {
  background: #b28b00;
  color: #ffffff;
}

@media (max-width: 768px) {
  .erp-ai-card {
    padding: 30px 22px;
  }

  .erp-ai-card h2 {
    font-size: 28px;
  }

  .erp-ai-buttons {
    flex-direction: column;
  }

  .erp-ai-btn {
    text-align: center;
  }
}


/* =====================================================
   START GLOBAL DESIGN VARIABLES

   Purpose:
   Stores reusable brand colours, spacing, borders,
   shadows, radius values and layout limits.

   Status:
   Active
===================================================== */

    :root {
      --navy: #0b1f3a;
      --gold: #b28b00;
      --gold-dark: #8f6f00;
      --white: #ffffff;
      --text: #111111;
      --muted: #5f6772;
      --soft: #f5f7fa;
      --soft-2: #eef2f6;
      --border: #dfe6ee;
      --shadow: 0 14px 34px rgba(11, 31, 58, 0.10);
      --radius: 20px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

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

    .container {
      width: min(var(--max), 92%);
      margin: 0 auto;
    }

/* =====================================================
   START HEADER AND NAVIGATION STYLING

   Purpose:
   Controls sticky top navigation, brand treatment,
   desktop navigation links and mobile menu trigger.

   Status:
   Active
===================================================== */

    .topbar {
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 0;
      position: relative;
    }

    .brand {
      color: var(--white);
      font-size: 1.08rem;
      font-weight: 800;
      letter-spacing: 0.2px;
      z-index: 1001;
    }

    .brand span {
      color: var(--gold);
    }

    .nav {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    .nav a {
      color: rgba(255,255,255,0.88);
      transition: color 0.2s ease;
    }

    .nav a:hover {
      color: var(--gold);
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      line-height: 1;
      background: none;
      border: none;
      color: var(--white);
      cursor: pointer;
      padding: 4px 8px;
      z-index: 1001;
    }

/* =====================================================
   START HERO SECTION STYLING

   Purpose:
   Styles the top executive positioning hero section,
   headline area, supporting card and call-to-action
   buttons.

   Status:
   Active
===================================================== */

    .hero {
      background:
        linear-gradient(135deg, rgba(11,31,58,0.98), rgba(11,31,58,0.90)),
        radial-gradient(circle at top right, rgba(178,139,0,0.26), transparent 35%);
      color: var(--white);
      padding: 88px 0 72px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 36px;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 1.4px;
      text-transform: uppercase;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(2.2rem, 4vw, 4.4rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
      font-weight: 800;
    }

    .lead {
      margin: 0 0 24px;
      font-size: 1.14rem;
      color: rgba(255,255,255,0.88);
      max-width: 720px;
    }

    .hero-points {
      list-style: none;
      margin: 0 0 28px;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .hero-points li {
      position: relative;
      padding-left: 22px;
      color: rgba(255,255,255,0.90);
    }

    .hero-points li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold);
      font-weight: 800;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 2px solid transparent;
      font-weight: 700;
      font-size: 0.96rem;
      transition: all 0.25s ease;
      cursor: pointer;
      text-align: center;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: #c79d00;
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.25);
    }

    .btn-secondary:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border-color: #cfd8e3;
    }

    .btn-outline-dark:hover {
      border-color: var(--gold);
      color: var(--gold-dark);
    }

    .hero-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card h3 {
      margin: 0 0 12px;
      font-size: 1.12rem;
      color: var(--gold);
    }

    .hero-card p {
      margin: 0 0 14px;
      color: rgba(255,255,255,0.88);
    }

    .hero-card .quote {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      font-weight: 600;
      font-size: 1.02rem;
    }

/* =====================================================
   START SHARED SECTION AND CONTENT STYLING

   Purpose:
   Provides reusable section spacing, headings, cards,
   grids, insight blocks, article cards, offer blocks,
   and general page layout elements.

   Status:
   Active
===================================================== */

    section {
      padding: 74px 0;
      scroll-margin-top: 100px;
    }

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

    .kicker {
      display: inline-block;
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 1.3px;
      font-size: 0.82rem;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      margin: 0 0 12px;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.15;
      color: var(--navy);
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

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

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

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

    .card .label {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 1.1px;
      text-transform: uppercase;
    }

    .card h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 1.24rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .article-card {
      background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .article-card h3 {
      margin: 0;
      color: var(--navy);
      font-size: 1.16rem;
      line-height: 1.25;
    }

    .article-card p {
      margin: 0;
      color: var(--muted);
      flex-grow: 1;
    }

    .article-card .tag {
      display: inline-block;
      width: fit-content;
      padding: 6px 10px;
      background: var(--soft-2);
      color: var(--navy);
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .insight-band {
      background: var(--soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .insight h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      color: var(--navy);
    }

    .insight p {
      margin: 0;
      color: var(--muted);
    }

    .insight-hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
      max-width: 760px;
    }

    .insight-hero-card h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 1.35rem;
    }

    .insight-hero-card p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .bridge {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .bridge-box {
      background: var(--navy);
      color: var(--white);
      border-radius: 26px;
      padding: 38px;
      box-shadow: var(--shadow);
    }

    .bridge-box h2 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.15;
    }

    .bridge-box p {
      margin: 0 0 14px;
      color: rgba(255,255,255,0.88);
      font-size: 1.04rem;
    }

    .bridge-box strong {
      color: var(--gold);
    }

    #sample-read {
      background: #fafbfc;
    }

    .sample-wrap {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .sample-main,
    .sample-side {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .sample-main h3,
    .sample-side h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 1.3rem;
    }

    .sample-main p,
    .sample-side p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .sample-list {
      margin: 0 0 22px;
      padding-left: 18px;
      color: var(--muted);
    }

    .sample-list li {
      margin-bottom: 8px;
    }

    .sample-pages {
      display: grid;
      gap: 14px;
    }

    .sample-page {
      background: var(--soft);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px;
    }

    .sample-page h4 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 1rem;
    }

    .sample-page p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .offers {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .offer {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .offer::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: var(--gold);
    }

    .offer h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 1.32rem;
    }

    .offer p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .offer ul {
      margin: 0 0 22px;
      padding-left: 18px;
      color: var(--muted);
    }

    .offer li {
      margin-bottom: 8px;
    }

    .soft-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .closing {
      background: var(--soft);
    }

    .closing-box {
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 42px 28px;
      box-shadow: var(--shadow);
    }

    .closing-box h2 {
      margin: 0 0 14px;
      color: var(--navy);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
    }

    .closing-box p {
      max-width: 720px;
      margin: 0 auto 24px;
      color: var(--muted);
      font-size: 1.04rem;
    }

    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.88);
      padding: 28px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    .footer-inner a {
      color: var(--gold);
    }







/* =====================================================
   START INVENTORY INTELLIGENCE BANNER STYLING

   Purpose:
   Styles the Inventory Intelligence / Segmentation
   authority banner and supporting image/card layout.

   Status:
   Active
===================================================== */

    .ai-authority-banner {
      background: linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .ai-authority-card {
      background: #ffffff;
      border-radius: 26px;
      padding: 38px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .ai-authority-image {
      width: 100%;
      max-width: 980px;
      margin: 0 auto 30px;
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(11, 31, 58, 0.10);
    }

    .ai-authority-text {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .ai-authority-text h2 {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.15;
    }

    .ai-authority-text p {
      margin: 0 auto 16px;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .ai-authority-quote {
      margin-top: 24px;
      padding: 22px 26px;
      background: #faf7ec;
      border-left: 5px solid var(--gold);
      border-radius: 14px;
      color: var(--navy);
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1.45;
    }



/* =====================================================
   START THE SEGMENTATION IMPERATIVE STYLING

   Purpose:
   Styles the executive segmentation section using the
   Dirty Data Expert navy and gold boardroom brand.

   Status:
   Active
===================================================== */

.segmentation-section{
  background:#ffffff;
  padding:90px 20px;
}

.segmentation-section-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
}

.segmentation-section .section-tag{
  display:inline-block;
  color:#b28b00;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:15px;
}

.segmentation-section-header h2{
  color:#0b1f3a;
  font-size:clamp(2rem, 3vw, 2.8rem);
  line-height:1.15;
  margin:0 0 20px;
}

.segmentation-section-header p{
  color:#555;
  font-size:1.2rem;
  line-height:1.7;
  margin:0;
}

.seg-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.seg-card{
  background:#ffffff;
  border-top:5px solid #b28b00;
  padding:30px;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  border-left:1px solid #dfe6ee;
  border-right:1px solid #dfe6ee;
  border-bottom:1px solid #dfe6ee;
}

.seg-card h3{
  color:#0b1f3a;
  margin:0 0 20px;
  font-size:1.25rem;
}

.seg-card p,
.seg-card li{
  color:#5f6772;
  font-size:1rem;
  line-height:1.65;
}

.seg-card p{
  margin:0 0 16px;
}

.seg-card ul{
  padding-left:20px;
  margin:0 0 20px;
}

.seg-card li{
  margin-bottom:10px;
}

.seg-highlight{
  background:#0b1f3a;
  color:#ffffff;
  border-color:#0b1f3a;
}

.seg-highlight h3,
.seg-highlight p{
  color:#ffffff;
}

.seg-highlight blockquote{
  color:#b28b00;
  border-left:4px solid #b28b00;
  padding-left:15px;
  margin:0 0 18px;
  font-size:1.25rem;
  font-weight:700;
  line-height:1.45;
}

.brief-download{
  text-align:center;
  margin-top:50px;
}

.brief-btn{
  display:inline-block;
  background:#b28b00;
  color:#ffffff;
  text-decoration:none;
  padding:16px 34px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}

.brief-btn:hover{
  background:#8f6f00;
  transform:translateY(-1px);
}

@media (max-width:768px){
  .segmentation-section{
    padding:65px 20px;
  }

  .segmentation-section-header{
    margin-bottom:36px;
  }

  .seg-card{
    padding:24px;
  }
}

/* =====================================================
   END THE SEGMENTATION IMPERATIVE STYLING
===================================================== */

/* =====================================================
   START DATA GOVERNANCE STYLING
===================================================== */

.governance-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  margin:40px 0;
}

.governance-card{
  background:#ffffff;
  border-top:5px solid #b28b00;
  padding:30px;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.governance-card h3{
  color:#0b1f3a;
  margin-top:0;
}

.executive-callout{
  background:#0b1f3a;
  color:#ffffff;
  padding:35px;
  border-radius:14px;
  margin:40px 0;
}

.executive-callout h3{
  color:#b28b00;
  margin-top:0;
}

.cta-panel{
  text-align:center;
  background:#f7f7f2;
  padding:35px;
  border-radius:14px;
  border-top:5px solid #b28b00;
}

.btn-gold{
  display:inline-block;
  background:#b28b00;
  color:#ffffff;
  padding:16px 34px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
}

.btn-gold:hover{
  background:#8f6f00;
}

/* =====================================================
   END DATA GOVERNANCE STYLING
===================================================== */





/* =====================================================
   START RESPONSIVE LAYOUT STYLING

   Purpose:
   Adjusts grids, navigation, cards, buttons and text
   behaviour for tablet and mobile screens.

   Status:
   Active
===================================================== */

    @media (max-width: 980px) {
      .hero-grid,
      .grid-2,
      .grid-3,
      .sample-wrap,
      .offers {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 72px 0 60px;
      }

      section {
        padding: 58px 0;
      }

      .topbar-inner {
        padding: 14px 0;
      }

      .menu-toggle {
        display: block;
      }

      .nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--navy);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 14px 18px 18px;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 16px 30px rgba(11, 31, 58, 0.18);
      }

      .nav.active {
        display: flex;
      }

      .nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(178,139,0,0.35);
      }

      .nav a:last-child {
        border-bottom: none;
      }

      .ai-authority-card,
      .hero-card,
      .card,
      .article-card,
      .insight,
      .insight-hero-card,
      .bridge-box,
      .sample-main,
      .sample-side,
      .offer,
      .closing-box {
        padding: 22px;
      }
    }

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

      .hero {
        padding: 58px 0 44px;
      }

      h1 {
        font-size: 1.95rem;
        line-height: 1.12;
      }

      .lead {
        font-size: 0.98rem;
        margin-bottom: 18px;
        max-width: 100%;
      }

      .hero-points {
        gap: 8px;
        margin-bottom: 22px;
      }

      .hero-points li {
        font-size: 0.95rem;
        padding-left: 18px;
      }

      .hero-card {
        margin-top: 4px;
      }

      .section-heading {
        margin-bottom: 24px;
      }

      .section-heading h2 {
        font-size: 1.7rem;
        line-height: 1.18;
      }

      .section-heading p {
        font-size: 0.98rem;
      }

      .card,
      .article-card,
      .insight,
      .insight-hero-card,
      .sample-main,
      .sample-side,
      .offer,
      .closing-box,
      .bridge-box {
        padding: 20px;
        border-radius: 18px;
      }

      .article-card h3,
      .card h3,
      .offer h3,
      .sample-main h3,
      .sample-side h3,
      .insight h3,
      .insight-hero-card h3 {
        font-size: 1.05rem;
        line-height: 1.28;
      }

      .article-card p,
      .card p,
      .offer p,
      .sample-main p,
      .sample-side p,
      .insight p,
      .insight-hero-card p,
      .sample-page p,
      .soft-note {
        font-size: 0.95rem;
      }

      .sample-page {
        padding: 14px;
      }

      .sample-page h4 {
        font-size: 0.96rem;
      }

      .btn {
        width: 100%;
        min-height: 46px;
        padding: 0 18px;
        font-size: 0.95rem;
      }

      .hero-actions {
        gap: 10px;
      }

      section {
        padding: 50px 0;
      }

      .footer-inner {
        font-size: 0.9rem;
      }
    }

/* =====================================================
   START ANCHOR SCROLL POSITION FIX

   Purpose:
   Keeps menu selections aligned below the sticky
   navigation bar on desktop and mobile.

   Status:
   Active
===================================================== */

    html {
      scroll-padding-top: 96px;
    }

    @media (max-width: 768px) {
      html {
        scroll-padding-top: 82px;
      }
    }

/* =====================================================
   END ANCHOR SCROLL POSITION FIX
===================================================== */

/* =====================================================
   END PRIMARY SITE STYLING
===================================================== */


.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    font-family: Arial, sans-serif;
  }

  .wa-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0b1f3a;
    color: #ffffff;
    border: 2px solid #b28b00;
    padding: 13px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
  }

  .wa-button:hover {
    background: #b28b00;
    color: #0b1f3a;
    transform: translateY(-2px);
  }

  .wa-icon {
    width: 22px;
    height: 22px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
  }

  .wa-note {
    position: absolute;
    right: 0;
    bottom: 62px;
    width: 260px;
    background: #ffffff;
    color: #111111;
    border-left: 4px solid #b28b00;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    font-size: 13px;
    line-height: 1.4;
  }

  .wa-note strong {
    color: #0b1f3a;
  }

  @media (max-width: 600px) {
    .wa-note {
      display: none;
    }

    .wa-button {
      padding: 14px 16px;
      font-size: 14px;
    }

    .wa-text {
      display: none;
    }

    .wa-icon {
      width: 28px;
      height: 28px;
    }
  }
