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

  :root {
    --shuptrine-blue: #8BA9B5;
    --shuptrine-blue-light: #B5CDD6;
    --shuptrine-blue-dark: #5A7A87;
    --cream: #FAF8F5;
    --warm-gray: #E8E4DF;
    --text-dark: #3A3632;
    --text-muted: #7A756E;
    --warm-brown: #A89080;
    --soft-gold: #C4A962;
  }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
  }

  /* Header */
  header {
    height: 70px;
    background: white;
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--shuptrine-blue);
    letter-spacing: 2px;
    text-decoration: none;
  }

  .logo span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-left: 15px;
    letter-spacing: 1px;
  }

  nav {
    display: flex;
    gap: 8px;
  }

  nav a {
    background: transparent;
    border: 1px solid var(--warm-gray);
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
  }

  nav a:hover, nav a.active {
    border-color: var(--shuptrine-blue);
    color: var(--shuptrine-blue);
    background: rgba(139, 169, 181, 0.05);
  }

  /* Hero Section */
  .hero {
    text-align: center;
    padding: 100px 40px 80px;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238BA9B5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(139, 169, 181, 0.2);
  }

  .hero-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--shuptrine-blue);
    fill: none;
    stroke-width: 1.5;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--shuptrine-blue);
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
  }

  /* Main Content */
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
  }

  /* Section Titles */
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .section-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
  }

  /* Learning Paths Grid */
  .paths-section {
    margin-bottom: 100px;
  }

  .paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .path-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  }

  .path-card-header {
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .path-card:nth-child(1) .path-card-header {
    background: linear-gradient(135deg, #8BA9B5 0%, #5A7A87 100%);
  }

  .path-card:nth-child(2) .path-card-header {
    background: linear-gradient(135deg, #A89080 0%, #7A6A5A 100%);
  }

  .path-card:nth-child(3) .path-card-header {
    background: linear-gradient(135deg, #C4A962 0%, #9A8042 100%);
  }

  .path-card:nth-child(4) .path-card-header {
    background: linear-gradient(135deg, #7A9A7A 0%, #5A7A5A 100%);
  }

  .path-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    line-height: 1;
  }

  .path-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .path-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
  }

  .path-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
  }

  .path-card-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
  }

  .path-card-body {
    padding: 30px 40px 40px;
  }

  .path-lessons {
    list-style: none;
    margin-bottom: 25px;
  }

  .path-lessons li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-gray);
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
  }

  .path-lessons li:last-child {
    border-bottom: none;
  }

  .path-card:hover .path-lessons li {
    color: var(--text-dark);
  }

  .lesson-number {
    width: 22px;
    height: 22px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .path-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--shuptrine-blue);
    font-weight: 400;
    transition: gap 0.3s;
  }

  .path-card:hover .path-cta {
    gap: 12px;
  }

  .path-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  /* Quick Guides Section */
  .guides-section {
    margin-bottom: 100px;
  }

  .guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .guide-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }

  .guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .guide-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .guide-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--shuptrine-blue);
    fill: none;
    stroke-width: 1.5;
  }

  .guide-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .guide-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .guide-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: var(--shuptrine-blue-light);
    border-radius: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--shuptrine-blue-dark);
  }

  /* Ask Stephanie Section */
  .ask-section {
    background: white;
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }

  .ask-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--shuptrine-blue-light) 0%, transparent 70%);
    opacity: 0.3;
  }

  .ask-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--warm-brown) 0%, transparent 70%);
    opacity: 0.15;
  }

  .ask-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .ask-content > * {
    display: block;
  }

  .ask-content > .ask-badge {
    width: auto;
  }

  .ask-content > h2,
  .ask-content > p {
    width: 100%;
    text-align: center;
  }

  .ask-content > .show-questions-btn {
    width: auto;
  }

  .ask-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 30px;
  }

  .ask-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0 auto 20px;
    text-align: center;
  }

  .ask-section > .ask-content > p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-align: center;
  }

  .ask-section > .ask-content > .ask-search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .ask-section > .ask-content > .questions-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .ask-section > .ask-content > .show-questions-btn {
    margin: 30px auto 0;
    display: block;
  }

  .ask-section .no-questions {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-style: italic;
    font-size: 16px;
    margin: 20px 0;
  }

  .ask-preview {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 20px;
    padding: 30px;
  }

  .ask-input-preview {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .ask-input-preview input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--warm-gray);
    border-radius: 30px;
    font-size: 15px;
    color: var(--text-muted);
    background: white;
    outline: none;
    cursor: not-allowed;
  }

  .ask-input-preview button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--warm-gray);
    border: none;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ask-input-preview button svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
  }

  .ask-coming-soon {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
  }

  /* Wizard Modal */
  .wizard-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 54, 50, 0.95);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .wizard-overlay.active {
    display: flex;
    opacity: 1;
  }

  .wizard-container {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .wizard-overlay.active .wizard-container {
    transform: scale(1);
  }

  .wizard-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .wizard-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
  }

  .wizard-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .wizard-close:hover {
    background: var(--warm-gray);
  }

  .wizard-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    stroke-width: 2;
  }

  .wizard-progress {
    padding: 0 40px;
    background: var(--cream);
  }

  .wizard-steps {
    display: flex;
    padding: 25px 0;
    gap: 8px;
  }

  .wizard-step {
    flex: 1;
    height: 4px;
    background: var(--warm-gray);
    border-radius: 2px;
    transition: background 0.3s;
    cursor: pointer;
  }

  .wizard-step.completed {
    background: var(--shuptrine-blue);
  }

  .wizard-step.current {
    background: var(--shuptrine-blue);
  }

  .wizard-body {
    flex: 1;
    overflow-y: auto;
    padding: 50px;
  }

  .wizard-content {
    display: none;
    animation: wizardFadeIn 0.4s ease;
  }

  .wizard-content.active {
    display: block;
  }

  @keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .wizard-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .wizard-content .step-number {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shuptrine-blue);
    margin-bottom: 10px;
  }

  .wizard-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
  }

  .wizard-content ul {
    list-style: none;
    margin-bottom: 30px;
  }

  .wizard-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--warm-gray);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
  }

  .wizard-content ul li:last-child {
    border-bottom: none;
  }

  .wizard-content ul li svg {
    width: 20px;
    height: 20px;
    stroke: var(--shuptrine-blue);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .wizard-tip {
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 30px;
  }

  .wizard-tip-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
  }

  .wizard-tip p {
    color: white;
    margin-bottom: 0;
    font-style: italic;
  }

  .wizard-footer {
    padding: 25px 40px;
    border-top: 1px solid var(--warm-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .wizard-nav-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .wizard-nav-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  .wizard-nav-btn.prev {
    background: transparent;
    border: 1px solid var(--warm-gray);
    color: var(--text-muted);
  }

  .wizard-nav-btn.prev:hover {
    border-color: var(--shuptrine-blue);
    color: var(--shuptrine-blue);
  }

  .wizard-nav-btn.next {
    background: var(--shuptrine-blue);
    border: none;
    color: white;
  }

  .wizard-nav-btn.next:hover {
    background: var(--shuptrine-blue-dark);
  }

  .wizard-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero h1 {
      font-size: 42px;
    }

    .paths-grid {
      grid-template-columns: 1fr;
    }

    .guides-grid {
      grid-template-columns: 1fr;
    }

    .ask-section {
      padding: 50px 30px;
    }

    .wizard-body {
      padding: 30px;
    }

    .wizard-content h4 {
      font-size: 26px;
    }
  }

  @media (max-width: 600px) {
    header {
      padding: 0 15px;
    }

    nav {
      display: none;
    }

    .hero {
      padding: 60px 20px;
    }

    .hero h1 {
      font-size: 32px;
    }

    main {
      padding: 0 20px 60px;
    }

    .path-card-header {
      padding: 30px;
    }

    .path-card-body {
      padding: 25px 30px 30px;
    }
  }

  /* Guide Modal */
  .guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
  }

  .guide-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .guide-container {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .guide-overlay.active .guide-container {
    transform: scale(1);
  }

  .guide-modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .guide-modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
  }

  .guide-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
  }

  .guide-close:hover {
    background: var(--warm-gray);
  }

  .guide-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    stroke-width: 2;
  }

  .guide-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
  }

  .guide-image {
    margin-bottom: 30px;
    text-align: center;
  }

  .guide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .guide-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .guide-content > p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 30px;
  }

  .guide-section {
    margin-bottom: 35px;
  }

  .guide-section h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .guide-section ul {
    list-style: none;
    margin-bottom: 20px;
  }

  .guide-section ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-gray);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
  }

  .guide-section ul li:last-child {
    border-bottom: none;
  }

  .guide-section ul li strong {
    color: var(--shuptrine-blue);
    font-weight: 400;
  }

  .guide-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .guide-section ol li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
  }

  .guide-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .guide-tip {
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 30px;
  }

  .guide-tip-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
  }

  .guide-tip p {
    color: white;
    margin-bottom: 0;
    font-style: italic;
    font-size: 15px;
  }

  @media (max-width: 768px) {
    .guide-container {
      max-width: 100%;
      max-height: 95vh;
    }

    .guide-modal-header {
      padding: 20px 25px;
    }

    .guide-modal-header h3 {
      font-size: 24px;
    }

    .guide-modal-body {
      padding: 25px;
    }

    .guide-content h4 {
      font-size: 22px;
    }

    .ask-section {
      padding: 40px 30px;
    }

    .ask-section h2 {
      font-size: 32px;
    }

    .ask-section > .ask-content > p {
      font-size: 15px;
      margin-bottom: 30px;
    }

    .ask-section > .ask-content > .ask-search-container {
      margin-bottom: 25px;
    }
  }