 * {
     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;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 /* ===== 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;
 }

 .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;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: background 0.2s;
 }

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

 /* ===== HERO ===== */
 .hero {
     padding: 8rem 1.5rem 4rem;
     text-align: center;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.375rem 1rem;
     border-radius: 9999px;
     background: hsla(38, 72%, 44%, 0.1);
     border: 1px solid hsla(38, 72%, 44%, 0.2);
     color: var(--accent);
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
 }

 .hero-badge svg {
     width: 12px;
     height: 12px;
     fill: currentColor;
 }

 .hero h1 {
     font-family: 'Playfair Display', serif;
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary);
     line-height: 1.1;
     margin-bottom: 1.5rem;
 }

 @media (min-width: 768px) {
     .hero h1 {
         font-size: 3.75rem;
     }
 }

 .hero h1 .italic {
     font-style: italic;
     color: var(--accent);
 }

 .hero p {
     color: var(--muted-foreground);
     font-size: 1.125rem;
     font-weight: 300;
     max-width: 30rem;
     margin: 0 auto;
     line-height: 1.6;
 }

 .hero-anim {
     opacity: 0;
     animation: fadeInUp 0.6s ease forwards;
 }

 /* ===== PLANS ===== */
 .plans-section {
     padding: 0 1.5rem 3rem;
 }

 .plans-grid {
     max-width: 64rem;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

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

 .plan-card {
     position: relative;
     border-radius: 24px;
     border: 1px solid;
     display: flex;
     flex-direction: column;
     overflow: hidden;
     transition: all 0.3s;
     opacity: 0;
     animation: fadeInUp 0.5s ease forwards;
 }

 .plan-card.popular {
     background: var(--primary);
     border-color: var(--primary);
     box-shadow: 0 25px 50px -12px hsla(222, 47%, 14%, 0.2);
     transform: scale(1.02);
 }

 .plan-card.standard {
     background: #fff;
     border-color: hsla(220, 13%, 91%, 0.4);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
 }

 .plan-card.selected {
     box-shadow: 0 0 0 2px var(--accent), 0 0 0 6px #fff;
 }

 .plan-inner {
     padding: 2rem;
 }

 @media (min-width: 768px) {
     .plan-inner {
         padding: 2.5rem;
     }
 }

 .plan-tag {
     display: inline-flex;
     align-items: center;
     gap: 0.375rem;
     padding: 0.375rem 1rem;
     border-radius: 9999px;
     background: var(--accent);
     color: var(--accent-foreground);
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.025em;
     margin-bottom: 1rem;
 }

 .plan-tag svg {
     width: 12px;
     height: 12px;
     fill: currentColor;
 }

 .plan-name {
     font-weight: 600;
     font-size: 1.125rem;
 }

 .plan-card.popular .plan-name {
     color: #fff;
 }

 .plan-card.standard .plan-name {
     color: var(--primary);
 }

 .plan-desc {
     margin-top: 0.25rem;
     font-size: 0.875rem;
 }

 .plan-card.popular .plan-desc {
     color: rgba(255, 255, 255, 0.6);
 }

 .plan-card.standard .plan-desc {
     color: var(--muted-foreground);
 }

 .plan-price {
     display: flex;
     align-items: baseline;
     gap: 0.25rem;
     margin: 1.5rem 0 2rem;
 }

 .plan-price .euro {
     font-size: 0.875rem;
     font-weight: 500;
 }

 .plan-price .num {
     font-family: 'Playfair Display', serif;
     font-size: 3rem;
     font-weight: 700;
     line-height: 1;
 }

 .plan-price .period {
     font-size: 0.875rem;
     margin-left: 0.25rem;
 }

 .plan-card.popular .plan-price .euro {
     color: rgba(255, 255, 255, 0.6);
 }

 .plan-card.popular .plan-price .num {
     color: #fff;
 }

 .plan-card.popular .plan-price .period {
     color: rgba(255, 255, 255, 0.5);
 }

 .plan-card.standard .plan-price .euro {
     color: var(--muted-foreground);
 }

 .plan-card.standard .plan-price .num {
     color: var(--primary);
 }

 .plan-card.standard .plan-price .period {
     color: var(--muted-foreground);
 }

 .plan-features {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
     margin-bottom: 1rem;
     flex: 1;
 }

 .plan-features li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
 }

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

 .plan-features li span {
     font-size: 0.875rem;
 }

 .plan-card.popular .plan-features li span {
     color: rgba(255, 255, 255, 0.8);
 }

 .plan-card.standard .plan-features li span {
     color: hsla(222, 47%, 11%, 0.7);
 }

 .plan-excluded {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
     margin-bottom: 2rem;
 }

 .plan-excluded li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     opacity: 0.4;
 }

 .plan-excluded li .dash {
     width: 16px;
     height: 16px;
     margin-top: 0.125rem;
     flex-shrink: 0;
     text-align: center;
     font-size: 0.75rem;
     line-height: 1;
 }

 .plan-excluded li span {
     font-size: 0.875rem;
 }

 .plan-card.popular .plan-excluded li span {
     color: rgba(255, 255, 255, 0.6);
 }

 .plan-card.standard .plan-excluded li span {
     color: hsla(222, 47%, 11%, 0.6);
 }

 .plan-excluded-spacer {
     margin-bottom: 2rem;
 }

 .plan-btn {
     width: 100%;
     border-radius: 9999px;
     padding: 1rem 0;
     font-family: 'Lora', serif;
     font-weight: 600;
     font-size: 0.875rem;
     border: none;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

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

 .plan-card.popular .plan-btn {
     background: var(--accent);
     color: var(--accent-foreground);
     box-shadow: 0 10px 15px -3px hsla(38, 72%, 44%, 0.25);
 }

 .plan-card.popular .plan-btn:hover {
     background: hsl(38 72% 40%);
 }

 .plan-card.standard .plan-btn {
     background: var(--primary);
     color: var(--primary-foreground);
 }

 .plan-card.standard .plan-btn:hover {
     background: hsl(222 47% 18%);
 }

 .plan-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 /* ===== REASSURANCE ===== */
 .reassurance {
     padding: 3rem 1.5rem;
     background: #fff;
     border-top: 1px solid hsla(220, 13%, 91%, 0.3);
     border-bottom: 1px solid hsla(220, 13%, 91%, 0.3);
 }

 .reassurance-grid {
     max-width: 64rem;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

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

 .reassurance-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .reassurance-icon {
     width: 48px;
     height: 48px;
     border-radius: 12px;
     background: hsla(38, 72%, 44%, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0.75rem;
 }

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

 .reassurance-item h3 {
     font-weight: 600;
     color: var(--primary);
     font-size: 0.875rem;
     margin-bottom: 0.25rem;
 }

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

 /* ===== SERVICES SUMMARY ===== */
 .services {
     padding: 5rem 1.5rem;
     background: var(--bg-page);
 }

 .services-inner {
     max-width: 64rem;
     margin: 0 auto;
 }

 .services-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .services-header .label {
     color: var(--accent);
     font-size: 0.875rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
 }

 .services-header h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary);
     margin: 0.75rem 0;
     line-height: 1.2;
 }

 @media (min-width: 768px) {
     .services-header h2 {
         font-size: 2.5rem;
     }
 }

 .services-header h2 .italic {
     font-style: italic;
     color: var(--accent);
 }

 .services-header p {
     color: var(--muted-foreground);
     font-weight: 300;
     max-width: 30rem;
     margin: 0 auto;
 }

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

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

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

 .service-card {
     padding: 1.25rem;
     border-radius: 16px;
     border: 1px solid hsla(220, 13%, 91%, 0.4);
     background: #fff;
     transition: box-shadow 0.2s;
 }

 .service-card:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .service-icon {
     width: 40px;
     height: 40px;
     border-radius: 12px;
     background: hsla(38, 72%, 44%, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
 }

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

 .service-card h3 {
     font-weight: 600;
     color: var(--primary);
     font-size: 0.875rem;
     margin-bottom: 0.25rem;
 }

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

 /* ===== 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 {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .footer-col a {
     color: hsla(45, 100%, 96%, 0.4);
     font-size: 0.875rem;
     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 fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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