:root {
    --cw-blue: #1B6FF4;
    --cw-blue-dark: #1558CC;
    --cw-blue-light: #E8F1FF;
    --cw-blue-glow: #4D94FF;
    --cw-green: #22C55E;
    --cw-green-light: #ECFDF5;
    --cw-navy: #0F172A;
    --cw-gray-900: #1E293B;
    --cw-gray-700: #374151;
    --cw-gray-600: #4B5563;
    --cw-gray-500: #6B7280;
    --cw-gray-400: #9CA3AF;
    --cw-gray-200: #E5E7EB;
    --cw-gray-100: #F3F4F6;
    --cw-gray-50: #F9FAFB;
    --cw-white: #FFFFFF;
    --cw-orange: #F59E0B;
    --cw-red: #EF4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-blue: 0 4px 24px rgba(27,111,244,0.25);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cw-gray-700);
    background: var(--cw-white);
    line-height: 1.7;
    font-size: 17px;
  }

  /* === HEADER / NAV === */
  .cw-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cw-gray-200);
    transition: box-shadow 0.3s;
  }
  .cw-header.scrolled { box-shadow: var(--shadow-sm); }
  .cw-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cw-navy);
  }
  .cw-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--cw-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(27,111,244,0.3);
  }
  .cw-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cw-blue);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-blue);
  }
  .cw-header-cta:hover {
    background: var(--cw-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(27,111,244,0.35);
  }
  .cw-header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cw-gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-right: 16px;
  }
  .cw-header-phone:hover { color: var(--cw-blue); }
  .cw-header-right { display: flex; align-items: center; }

  /* === HERO === */
  .cw-hero {
    background: linear-gradient(135deg, #F0F6FF 0%, #E8F1FF 40%, #F5F3FF 100%);
    padding: 60px 24px 48px;
    position: relative;
    overflow: hidden;
  }
  .cw-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27,111,244,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cw-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cw-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .cw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cw-gray-500);
    margin-bottom: 20px;
  }
  .cw-breadcrumb a {
    color: var(--cw-blue);
    text-decoration: none;
  }
  .cw-breadcrumb a:hover { text-decoration: underline; }
  .cw-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    color: var(--cw-navy);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .cw-hero h1 span {
    background: linear-gradient(135deg, var(--cw-blue) 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cw-hero-sub {
    font-size: 18px;
    color: var(--cw-gray-600);
    max-width: 620px;
    line-height: 1.65;
  }
  .cw-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--cw-gray-500);
    flex-wrap: wrap;
  }
  .cw-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* === MAIN CONTENT === */
  .cw-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
  }

  /* === SUMMARY BOX === */
  .cw-summary {
    margin: -28px 0 40px;
    position: relative;
    z-index: 2;
    background: var(--cw-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px;
    border-left: 5px solid var(--cw-blue);
  }
  .cw-summary-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--cw-navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cw-summary p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--cw-gray-600);
  }
  .cw-summary p:last-of-type { margin-bottom: 0; }
  .cw-summary strong { color: var(--cw-gray-900); }
  .cw-summary-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cw-green-light);
    color: #166534;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    margin: 4px 0;
  }

  /* === CTA BUTTONS === */
  .cw-cta-block {
    margin: 36px 0;
    text-align: center;
    padding: 32px 28px;
    background: linear-gradient(135deg, #F0F6FF 0%, #EDF9F0 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cw-gray-200);
  }
  .cw-cta-block p {
    font-size: 15px;
    color: var(--cw-gray-600);
    margin-bottom: 16px;
  }
  .cw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cw-blue);
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-blue);
    letter-spacing: 0.01em;
  }
  .cw-btn:hover {
    background: var(--cw-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(27,111,244,0.4);
  }
  .cw-btn svg { transition: transform 0.2s; }
  .cw-btn:hover svg { transform: translateX(3px); }
  .cw-btn-green {
    background: var(--cw-green);
    box-shadow: 0 4px 24px rgba(34,197,94,0.3);
  }
  .cw-btn-green:hover {
    background: #16a34a;
    box-shadow: 0 8px 32px rgba(34,197,94,0.4);
  }

  /* === ARTICLE BODY === */
  .cw-article h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--cw-navy);
    margin: 48px 0 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .cw-article p {
    margin-bottom: 18px;
    color: var(--cw-gray-700);
  }
  .cw-article a {
    color: var(--cw-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(27,111,244,0.25);
    transition: border-color 0.2s;
  }
  .cw-article a:hover {
    border-bottom-color: var(--cw-blue);
  }

  /* Step numbers */
  .cw-step-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 48px 0 18px;
  }
  .cw-step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--cw-blue);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(27,111,244,0.3);
  }
  .cw-step-heading h2 {
    margin: 0;
  }

  /* Tip boxes */
  .cw-tip {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    margin: 24px 0;
  }
  .cw-tip-blue {
    background: var(--cw-blue-light);
    border-left: 4px solid var(--cw-blue);
  }
  .cw-tip-green {
    background: var(--cw-green-light);
    border-left: 4px solid var(--cw-green);
  }
  .cw-tip-icon {
    flex-shrink: 0;
    font-size: 22px;
  }
  .cw-tip p {
    margin: 0;
    font-size: 15px;
  }

  /* Checklists */
  .cw-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin: 24px 0;
    list-style: none;
  }
  .cw-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cw-gray-50);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--cw-gray-700);
  }
  .cw-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--cw-green-light);
    color: var(--cw-green);
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* === FAQ === */
  .cw-faq { margin: 40px 0; }
  .cw-faq-item {
    border: 1px solid var(--cw-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .cw-faq-item:hover { box-shadow: var(--shadow-sm); }
  .cw-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--cw-gray-900);
    background: var(--cw-white);
    transition: background 0.2s;
    user-select: none;
  }
  .cw-faq-q:hover { background: var(--cw-gray-50); }
  .cw-faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    color: var(--cw-gray-400);
  }
  .cw-faq-item.open .cw-faq-chevron { transform: rotate(180deg); color: var(--cw-blue); }
  .cw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
    padding: 0 22px;
  }
  .cw-faq-item.open .cw-faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
  }
  .cw-faq-a p {
    font-size: 15px;
    color: var(--cw-gray-600);
    line-height: 1.7;
    margin: 0;
  }

  /* === BOTTOM CTA === */
  .cw-cta-final {
    margin: 48px 0 36px;
    padding: 40px 36px;
    background: linear-gradient(135deg, var(--cw-navy) 0%, #1E3A5F 50%, #0F172A 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cw-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(27,111,244,0.15) 0%, transparent 60%);
  }
  .cw-cta-final::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 60%);
  }
  .cw-cta-final-inner { position: relative; z-index: 1; }
  .cw-cta-final h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .cw-cta-final p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.65;
  }
  .cw-btn-white {
    background: white;
    color: var(--cw-blue);
    box-shadow: 0 4px 24px rgba(255,255,255,0.2);
  }
  .cw-btn-white:hover {
    background: var(--cw-gray-100);
    color: var(--cw-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.3);
  }
  .cw-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .cw-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
  }

  /* === DISCLAIMER === */
  .cw-disclaimer {
    margin: 32px 0;
    padding: 18px 22px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: #92400E;
    line-height: 1.65;
  }
  .cw-disclaimer strong { color: #78350F; }

  /* === FOOTER === */
  .cw-footer {
    background: var(--cw-gray-50);
    border-top: 1px solid var(--cw-gray-200);
    padding: 40px 24px;
  }
  .cw-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .cw-footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--cw-navy);
    margin-bottom: 8px;
  }
  .cw-footer-copy {
    font-size: 13px;
    color: var(--cw-gray-500);
  }
  .cw-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cw-footer-links a {
    font-size: 14px;
    color: var(--cw-gray-500);
    text-decoration: none;
  }
  .cw-footer-links a:hover { color: var(--cw-blue); }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .cw-hero { padding: 40px 20px 36px; }
    .cw-summary { margin: -20px 0 32px; padding: 22px 20px; }
    .cw-checklist { grid-template-columns: 1fr; }
    .cw-cta-final { padding: 32px 24px; }
    .cw-cta-final h2 { font-size: 24px; }
    .cw-header-phone { display: none; }
    .cw-step-heading { gap: 10px; }
    .cw-step-num { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
    .cw-step-heading h2 { font-size: 20px; }
  }

  /* === ANIMATION === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .cw-hero-inner { animation: fadeUp 0.6s ease-out; }
  .cw-summary { animation: fadeUp 0.6s ease-out 0.15s both; }

  /* Reading progress */
  .cw-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--cw-blue), var(--cw-green));
    z-index: 200;
    transition: width 0.1s;
  }

.logo img {
  max-height: 40px;
}