.elementor-1803 .elementor-element.elementor-element-1961e7d{--display:flex;}.elementor-1803 .elementor-element.elementor-element-fd0da87{--display:flex;}/* Start custom CSS for container, class: .elementor-element-1961e7d */:root {
    --primary:    #6EC1E4;
    --primary-dark: #4aa8d0;
    --primary-light: #eaf6fc;
    --secondary:  #54595F;
    --text:       #7A7A7A;
    --accent:     #FFC000;
    --accent-dark: #e0a800;
    --dark:       #333333;
    --white:      #ffffff;
    --light-bg:   #f7f9fb;
    --border:     #e0edf4;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: transparent;
    line-height: 1.7;
    font-size: 15px;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #2a7fa0 0%, var(--primary) 100%);
    padding: 80px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 220px; height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }

  .hero-logo {
    max-width: 240px;
    margin: 0 auto 32px;
    display: block;
    position: relative;
    z-index: 1;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 34px;
    position: relative;
    z-index: 1;
  }

  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 38px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    z-index: 1;
  }

  .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
  }

  /* ── SECTIONS ── */
  .section { padding: 64px 24px; }
  .section-alt { background: var(--light-bg); }
  .container { max-width: 1060px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .section-title span { color: var(--primary-dark); }

  .section-intro {
    font-size: 15px;
    color: var(--text);
    max-width: 660px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 400;
  }

  .divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 14px 0 24px;
  }

  /* ── INTRO BLOCK ── */
  .intro-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px;
  }

  .intro-block h2 {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .intro-block .divider { margin: 16px auto 24px; }

  .intro-block p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
  }

  /* ── CONDITION CARDS ── */
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
  }

  .condition-card {
    background: var(--white);
    border-top: 4px solid var(--primary);
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(110,193,228,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .condition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(110,193,228,0.18);
  }

  .condition-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .condition-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .tag-row { display: flex; flex-wrap: wrap; gap: 7px; }

  .tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: 0.5px;
  }

  /* ── PROFILE GRID ── */
  .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }

  @media (max-width: 660px) {
    .profile-grid { grid-template-columns: 1fr; }
  }

  .profile-col { padding: 36px 32px; }

  .profile-col.good { background: var(--primary); }
  .profile-col.caution { background: var(--white); }

  .profile-col h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .profile-col.good h3 { color: var(--white); }
  .profile-col.caution h3 { color: var(--dark); }

  .profile-list { list-style: none; }

  .profile-list li {
    padding: 9px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.55;
  }

  .profile-col.caution .profile-list li {
    border-bottom-color: #eee;
    color: var(--text);
  }

  .profile-list li::before {
    content: '✓';
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 13px;
  }

  .profile-col.good .profile-list li { color: rgba(255,255,255,0.92); }
  .profile-col.good .profile-list li::before { color: var(--accent); }
  .profile-col.caution .profile-list li::before { color: var(--primary-dark); }

  /* ── QUOTE ── */
  .quote-block {
    background: var(--primary-light);
    border-left: 5px solid var(--primary);
    padding: 26px 30px;
    margin: 40px 0 0;
  }

  .quote-block p {
    font-size: 17px;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.65;
    font-style: italic;
  }

  .quote-block cite {
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ── STEPS ── */
  .steps { display: flex; flex-direction: column; }

  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child { border-bottom: none; }

  .step-num {
    width: 52px; height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
  }

  .step-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
  }

  /* ── HONEST CARDS ── */
  .honest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  @media (max-width: 660px) { .honest-grid { grid-template-columns: 1fr; } }

  .honest-card { padding: 28px; border-radius: 3px; }
  .honest-card.good {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
  }
  .honest-card.hard {
    background: #fff8e1;

    border-left: 4px solid var(--accent);
  }

  .honest-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .honest-card.good h4 { color: var(--primary-dark); }
  .honest-card.hard h4 { color: #b37d00; }


  .honest-card ul { list-style: none; }
  .honest-card ul li {
    font-size: 14px;
    color: var(--text);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.55;
  }

  .honest-card.good ul li::before { content: '→'; color: var(--primary-dark); font-weight: 600; flex-shrink: 0; }
  .honest-card.hard ul li::before { content: '→'; color: var(--accent-dark); font-weight: 600; flex-shrink: 0; }

  /* ── CREDENTIALS ── */
  .cred-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 36px;
  }

  .cred-item {
    text-align: center;
    padding: 28px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 2px;
  }

  .cred-badge {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
  }

  .cred-item p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.55;
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, #2a7fa0 0%, var(--primary) 100%);
    padding: 72px 24px;
    text-align: center;
    color: var(--white);
  }

  .cta-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    margin-bottom: 14px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
  }

  .cta-section p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 32px;
  }

  .cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 14px;
    font-weight: 400;
  }

  @media (max-width: 660px) {
    .step { grid-template-columns: 52px 1fr; }
    .profile-col { padding: 28px 22px; }
  }/* End custom CSS */