/* =====================================================
   DESIGN SYSTEM VARIABLES
===================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;

    --bg-light: #f8fafc;
    --bg-dark: #0f172a;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --border-light: #e5e7eb;
}

/* =====================================================
   BASE RESET & TYPOGRAPHY
===================================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
    background: #ffffff;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 20px;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 16px;
    text-align: center;
}

h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-sub {
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px 20px;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

/* =========================================
   HEADER CTA BUTTON FIX
========================================= */

.site-header .btn,
.site-header .header-cta {
  background: var(--primary) !important;
  color: #ffffff !important;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.2;
  border: none;
}

/* Hover */
.site-header .btn:hover,
.site-header .header-cta:hover {
  background: var(--primary-dark) !important;
  color: #ffffff !important;
}
.site-header .header-cta {
  box-shadow: 0 6px 14px rgba(37,99,235,0.25);
}

.site-header a[href="/login.php"] {
  background: var(--primary) !important;
  color: #ffffff !important;
}

/* Ensure nav links don’t override */
.site-header nav a.btn {
  color: #ffffff !important;
}

/* CTA */
.header-cta {
  padding: 10px 18px;
  font-size: 14px;
  min-height: unset;
}

/* Account menu */
.account-menu {
  position: relative;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-main);
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.account-dropdown {
  position: absolute;
  right: 0;
  top: 120%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  min-width: 200px;
  display: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.account-dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--text-main);
  text-decoration: none;
}

.account-dropdown a:hover {
  background: var(--bg-light);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-main);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

/* Hamburger → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Responsive */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-top: 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary,
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
}

.btn-large {
    font-size: 18px;
    padding: 16px 32px;
}

/* =========================================
   HERO SECTION (FINAL – WITH FLOATING ICONS)
========================================= */

.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    overflow: hidden;
}

/* Background floating icons layer */
.hero-floating-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Floating icon base */
.hero-float {
    position: absolute;
    font-size: 42px;
    opacity: 0.12;
    filter: blur(0.5px);
    animation: hero-float 22s ease-in-out infinite;
}

/* Individual icon placement */
.hero-float.lock {
    top: 14%;
    left: 8%;
    animation-duration: 24s;
}

.hero-float.shield {
    top: 62%;
    left: 12%;
    animation-duration: 28s;
}

.hero-float.stop {
    top: 20%;
    right: 10%;
    animation-duration: 26s;
}

.hero-float.alert {
    bottom: 18%;
    right: 18%;
    animation-duration: 30s;
}

/* Floating animation */
@keyframes hero-float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Main hero layout */
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text styling */
.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    max-width: 520px;
    color: var(--text-muted);
}

.hero-visual,
.performance-visual {
  max-width: 900px;     /* controls image size */
  margin: 0 auto;       /* center */
}

@media (max-width: 768px) {
  .hero-visual,
  .performance-visual {
    max-width: 100%;
    padding: 0 15px;
  }
}

/* CTA buttons */
.hero-actions {
    margin-top: 30px;
}

.hero-actions .btn {
    margin-right: 12px;
}

/* Badge */
.badge {
    display: inline-block;
    background: #e0e7ff;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-float {
        animation: none;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto;
    }

    .hero-actions .btn {
        display: block;
        margin: 12px auto;
    }
}

/* =====================================================
   SECTION 2 – FEATURE FLOW
===================================================== */

.feature-flow {
    padding: 120px 0;
    background: #ffffff;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.flow-step {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 36px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* =====================================================
   SECTION 3 – PERFORMANCE
===================================================== */

.performance {
    padding: 120px 0;
    background: var(--bg-light);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* =====================================================
   SECTION 4 – WHY SHIELDPRESS
===================================================== */

.why {
    padding: 120px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-grid div {
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

/* =====================================================
   SECTION 5 – COMPATIBILITY
===================================================== */

.compatibility {
    padding: 120px 0;
    background: var(--bg-light);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.logo-grid div {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    font-weight: 600;
}

/* =====================================================
   SECTION 6 – PRIVACY
===================================================== */

.privacy {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.privacy p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
}

/* =====================================================
   SECTION 7 – TESTIMONIALS
===================================================== */

.testimonials {
    padding: 120px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-grid blockquote {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    font-style: italic;
    border-left: 4px solid var(--primary);
}

.testimonial-grid span {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
}

/* =====================================================
   SECTION 8 – FINAL CTA
===================================================== */

.final-cta {
    padding: 140px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 30px;
}

/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {
  background: #f1f5f9;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.trust-strip p {
  margin: 0;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================
   FOOTER – SECURITY BADGES (REFINED)
========================================= */

.footer-security {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0px 0 30px;
    padding: 12px 20px;
    border-top: 0px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-security span {
    font-size: 14px;
    color: #cbd5f5;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    letter-spacing: 0.2px;
}

.language-selector {
  background: var(--bg-dark);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 6px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 40px 20px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

/* Newsletter */
.footer-newsletter label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5f5;
}

.newsletter-row {
  display: flex;
  gap: 10px;
}

.newsletter-row input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.newsletter-row button {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* =========================================
   FOOTER BOTTOM – 3-COLUMN LAYOUT
========================================= */

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Left */
.footer-left {
  text-align: left;
}

/* Center */
.footer-center {
  display: flex;
  justify-content: center;
}

/* Right */
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

/* Social icons spacing */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social i {
  font-size: 18px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-social a:hover i {
  color: #ffffff;
}

/* Payment icons spacing */
.payment-icons {
  display: flex;
  gap: 14px;
}

.payment-icons i {
  font-size: 26px;
  color: #e5e7eb;
}

/* Language selector */
.language-selector {
  background: var(--bg-dark);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 6px;
}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq {
  padding: 120px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.support {
  padding: 120px 0;
  background: var(--bg-light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.support-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

/* =========================================
   FINAL CTA – FLOATING BACKGROUND ELEMENTS
========================================= */

.final-cta {
  position: relative;
  overflow: hidden;
}

.floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.float-item {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(2px);
  animation: float 18s ease-in-out infinite;
}

/* Individual placements */

.float-item.one {
  top: 10%;
  left: 8%;
  animation-duration: 22s;
}

.float-item.two {
  top: 60%;
  left: 15%;
  width: 120px;
  height: 120px;
  animation-duration: 18s;
}

.float-item.three {
  top: 20%;
  right: 10%;
  width: 220px;
  height: 220px;
  animation-duration: 26s;
}

.float-item.four {
  bottom: 10%;
  right: 20%;
  width: 140px;
  height: 140px;
  animation-duration: 20s;
}

/* Floating animation */

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-grid,
    .performance-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions .btn {
        display: block;
        margin: 12px auto;
    }
}

/* =========================================
   AFFILIATE PAGE
========================================= */

.affiliate-hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.affiliate-actions {
  margin-top: 30px;
}

.affiliate-actions .btn {
  margin: 0 10px;
}

.affiliate-how,
.affiliate-why {
  padding: 120px 0;
}

.affiliate-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 40px;
  margin-top: 60px;
}

.affiliate-benefits {
  max-width: 600px;
  margin: 40px auto 0;
}

.affiliate-benefits li {
  margin-bottom: 12px;
}

/* =========================================
   AFFILIATE DASHBOARD
========================================= */

.affiliate-dashboard {
  padding: 100px 0;
}

.notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
}

.notice-success {
  background: #ecfdf5;
  color: #065f46;
}

.notice-warning {
  background: #fffbeb;
  color: #92400e;
}

.notice-error {
  background: #fef2f2;
  color: #991b1b;
}

.affiliate-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.affiliate-card input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.affiliate-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

/* =========================================
   AFFILIATE APPLICATION FORM (FIXED)
========================================= */

.affiliate-apply {
  padding: 100px 0;
}

.affiliate-form {
  max-width: 600px;
  margin: 60px auto 0;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.affiliate-form label {
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text-main);
}

.affiliate-form input,
.affiliate-form select,
.affiliate-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 15px;
  background: #ffffff;
}

.affiliate-form textarea {
  resize: vertical;
}

.affiliate-form input:focus,
.affiliate-form select:focus,
.affiliate-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.affiliate-form button {
  margin-top: 10px;
  padding: 12px 18px;
  font-size: 15px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}

.admin-table th,
.admin-table td {
  border: 1px solid var(--border-light);
  padding: 12px;
}

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.status.pending { background: #fffbeb; color: #92400e; }
.status.approved { background: #ecfdf5; color: #065f46; }
.status.paid { background: #eff6ff; color: #1e40af; }
.status.rejected { background: #fef2f2; color: #991b1b; }
.price-free {
  color: #16a34a;
  font-weight: 700;
}

/* =========================
   Breadcrumbs
========================= */
.breadcrumbs {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}
.breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* =========================
   Legal Layout
========================= */
.legal-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 42px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

/* =========================
   Typography
========================= */
.legal-card h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.legal-card h2 {
    font-size: 22px;
    margin-top: 42px;
    margin-bottom: 14px;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 16px;
}

.legal-card ul {
    padding-left: 22px;
    margin-bottom: 24px;
}

.legal-card li {
    font-size: 15px;
    margin-bottom: 10px;
}

.legal-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 45px 0;
}

.legal-footer-nav {
    text-align: center;
    margin-top: 35px;
}
.legal-footer-nav a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    margin: 0 6px;
}
.legal-footer-nav a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .legal-card {
        padding: 28px;
    }
    .legal-card h1 {
        font-size: 30px;
    }
}

/* =========================
   Roadmap Enhancements
========================= */
.roadmap-section {
    margin-top: 50px;
}

.roadmap-phase {
    border-left: 4px solid #2563eb;
    padding-left: 24px;
    margin-bottom: 40px;
    position: relative;
}

.roadmap-phase::before {
    content: "➜";
    position: absolute;
    left: -16px;
    top: 0;
    background: #2563eb;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.roadmap-phase h2 {
    margin-top: 0;
}

.roadmap-list {
    list-style: none;
    padding-left: 0;
}

.roadmap-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.roadmap-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: bold;
}

.roadmap-future li::before {
    content: "→";
    color: #2563eb;
}

.roadmap-vision li::before {
    content: "✦";
    color: #7c3aed;
}

.roadmap-note {
    background: #f8fafc;
    border-left: 4px solid #e5e7eb;
    padding: 14px 18px;
    font-size: 14px;
    color: #374151;
    margin-top: 30px;
    border-radius: 8px;
}
