 .sn-faq-wrapper {
    background-color: #FFFFFF;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #334155;
    padding: 90px 0;
    border-top: 1px solid #F1F5F9;
  }

  .sn-faq-container {
    width: 100%;
    max-width: 850px; /* Kept narrow for easier reading & cleaner aesthetic */
    margin: 0 auto;
    padding: 0 24px;
  }

  .sn-faq-title {
    font-size: 2.2rem;
    color: #0F1E36;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .sn-faq-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 50px;
  }

  /* Accordion Container */
  .sn-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Smooth Details Container */
  .sn-faq-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  .sn-faq-item[open] {
    background: #FFFFFF;
    border-color: #11A748;
    box-shadow: 0 4px 20px rgba(17, 167, 72, 0.04);
  }

  /* Summary Interactive Bar */
  .sn-faq-question {
    padding: 22px 28px;
    font-size: 1.1rem;
    color: #0F1E36;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  /* Removes default arrow chrome browser hides */
  .sn-faq-question::-webkit-details-marker {
    display: none;
  }

  /* Custom Clean Minimal Dynamic Plus/Minus Icon */
  .sn-faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 20px;
  }

  .sn-faq-icon::before,
  .sn-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #64748B;
    transition: transform 0.25s ease, background-color 0.25s ease;
  }

  /* Horizontal line */
  .sn-faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
  }

  /* Vertical line */
  .sn-faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
  }

  /* Open Interactions state changes symbols */
  .sn-faq-item[open] .sn-faq-question {
    color: #11A748;
  }

  .sn-faq-item[open] .sn-faq-icon::before {
    background-color: #11A748;
  }

  .sn-faq-item[open] .sn-faq-icon::after {
    transform: rotate(90deg);
    background-color: transparent; /* Hides vertical line to become a pure minus sign */
  }

  /* Content Wrapper Box */
  .sn-faq-answer {
    padding: 0 28px 24px 28px;
  }

  .sn-faq-answer p {
    font-size: 0.95rem;
    color: #5A6A85;
    line-height: 1.65;
    margin: 0;
  }

  /* Mobile Grid View Adaptability rules */
  @media (max-width: 640px) {
    .sn-faq-title { font-size: 1.8rem; }
    .sn-faq-question { padding: 18px 20px; font-size: 1rem; }
    .sn-faq-answer { padding: 0 20px 20px 20px; }
    .sn-faq-wrapper { padding: 60px 0; }
  }

  /* Base reset scope overrides */
  .sn-arch-wrapper, .sn-services-wrapper {
    background-color: #FFFFFF;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #334155;
    padding: 80px 0;
  }
  
  .sn-services-wrapper {
    border-top: 1px solid #F1F5F9; /* Subtle divider link between rows */
  }

  .sn-arch-container, .sn-services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .sn-section-title {
    font-size: 2.2rem;
    color: #0F1E36;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .sn-section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.65;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px auto;
  }

  /* --------------------------------------------------------------------------
     4-Step Architecture Horizontal Timeline Styling
     -------------------------------------------------------------------------- */
  .sn-step-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
  }

  /* Seamless connection line across steps */
  .sn-step-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #E2E8F0;
    z-index: 1;
  }

  .sn-step-node {
    position: relative;
    z-index: 2;
  }

  .sn-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .sn-step-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #11A748;
    background: #EBFEEF;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 1px #11A748;
  }

  .sn-step-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748B;
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
  }

  .sn-step-node h4 {
    font-size: 1.15rem;
    color: #0F1E36;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .sn-step-node p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
  }

  /* --------------------------------------------------------------------------
     3-Column Services Row Cards Styling
     -------------------------------------------------------------------------- */
  .sn-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .sn-service-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.2s ease;
  }

  .sn-service-card:hover {
    background: #FFFFFF;
    border-color: #11A748;
    box-shadow: 0 10px 25px rgba(17, 167, 72, 0.06);
    transform: translateY(-2px);
  }

  .sn-service-icon {
    width: 40px;
    height: 40px;
    color: #11A748;
    margin-bottom: 24px;
  }

  .sn-service-icon svg {
    width: 100%;
    height: 100%;
  }

  .sn-service-card h3 {
    font-size: 1.3rem;
    color: #0F1E36;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .sn-service-card p {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
  }

  /* --------------------------------------------------------------------------
     Responsive Media Breaks Matrix
     -------------------------------------------------------------------------- */
  @media (max-width: 1024px) {
    .sn-step-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .sn-step-timeline::before { display: none; } /* Line removed for stacked view */
    .sn-services-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .sn-step-timeline, .sn-services-grid { grid-template-columns: 1fr; gap: 30px; }
    .sn-section-title { font-size: 1.8rem; }
    .sn-arch-wrapper, .sn-services-wrapper { padding: 50px 0; }
  }

  .sn-clean-wrapper {
    background-color: #FFFFFF;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #334155;
    padding: 100px 0; /* Extra spacing top/bottom for a clean feel */
  }

  .sn-clean-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .sn-clean-title {
    font-size: 2.5rem;
    color: #0F1E36;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .sn-clean-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
  }

  /* 3-Column Light Grid Matrix */
  .sn-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Spacious gaps */
  }

  /* Minimalist Box Card Structure */
  .sn-minimal-card {
    background: #F8FAFC; /* Very light subtle gray contrast */
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .sn-minimal-card:hover {
    transform: translateY(-4px);
    border-color: #11A748;
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(17, 167, 72, 0.08);
  }

  .sn-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }

  /* Thin line professional icons */
  .sn-icon-box {
    color: #11A748;
    width: 32px;
    height: 32px;
  }

  .sn-icon-box svg {
    width: 100%;
    height: 100%;
  }

  .sn-num-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94A3B8;
    background: #E2E8F0;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: monospace;
  }

  .sn-minimal-card:hover .sn-num-badge {
    background: #EBFEEF;
    color: #11A748;
  }

  /* Typography */
  .sn-minimal-card h4 {
    font-size: 1.2rem;
    color: #0F1E36;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .sn-minimal-card p {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
  }

  /* Centers the last (5th) card beautifully if it sits on the second row alone */
  .sn-card-split {
    grid-column: span 1;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .sn-minimal-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-clean-title { font-size: 2.1rem; }
  }

  @media (max-width: 650px) {
    .sn-minimal-grid { grid-template-columns: 1fr; gap: 20px; }
    .sn-clean-wrapper { padding: 60px 0; }
  }

  .sn-hero-wrapper {
    background: linear-gradient(180deg, #EDF5F9 0%, #FFFFFF 100%);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #2D3748;
    padding: 10px 0 0 0;
    position: relative;
    overflow: hidden;
  }

  .sn-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .sn-hero-left {
    flex: 1.2;
    min-width: 320px;
    padding-top: 35px;
  }

  .sn-hero-right {
    flex: 0.9;
    min-width: 320px;
  }

  /* Badge Row Component */
  .sn-badge-row {
    margin-bottom: 25px;
  }

  .sn-pills-tag {
    background: #EBFEEF;
    color: #009245;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(57, 181, 74, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Content Core Styling */
  .sn-main-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #0F1E36;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
  }

  .sn-main-description {
    font-size: 1.05rem;
    color: #5A6A85;
    line-height: 1.65;
    margin-bottom: 35px;
  }

  /* Interactive Form CTA Buttons */
  .sn-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .sn-btn {
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
  }

  .sn-btn-outline {
    border: 1px solid #0F1E36;
    color: #0F1E36;
    background: #ffffff;
  }

  .sn-btn-outline:hover {
    background: #0F1E36;
    color: #ffffff;
  }

  .sn-btn-filled {
    background: #11A748;
    color: #ffffff;
    border: 1px solid #11A748;
  }

  .sn-btn-filled:hover {
    background: #0D8F3C;
    border-color: #0D8F3C;
  }

  /* Right Column Lead Card */
  .sn-lead-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
  }

  .sn-lead-card h3 {
    font-size: 1.35rem;
    color: #0F1E36;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .sn-card-sub {
    font-size: 0.88rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* Form Elements Matrix */
  .sn-capture-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sn-form-group input, .sn-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #2D3748;
    background-color: #FFFFFF;
    outline: none;
  }

  .sn-form-group input::placeholder {
    color: #A0AEC0;
  }

  .sn-form-group input:focus, .sn-form-group select:focus {
    border-color: #11A748;
  }

  /* Captcha Structural Box */
  .sn-captcha-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
  }

  .sn-captcha-lbl {
    font-size: 0.85rem;
    color: #4A5568;
    font-weight: 500;
  }

  .sn-captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sn-captcha-box {
    background: #EDF2F7;
    color: #2B6CB0;
    font-weight: 700;
    font-style: italic;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 4px;
    font-size: 1rem;
    border: 1px solid #CBD5E0;
    user-select: none;
  }

  .sn-refresh-btn {
    background: #4A5568;
    border: none;
    padding: 9px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
  }

  .sn-refresh-btn:hover {
    background: #2D3748;
  }

  .sn-captcha-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
  }

  .sn-submit-btn {
    background: #11A748;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
  }

  .sn-submit-btn:hover {
    background: #0D8F3C;
  }

  /* Bottom White Box Metrics Layout */
  .sn-metrics-strip {
    background: #ffffff;
    margin-top: 50px;
    border-top: 1px solid #E2E8F0;
    padding: 40px 0;
  }

  .sn-metrics-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .sn-metric-item {
    text-align: center;
    min-width: 200px;
  }

  .sn-counter-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0F1E36;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
  }

  .sn-counter-lbl {
    font-size: 0.95rem;
    color: #11A748;
    font-weight: 700;
  }

  /* Responsive Rules Matrix */
  @media (max-width: 991px) {
    .sn-hero-container { flex-direction: column; gap: 30px; }
    .sn-hero-left, .sn-hero-right { width: 100%; flex: none; }
    .sn-main-title { font-size: 2.2rem; }
    .sn-metrics-container { gap: 20px; }
    .sn-metric-item { min-width: 100%; border-bottom: 1px solid #E2E8F0; padding-bottom: 15px; }
    .sn-metric-item:last-child { border-none; }
  }