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

 :root {
     --background: hsl(36 25% 97%);
     --foreground: hsl(222 47% 11%);
     --card: hsl(0 0% 100%);
     --primary: hsl(222 47% 14%);
     --primary-foreground: hsl(45 100% 96%);
     --muted-foreground: hsl(220 9% 46%);
     --secondary: hsl(36 20% 95%);
     --border: hsl(220 13% 91%);
     --accent: hsl(38 72% 44%);
     --accent-foreground: hsl(0 0% 100%);
     --bg-page: #f8f6f1;
 }

 body {
     font-family: 'Lora', serif;
     background: var(--bg-page);
     color: var(--foreground);
     min-height: 100vh;
 }

 /* ===== NAVBAR ===== */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 50;
 }

 .navbar-inner {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(16px);
     border-bottom: 1px solid hsla(220, 13%, 91%, 0.4);
 }

 .navbar-bar {
     max-width: 80rem;
     margin: 0 auto;
     padding: 0 1.5rem;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .navbar-logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
 }

 .navbar-logo img {
     width: 44px;
     height: 44px;
     border-radius: 8px;
     object-fit: cover;
 }

 .navbar-logo span {
     font-weight: 600;
     font-size: 1.5rem;
     color: var(--primary);
     letter-spacing: -0.02em;
 }

 .btn-login {
     background: #fff;
     color: var(--primary);
     font-weight: 600;
     border-radius: 9999px;
     padding: 0.5rem 1.25rem;
     font-size: 0.875rem;
     border: none;
     cursor: pointer;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: background 0.2s;
 }

 .btn-login:hover {
     background: rgba(255, 255, 255, 0.9);
 }

 /* ===== STEPPER ===== */
 .page-content {
     padding-top: 6rem;
     padding-bottom: 5rem;
     padding-left: 1rem;
     padding-right: 1rem;
 }

 .stepper {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0;
     max-width: 20rem;
     margin: 0 auto 3rem;
 }

 .step {
     display: flex;
     align-items: center;
 }

 .step-col {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .step-circle {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.875rem;
     font-weight: 700;
     border: 2px solid;
     transition: all 0.2s;
 }

 .step-circle.active,
 .step-circle.done {
     background: var(--primary);
     border-color: var(--primary);
     color: var(--primary-foreground);
 }

 .step-circle.idle {
     background: #fff;
     border-color: var(--border);
     color: var(--muted-foreground);
 }

 .step-label {
     font-size: 0.75rem;
     margin-top: 0.375rem;
     font-weight: 500;
     color: var(--muted-foreground);
 }

 .step-label.active {
     color: var(--primary);
 }

 .step-line {
     width: 64px;
     height: 2px;
     margin-bottom: 1.25rem;
     background: var(--border);
 }

 .step-line.done {
     background: var(--primary);
 }

 .step-circle svg {
     width: 16px;
     height: 16px;
 }

 /* ===== TITLE ===== */
 .title-block {
     text-align: center;
     margin-bottom: 2.5rem;
     opacity: 0;
     animation: fadeUp 0.5s ease forwards;
 }

 .title-block h1 {
     font-family: 'Playfair Display', serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary);
 }

 .title-block p {
     color: var(--muted-foreground);
     margin-top: 0.5rem;
     font-size: 0.875rem;
     font-weight: 300;
 }

 /* ===== LAYOUT ===== */
 .grid-2 {
     max-width: 64rem;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     align-items: start;
 }

 @media (min-width: 1024px) {
     .grid-2 {
         grid-template-columns: 1fr 1fr;
     }
 }

 .left-col {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
     opacity: 0;
     animation: fadeLeft 0.5s ease 0.1s forwards;
 }

 .right-col {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
     opacity: 0;
     animation: fadeRight 0.5s ease 0.2s forwards;
 }

 @media (min-width: 1024px) {
     .right-col {
         position: sticky;
         top: 6rem;
     }
 }

 /* ===== FORM CARD ===== */
 .form-card {
     background: #fff;
     border-radius: 16px;
     border: 1px solid hsla(220, 13%, 91%, 0.3);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
     overflow: hidden;
 }

 .form-card-header {
     padding: 1.25rem 2rem;
     border-bottom: 1px solid hsla(220, 13%, 91%, 0.2);
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .form-card-header .icon-box {
     width: 36px;
     height: 36px;
     border-radius: 8px;
     background: hsla(222, 47%, 14%, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .form-card-header svg {
     width: 16px;
     height: 16px;
     color: var(--primary);
 }

 .form-card-header h2 {
     font-weight: 600;
     color: var(--primary);
     font-size: 1rem;
 }

 .form-card-body {
     padding: 2rem;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .fields-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 @media (max-width: 480px) {
     .fields-row {
         grid-template-columns: 1fr;
     }
 }

 .fields-row-3 {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 1rem;
 }

 @media (max-width: 480px) {
     .fields-row-3 {
         grid-template-columns: 1fr;
     }
 }

 .field label {
     font-size: 0.75rem;
     font-weight: 500;
     color: var(--muted-foreground);
     text-transform: uppercase;
     letter-spacing: 0.025em;
     margin-bottom: 0.5rem;
     display: block;
 }

 .field input,
 .field select {
     width: 100%;
     padding: 0.875rem 1rem;
     border-radius: 12px;
     border: 1px solid hsla(220, 13%, 91%, 0.5);
     background: var(--bg-page);
     font-family: 'Lora', serif;
     font-size: 0.875rem;
     color: var(--primary);
     outline: none;
     transition: border-color 0.2s;
     -webkit-appearance: none;
     appearance: none;
 }

 .field select {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     padding-right: 2.5rem;
 }

 .field input::placeholder {
     color: hsl(220 9% 70%);
 }

 .field input:focus,
 .field select:focus {
     border-color: var(--primary);
 }

 .field .input-wrap {
     position: relative;
 }

 .field .input-wrap .left-icon {
     position: absolute;
     left: 1rem;
     top: 50%;
     transform: translateY(-50%);
     width: 16px;
     height: 16px;
     color: hsla(220, 9%, 46%, 0.5);
 }

 .field .input-wrap .left-icon+input {
     padding-left: 2.75rem;
 }

 .field .input-wrap .right-icon {
     position: absolute;
     right: 1.25rem;
     top: 50%;
     transform: translateY(-50%);
     width: 20px;
     height: 20px;
     color: hsla(220, 9%, 46%, 0.5);
 }

 .field .card-input {
     padding: 1rem 3.5rem 1rem 1.25rem;
     font-size: 1rem;
     font-family: monospace;
     letter-spacing: 0.15em;
 }

 .field .cvv-input {
     font-family: monospace;
 }

 .divider {
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .divider-line {
     flex: 1;
     height: 1px;
     background: hsla(220, 13%, 91%, 0.3);
 }

 .divider-text {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.75rem;
     color: var(--muted-foreground);
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.025em;
 }

 .divider-text svg {
     width: 14px;
     height: 14px;
 }

 /* ===== TERMS ===== */
 .terms {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     padding: 1rem;
     border-radius: 12px;
     border: 1px solid;
     cursor: pointer;
     transition: all 0.2s;
 }

 .terms.agreed {
     border-color: hsla(222, 47%, 14%, 0.3);
     background: hsla(222, 47%, 14%, 0.05);
 }

 .terms:not(.agreed) {
     border-color: hsla(220, 13%, 91%, 0.4);
     background: #fff;
 }

 .terms-checkbox {
     width: 20px;
     height: 20px;
     border-radius: 6px;
     border: 2px solid;
     flex-shrink: 0;
     margin-top: 2px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
 }

 .terms.agreed .terms-checkbox {
     background: var(--primary);
     border-color: var(--primary);
 }

 .terms:not(.agreed) .terms-checkbox {
     border-color: var(--border);
     background: #fff;
 }

 .terms-checkbox svg {
     width: 12px;
     height: 12px;
     color: var(--primary-foreground);
 }

 .terms p {
     font-size: 0.75rem;
     color: var(--muted-foreground);
     line-height: 1.5;
 }

 .terms a {
     color: var(--primary);
     text-decoration: underline;
 }

 /* ===== PAY BUTTON ===== */
 .btn-pay {
     width: 100%;
     border-radius: 9999px;
     padding: 1.5rem 0;
     background: var(--primary);
     color: var(--primary-foreground);
     font-family: 'Lora', serif;
     font-weight: 600;
     font-size: 0.875rem;
     border: none;
     cursor: pointer;
     box-shadow: 0 10px 15px -3px hsla(222, 47%, 14%, 0.25);
     transition: all 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .btn-pay:hover:not(:disabled) {
     background: hsl(222 47% 18%);
     transform: scale(1.01);
 }

 .btn-pay svg {
     width: 16px;
     height: 16px;
 }

 .spinner {
     width: 16px;
     height: 16px;
     border: 2px solid hsla(45, 100%, 96%, 0.3);
     border-top-color: var(--primary-foreground);
     border-radius: 50%;
     animation: spin 0.6s linear infinite;
 }

 /* ===== SECURITY BADGES ===== */
 .badges {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     font-size: 0.75rem;
     color: var(--muted-foreground);
 }

 .badges span {
     display: flex;
     align-items: center;
     gap: 0.375rem;
 }

 .badges svg {
     width: 14px;
     height: 14px;
     color: var(--primary);
 }

 .badges .sep {
     width: 1px;
     height: 12px;
     background: var(--border);
 }

 /* ===== BACK LINK ===== */
 .back-link-wrap {
     text-align: center;
 }

 .back-link {
     display: inline-flex;
     align-items: center;
     gap: 0.375rem;
     font-size: 0.875rem;
     color: var(--muted-foreground);
     text-decoration: none;
     transition: color 0.2s;
     background: none;
     border: none;
     cursor: pointer;
     font-family: 'Lora', serif;
 }

 .back-link:hover {
     color: var(--primary);
 }

 .back-link svg {
     width: 16px;
     height: 16px;
 }

 /* ===== SUMMARY CARD ===== */
 .summary-card {
     background: #fff;
     border-radius: 16px;
     border: 1px solid hsla(220, 13%, 91%, 0.3);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
     overflow: hidden;
 }

 .summary-header {
     background: linear-gradient(135deg, var(--primary), #1e3a5f);
     padding: 1.25rem 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .summary-header-left {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .summary-header-icon {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .summary-header-icon svg {
     width: 16px;
     height: 16px;
     color: var(--accent);
 }

 .summary-header-label {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
 }

 .badge-popular {
     display: inline-flex;
     align-items: center;
     gap: 0.25rem;
     padding: 0.25rem 0.625rem;
     border-radius: 9999px;
     background: var(--accent);
     color: var(--accent-foreground);
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.025em;
 }

 .badge-popular svg {
     width: 10px;
     height: 10px;
 }

 .summary-body {
     padding: 1.5rem;
 }

 .summary-top {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 1.25rem;
 }

 .summary-plan-name {
     font-family: 'Playfair Display', serif;
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--primary);
 }

 .summary-billing {
     font-size: 0.75rem;
     color: var(--muted-foreground);
     margin-top: 0.125rem;
 }

 .summary-price {
     text-align: right;
 }

 .summary-price-val {
     display: flex;
     align-items: baseline;
     justify-content: flex-end;
     gap: 0.125rem;
 }

 .summary-price-val .euro {
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--muted-foreground);
 }

 .summary-price-val .num {
     font-family: 'Playfair Display', serif;
     font-size: 1rem;
     font-weight: 700;
     color: var(--primary);
 }

 .summary-price-period {
     font-size: 10px;
     color: var(--muted-foreground);
     text-transform: uppercase;
     letter-spacing: 0.025em;
 }

 .trial-box {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     background: hsla(38, 72%, 44%, 0.05);
     border: 1px solid hsla(38, 72%, 44%, 0.15);
     border-radius: 12px;
     padding: 0.875rem 1rem;
     margin-bottom: 1.25rem;
 }

 .trial-icon {
     width: 36px;
     height: 36px;
     border-radius: 8px;
     background: hsla(38, 72%, 44%, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .trial-icon svg {
     width: 16px;
     height: 16px;
     color: var(--accent);
 }

 .trial-text {
     flex: 1;
 }

 .trial-title {
     font-weight: 600;
     color: var(--primary);
     font-size: 0.875rem;
 }

 .trial-sub {
     font-size: 0.75rem;
     color: var(--muted-foreground);
 }

 .trial-price {
     font-size: 0.875rem;
     font-weight: 700;
     color: #16a34a;
 }

 .total-row {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     padding: 0.75rem 0;
     border-top: 1px solid hsla(220, 13%, 91%, 0.2);
     margin-bottom: 1.5rem;
 }

 .total-label {
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--primary);
 }

 .total-val {
     display: flex;
     align-items: baseline;
     gap: 0.125rem;
 }

 .total-val .euro {
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--muted-foreground);
 }

 .total-val .num {
     font-family: 'Playfair Display', serif;
     font-size: 1.125rem;
     font-weight: 700;
     color: var(--primary);
 }

 .services-section {
     border-top: 1px solid hsla(220, 13%, 91%, 0.2);
     padding-top: 1.25rem;
 }

 .services-header {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-bottom: 1rem;
 }

 .services-icon {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: hsla(222, 47%, 14%, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .services-icon svg {
     width: 16px;
     height: 16px;
     color: var(--primary);
 }

 .services-header h3 {
     font-weight: 600;
     color: var(--primary);
     font-size: 1rem;
 }

 .services-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.625rem;
 }

 .services-list li {
     display: flex;
     align-items: flex-start;
     gap: 0.625rem;
 }

 .services-list svg {
     width: 16px;
     height: 16px;
     margin-top: 0.125rem;
     flex-shrink: 0;
     color: var(--accent);
 }

 .services-list span {
     font-size: 0.875rem;
     color: hsla(222, 47%, 11%, 0.7);
 }

 /* ===== REASSURANCE CARD ===== */
 .reassurance-card {
     background: #fff;
     border-radius: 16px;
     border: 1px solid hsla(220, 13%, 91%, 0.3);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
     padding: 1.5rem;
 }

 .reassurance-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 .reassurance-item {
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
 }

 .reassurance-item svg {
     width: 16px;
     height: 16px;
     color: var(--primary);
     flex-shrink: 0;
     margin-top: 0.125rem;
 }

 .reassurance-item p.title {
     font-weight: 600;
     color: var(--primary);
     font-size: 0.75rem;
 }

 .reassurance-item p.sub {
     font-size: 0.75rem;
     color: var(--muted-foreground);
 }

 .card-badges {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid hsla(220, 13%, 91%, 0.2);
 }

 .card-badge {
     padding: 0.25rem 0.625rem;
     border-radius: 4px;
     color: #fff;
     font-size: 0.75rem;
     font-weight: 700;
 }

 .card-badge.visa {
     background: #334155;
 }

 .card-badge.mc {
     background: #64748b;
 }

 .card-badge.cb {
     background: #2563eb;
 }

 /* ===== FOOTER ===== */
 .footer {
     background: var(--primary);
     border-top: 1px solid hsla(45, 100%, 96%, 0.05);
 }

 .footer-disclaimer {
     background: #0f172a;
     padding: 1.25rem 1.5rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .footer-disclaimer p {
     max-width: 80rem;
     margin: 0 auto;
     font-size: 10px;
     color: rgba(255, 255, 255, 0.4);
     line-height: 1.6;
 }

 .footer-main {
     max-width: 80rem;
     margin: 0 auto;
     padding: 4rem 1.5rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
 }

 @media (min-width: 768px) {
     .footer-grid {
         grid-template-columns: 2fr 1fr 1fr;
     }
 }

 .footer-brand h4 {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-bottom: 1rem;
 }

 .footer-brand img {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     object-fit: cover;
 }

 .footer-brand span {
     font-weight: 600;
     font-size: 1.5rem;
     color: var(--primary-foreground);
     letter-spacing: -0.02em;
 }

 .footer-brand p {
     color: hsla(45, 100%, 96%, 0.4);
     font-size: 0.875rem;
     line-height: 1.6;
     max-width: 24rem;
 }

 .footer-col h4 {
     color: hsla(45, 100%, 96%, 0.6);
     font-weight: 600;
     font-size: 0.75rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 1rem;
 }

 .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .footer-col a {
     color: hsla(45, 100%, 96%, 0.4);
     font-size: 0.875rem;
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-col a:hover {
     color: hsla(45, 100%, 96%, 0.7);
 }

 .footer-bottom {
     margin-top: 4rem;
     padding-top: 2rem;
     border-top: 1px solid hsla(45, 100%, 96%, 0.05);
     display: flex;
     flex-direction: column;
     gap: 1rem;
     align-items: center;
     justify-content: space-between;
 }

 @media (min-width: 768px) {
     .footer-bottom {
         flex-direction: row;
     }
 }

 .footer-bottom p {
     font-size: 0.75rem;
     color: hsla(45, 100%, 96%, 0.3);
 }

 /* ===== ANIMATIONS ===== */
 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(16px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeLeft {
     from {
         opacity: 0;
         transform: translateX(-20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeRight {
     from {
         opacity: 0;
         transform: translateX(20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @media (max-width: 480px) {
     .form-card-body {
         padding: 1.5rem;
     }

     .title-block h1 {
         font-size: 2rem;
     }
 }
