* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --primary: #f06449;
    --secondary: #112330;
    --white: #ffffff;
    --sensoriel: #8b5cf6;
    --emotionnel: #ec4899;
    --mental: #3b82f6;
    --non: #6b7280;
  }
  body {
    font-family: "Outfit", sans-serif;
    min-height: 100vh;
    background: linear-gradient(
      135deg,
      var(--secondary) 0%,
      #1a3a4a 50%,
      var(--secondary) 100%
    );
    color: var(--white);
    overflow-x: hidden;
  }
  .noise {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }
  .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
  }
  .header {
    text-align: center;
    margin-bottom: 40px;
  }
  .logo-container {
    display: inline-block;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .logo-container.small {
    padding: 10px 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
  }
  .logo-text strong {
    font-weight: 700;
  }
  .small .logo-text {
    font-size: 14px;
  }
  h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    background: linear-gradient(
      135deg,
      var(--white) 0%,
      var(--primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
  }
  h1.small {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  .subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.6;
  }
  .card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  @media (max-width: 600px) {
    .card {
      padding: 25px 20px;
    }
  }
  .cta-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  @media (max-width: 600px) {
    .profiles-grid {
      grid-template-columns: 1fr;
    }
  }
  .profile-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
  }
  .profile-card.sensoriel {
    border-color: rgba(139, 92, 246, 0.3);
  }
  .profile-card.emotionnel {
    border-color: rgba(236, 72, 153, 0.3);
  }
  .profile-card.mental {
    border-color: rgba(59, 130, 246, 0.3);
  }
  .profile-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .profile-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
  }
  .profile-desc {
    font-size: 0.8rem;
    opacity: 0.6;
  }
  .btn {
    background: linear-gradient(135deg, var(--primary) 0%, #e55a3f 100%);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px var(--primary);
    font-family: inherit;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px var(--primary);
  }
  .btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .btn-cta {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 10px 30px -10px #22c55e;
  }
  .btn-cta:hover {
    box-shadow: 0 15px 35px -10px #22c55e;
  }
  .btn-next {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
  }
  .toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  .toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
  }
  .toggle label {
    cursor: pointer;
  }
  .input {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    outline: none;
    margin-bottom: 16px;
    font-family: inherit;
  }
  .input:focus {
    border-color: var(--primary);
  }
  .input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #ff8066 100%);
    transition: width 0.5s ease;
    border-radius: 3px;
  }
  .question-number {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 100, 73, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  .question-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  @media (max-width: 600px) {
    .question-text {
      font-size: 1.1rem;
    }
  }
  .choices-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }
  .choice-btn {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
  }
  .choice-btn:hover {
    background: rgba(240, 100, 73, 0.2);
    border-color: var(--primary);
  }
  .choice-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
  }
  .selected-choice {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    min-height: 20px;
  }
  .profile-result {
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  .profile-result.sensoriel {
    background: linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.2) 0%,
      rgba(139, 92, 246, 0.05) 100%
    );
    border: 2px solid var(--sensoriel);
  }
  .profile-result.emotionnel {
    background: linear-gradient(
      135deg,
      rgba(236, 72, 153, 0.2) 0%,
      rgba(236, 72, 153, 0.05) 100%
    );
    border: 2px solid var(--emotionnel);
  }
  .profile-result.mental {
    background: linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(59, 130, 246, 0.05) 100%
    );
    border: 2px solid var(--mental);
  }
  .profile-result.non {
    background: linear-gradient(
      135deg,
      rgba(107, 114, 128, 0.2) 0%,
      rgba(107, 114, 128, 0.05) 100%
    );
    border: 2px solid var(--non);
  }
  .profile-result-icon {
    font-size: 4rem;
    margin-bottom: 15px;
  }
  .profile-result-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .profile-result-type {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  .profile-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: left;
  }
  .profile-section h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .profile-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
  }
  .diagnostic-box {
    background: rgba(240, 100, 73, 0.1);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    border-left: 4px solid var(--primary);
  }
  .diagnostic-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .cta-box {
    background: linear-gradient(
      135deg,
      rgba(34, 197, 94, 0.15) 0%,
      rgba(34, 197, 94, 0.05) 100%
    );
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid rgba(34, 197, 94, 0.3);
  }
  .cta-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .email-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
  }
  .email-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
  }
  .email-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .email-input-group .input {
    max-width: 280px;
    margin-bottom: 0;
  }
  .email-input-group .btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
  .email-sent {
    color: #22c55e;
    font-weight: 500;
    padding: 10px;
  }
  .footer {
    text-align: center;
    margin-top: 40px;
    opacity: 0.6;
    font-size: 0.9rem;
  }
  .footer span {
    color: var(--primary);
  }
  .text-center {
    text-align: center;
  }
  .mt-20 {
    margin-top: 20px;
  }
  .mt-40 {
    margin-top: 40px;
  }
  .mb-30 {
    margin-bottom: 30px;
  }
  .hidden {
    display: none !important;
  }
  .info-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in {
    animation: fadeIn 0.5s ease forwards;
  }