:root {
  --pme-accent: #d4ff31;
  --pme-dark: #0f172a;
  --pme-muted: #475569;
  --pme-border: rgba(15, 23, 42, 0.12);
  --pme-bg: #ffffff;
  --pme-bg-soft: #f7fafc;
  --pme-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.pme-page,
.pme-page * ,
.pme-page *::before,
.pme-page *::after {
  box-sizing: border-box;
}

.pme-page {
  font-family: var(--pme-font);
  color: var(--pme-dark);
  background: var(--pme-bg);
  overflow-x: clip;
}

.pme-page h1,
.pme-page h2,
.pme-page h3,
.pme-page p,
.pme-page ul,
.pme-page ol {
  margin: 0;
}

.pme-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- Hero ---------- */
.pme-hero-section {
  position: relative;
  width: 100%;
  padding: 78px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(212, 255, 49, 0.28), transparent 60%),
    radial-gradient(700px 500px at 80% 40%, rgba(59, 130, 246, 0.14), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #f9fafb 100%);
}
.pme-bg-circle {
  position: absolute;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  left: -140px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1;
}

.pme-main-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.pme-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pme-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pme-border);
  backdrop-filter: blur(8px);
}

.pme-headline {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--pme-dark);
}

.pme-description {
    color: var(--pme-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 100%;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.pme-hero-points {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}


.pme-hero-points li {
    position: relative;
    padding-left: 24px;
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.5;
    text-align: center;
}


.pme-hero-points li::before {
  content: "✓";
  position: absolute;
  left: 30%;
  top: 0;
  color: rgba(15, 23, 42, 0.9);
  background: var(--pme-accent);
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transform: translateY(2px);
}

.pme-cta-group {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: -34px;
    justify-content: center;
}

.pme-btn-primary,
.pme-btn-secondary,
.pme-btn-icon {
  text-decoration: none;
  user-select: none;
}

.pme-btn-primary {
  background: #0b1220;
  color: #fff;
  border: 1px solid rgba(11, 18, 32, 0.14);
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.pme-btn-secondary {
  background: transparent;
  color: #0b1220;
  border: 1px solid var(--pme-border);
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.pme-btn-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #25d366;
  color: #062d15;
  border: 1px solid rgba(6, 45, 21, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.18);
  font-size: 22px;
}

.pme-btn-primary:hover,
.pme-btn-secondary:hover,
.pme-btn-icon:hover {
  transform: translateY(-1px);
}

.pme-btn-primary:focus-visible,
.pme-btn-secondary:focus-visible,
.pme-btn-icon:focus-visible,
.pme-faq-q:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 3px;
}

.pme-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.pme-stat {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pme-border);
  border-radius: 16px;
}

.pme-stat-value {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pme-stat-label {
  margin-top: 2px;
  font-size: 0.92rem;
  color: var(--pme-muted);
}

.pme-image-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.pme-image-bg-box {
  position: absolute;
  inset: 16px 0 0 16px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 28px;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pme-hero-image {
  width: 100%;
  max-width: 720px;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

/* ---------- Sections ---------- */
.pme-section {
  padding: 76px 0;
  background: var(--pme-bg);
}

.pme-section--alt {
  background: var(--pme-bg-soft);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pme-section-header {
  max-width: 860px;
  margin-bottom: 34px;
}

.pme-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pme-section-subtitle {
  margin-top: 10px;
  color: var(--pme-muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

/* Trust strip */
.pme-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pme-trust-item {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pme-border);
  border-radius: 16px;
  display: grid;
  gap: 6px;
}

.pme-trust-item strong {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pme-trust-item span {
  color: var(--pme-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

/* Cards */
.pme-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pme-card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--pme-border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.pme-card-title {
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pme-card-desc {
  margin-top: 10px;
  color: var(--pme-muted);
  line-height: 1.6;
}

/* Two-col feature lists */
.pme-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pme-list-card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--pme-border);
  background: rgba(255, 255, 255, 0.92);
}

.pme-list-title {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pme-checklist {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.pme-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(15, 23, 42, 0.88);
  line-height: 1.55;
}

.pme-checklist li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: rgba(15, 23, 42, 0.65);
}

/* Steps */
.pme-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pme-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid var(--pme-border);
  background: #fff;
}

.pme-step-num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: rgba(212, 255, 49, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.pme-step h3 {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pme-step p {
  margin-top: 6px;
  color: var(--pme-muted);
  line-height: 1.6;
}

/* Tags */
.pme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pme-tag {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--pme-border);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.85);
}

/* FAQ */
.pme-faq {
  max-width: 920px;
}

.pme-faq-item {
  border: 1px solid var(--pme-border);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.pme-faq-item + .pme-faq-item {
  margin-top: 12px;
}

.pme-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.95);
}

.pme-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--pme-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease;
  background: rgba(15, 23, 42, 0.03);
}

.pme-faq-item.is-open .pme-faq-icon {
  transform: rotate(45deg);
  background: rgba(212, 255, 49, 0.5);
}

.pme-faq-a {
  padding: 0 18px 18px;
  color: var(--pme-muted);
  line-height: 1.7;
}

/* CTA */
.pme-section--cta {
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(212, 255, 49, 0.20), transparent 65%),
    radial-gradient(900px 500px at 90% 40%, rgba(59, 130, 246, 0.12), transparent 62%),
    #0b1220;
  color: #fff;
}

.pme-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.pme-cta-title {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pme-cta-subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.pme-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pme-section--cta .pme-btn-primary {
  background: var(--pme-accent);
  color: #0b1220;
  border-color: rgba(212, 255, 49, 0.35);
  box-shadow: 0 18px 50px rgba(212, 255, 49, 0.12);
}

.pme-section--cta .pme-btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.pme-section--cta .pme-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pme-main-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pme-image-side {
    order: -1;
  }

  .pme-hero-meta {
    grid-template-columns: 1fr;
  }

  .pme-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pme-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pme-two-col {
    grid-template-columns: 1fr;
  }

  .pme-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pme-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .pme-hero-section {
    padding: 72px 0 52px;
  }

  .pme-card-grid {
    grid-template-columns: 1fr;
  }

  .pme-cta-group {
    flex-wrap: wrap;
  }
}

/* Classic Trust Section Styles */
.cls-trust-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.cls-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cls-trust-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cls-trust-item {
    flex: 1;
    padding: 0 40px;
    /* Creating the classic vertical separator */
    border-right: 1px solid #d1d1d1;
}

/* Remove border from the last item */
.cls-trust-item:last-child {
    border-right: none;
}

.cls-item-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    text-transform: uppercase; /* Classic look often uses caps for headers */
    letter-spacing: 0.5px;
}

.cls-item-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive: Stack items on mobile and remove borders */
@media (max-width: 768px) {
    .cls-trust-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .cls-trust-item {
        padding: 0;
        border-right: none;
        border-left: 3px solid #000; /* Subtle accent on mobile */
        padding-left: 20px;
    }
}


:root {
    --hds-dark: #0a1118;
    --hds-gray: #64748b;
    --hds-accent: #2563eb;
    --hds-border: #e2e8f0;
}

.hds-wrapper {
    padding: 120px 0;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

.hds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.hds-header {
    margin-bottom: 80px;
}

.hds-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--hds-accent);
    display: block;
    margin-bottom: 20px;
}

.hds-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--hds-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hds-intro {
    font-size: 1.2rem;
    color: var(--hds-gray);
    max-width: 600px;
    line-height: 1.6;
}

/* Ribbon/Accordion Styles */
.hds-ribbon {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hds-border);
}

.hds-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--hds-border);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hds-item-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hds-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hds-gray);
    font-variant-numeric: tabular-nums;
}

.hds-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hds-dark);
    flex-grow: 1;
    transition: transform 0.4s ease;
}

.hds-item-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
    opacity: 0.3;
}

/* Detail area that expands */
.hds-item-details {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
    padding-left: 65px; /* Aligns with text after the number */
    max-width: 700px;
}

.hds-item-details p {
    font-size: 1.1rem;
    color: var(--hds-gray);
    line-height: 1.7;
    margin-top: 20px;
}

/* Hover & Active States */
.hds-item:hover, .hds-item.active {
    padding: 60px 0;
}

.hds-item:hover .hds-item-title, 
.hds-item.active .hds-item-title {
    color: var(--hds-accent);
    transform: translateX(10px);
}

.hds-item:hover .hds-item-icon,
.hds-item.active .hds-item-icon {
    transform: translateX(10px);
    opacity: 1;
    color: var(--hds-accent);
}

.hds-item:hover .hds-item-details,
.hds-item.active .hds-item-details {
    max-height: 200px;
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hds-container { padding: 0 20px; }
    .hds-item-main { gap: 20px; }
    .hds-item-title { font-size: 1.4rem; }
    .hds-item-details { padding-left: 0; }
}


:root {
    --spc-navy: #0f172a;
    --spc-slate: #475569;
    --spc-border: #e2e8f0;
    --spc-accent: #3b82f6;
    --spc-bg: #f8fafc;
}

.spc-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
}

.spc-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
.spc-header {
    text-align: center;
    margin-bottom: 80px;
}

.spc-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--spc-navy);
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.spc-lead {
    font-size: 1.1rem;
    color: var(--spc-slate);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.spc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* No gap because we will use borders to separate */
    border: 1px solid var(--spc-border);
    border-radius: 8px;
    overflow: hidden;
}

.spc-column {
    padding: 60px;
    background: #fff;
}

.spc-column:first-child {
    border-right: 1px solid var(--spc-border);
}

/* Column Head */
.spc-column-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.spc-icon-box {
    width: 40px;
    height: 40px;
    color: var(--spc-accent);
}

.spc-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--spc-navy);
}

/* List Styling */
.spc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spc-list-item:last-child {
    border-bottom: none;
}

.spc-dot {
    min-width: 6px;
    height: 6px;
    background-color: var(--spc-accent);
    border-radius: 50%;
    margin-top: 8px;
}

.spc-list-item p {
    font-size: 1rem;
    color: var(--spc-slate);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 850px) {
    .spc-grid {
        grid-template-columns: 1fr;
    }
    .spc-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--spc-border);
    }
    .spc-column {
        padding: 40px 30px;
    }
    .spc-title {
        font-size: 2rem;
    }
}

:root {
    --ktp-dark: #1a1a1a;
    --ktp-gray: #555555;
    --ktp-bg-soft: #f4f7fa;
    --ktp-white: #ffffff;
}

.ktp-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.ktp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* Left Content Styling */
.ktp-content {
    flex: 1;
}

.ktp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ktp-dark);
    margin-bottom: 25px;
}

.ktp-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--ktp-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.ktp-description {
    font-size: 1.05rem;
    color: var(--ktp-gray);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.ktp-btn {
    padding: 16px 32px;
    background: var(--ktp-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ktp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Right Visual Styling */
.ktp-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ktp-grid-mask {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1;
    background-color: var(--ktp-bg-soft);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.ktp-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transform: rotate(-5deg) scale(1.1); /* Adds that dynamic tilt from the image */
}

.ktp-icon-card {
    background: var(--ktp-white);
    aspect-ratio: 1/1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 15px;
    transition: all 0.3s ease;
}

.ktp-icon-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: grayscale(0%); /* Keep logos colorful */
}

.ktp-icon-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ktp-container {
        flex-direction: column;
        text-align: center;
    }
    .ktp-content { display: flex; flex-direction: column; align-items: center; }
    .ktp-visual { width: 100%; justify-content: center; }
}


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
    --rx-dark: #070e1a;
    --rx-blue: #2563eb;
    --rx-gray: #64748b;
    --rx-light: #f8fafc;
}

.rx-hero {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rx-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.rx-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

/* Typography & Content */
.rx-breadcrumb {
    color: var(--rx-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.rx-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--rx-dark);
    line-height: 1;
    margin-bottom: 38px;
    font-weight: 700;
}

.rx-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--rx-blue);
    font-weight: 400;
}


.rx-description {
    font-size: 1.2rem;
    color: var(--rx-gray);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 560px;
    margin-bottom: 36px !important;
    margin-top: 36px !important;
}

/* Custom Icon List */
.rx-feature-list {
    display: flex;
    gap: 36px;
    margin-bottom: 60px;
}

.rx-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rx-dark);
}

.rx-icon {
    width: 20px;
    height: 20px;
    stroke: var(--rx-blue);
    stroke-width: 2.5px;
}

/* Button Styling */
.rx-cta-wrapper {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.rx-btn-main {
    padding: 20px 40px;
    background: var(--rx-dark);
    color: white;
    text-decoration: none;
    border-radius: 4px; /* Classic sharp corners look more premium */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.rx-btn-secondary {
    padding: 20px 34px;
    background: transparent;
    color: var(--rx-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.rx-btn-secondary:hover {
    background: #f8fafc;
}

.rx-arrow {
    width: 20px;
    transition: transform 0.3s;
}

.rx-btn-main:hover .rx-arrow {
    transform: translateX(8px);
}

.rx-whatsapp-btn {
    width: 66px;
    height: 66px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #25d366;
    border-radius: 4px;
    transition: background 0.3s;
}

/* Visual Framing */
.rx-visual {
    position: relative;
    justify-self: end;
}

.rx-image-frame {
    position: relative;
    z-index: 5;
    /* background: #f1f5f9; */
    border-radius: 12px;
    padding-bottom: 0;
    overflow: hidden;
    width: min(680px, 100%);
}

.rx-main-img {
    width: 100%;
    display: block;
    mix-blend-mode: multiply; /* Helps the PNG integrate into the frame */
}

/* Floating Elements */
.rx-floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #ffffff;
    padding: 25px;
    border-left: 5px solid var(--rx-blue);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.rx-stat {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rx-dark);
    line-height: 1;
}

.rx-stat-label {
    font-size: 0.75rem;
    color: var(--rx-gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Background Blobs */
.rx-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

@media (max-width: 992px) {
    .rx-grid { grid-template-columns: 1fr; text-align: center; }
    .rx-description { margin: 0 auto 40px auto; }
    .rx-feature-list, .rx-cta-wrapper { justify-content: center; }
    .rx-floating-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
}


:root {
    --dp-navy: #0f172a;
    --dp-accent: #d4ff31; /* Lime Green */
    --dp-gray: #64748b;
    --dp-border: #e2e8f0;
}

.dp-section {
    padding: 120px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.dp-container {
    max-width: 900px; /* Narrower container for better readability of timelines */
    margin: 0 auto;
    padding: 0 40px;
}

.dp-header {
    margin-bottom: 80px;
}

.dp-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dp-navy);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.dp-subtitle {
    font-size: 1.1rem;
    color: var(--dp-gray);
    max-width: 600px;
    line-height: 1.6;
}

/* Timeline Layout */
.dp-timeline {
    position: relative;
    padding-left: 100px; /* Space for the line and numbers */
}

/* The Vertical Thread */
.dp-line {
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--dp-border);
}

.dp-item {
    position: relative;
    padding-bottom: 60px; /* Space between steps */
    display: flex;
    align-items: flex-start;
}

.dp-item:last-child {
    padding-bottom: 0;
}

/* Marker (The Number) */
.dp-marker {
    position: absolute;
    left: -100px; /* Align within the timeline space */
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dp-navy);
    background: white;
    padding: 10px 0;
    z-index: 2;
    position: relative;
    /* Subtle lime green accent line under number */
    border-bottom: 4px solid var(--dp-accent);
}

/* Content Area */
.dp-content {
    padding-top: 5px;
}

.dp-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dp-navy);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.dp-step-desc {
    font-size: 1.05rem;
    color: var(--dp-gray);
    line-height: 1.5;
}

/* Interaction: Highlight on hover */
.dp-item:hover .dp-step-title {
    color: #3b82f6; /* Modern Blue */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dp-timeline { padding-left: 60px; }
    .dp-line { left: 25px; }
    .dp-marker { left: -60px; width: 50px; }
    .dp-num { font-size: 1rem; }
    .dp-step-title { font-size: 1.25rem; }
}