     :root {
        --font-inter: 'Lora', serif;
        --font-playfair: 'Playfair Display', serif;
        --background: 36 25% 97%;
        --foreground: 222 47% 11%;
        --primary: #131d34;
        --primary-foreground: #fffaeb;
        --secondary: 36 20% 95%;
        --muted: 36 20% 95%;
        --muted-foreground: 220 9% 46%;
        --accent: 38 72% 44%;
        --accent-foreground: 0 0% 100%;
        --border: 220 13% 91%;
    }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: var(--font-inter);
      background: #f8f6f1;
      color: hsl(var(--foreground));
      line-height: 1.5;
  }

  .font-playfair {
      font-family: var(--font-playfair);
  }

  /* Navbar */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid hsl(var(--border) / 0.4);
  }

  .navbar-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .navbar-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #131d34;
  }

  .navbar-logo img {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      object-fit: cover;
  }

  .navbar-logo span {
      font-weight: 600;
      font-size: 20px;
      letter-spacing: -0.02em;
      color: #131d34;
  }

  .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px;
  }

  .navbar-links a {
      font-size: 14px;
      color: hsl(var(--primary) / 0.6);
      text-decoration: none;
      transition: color 0.2s;
  }

  .navbar-links a:hover {
      color: #131d34;
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #131d34;
      cursor: pointer;
  }

  .mobile-menu {
      display: none;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid hsl(var(--border) / 0.4);
      padding: 24px;
  }

  .mobile-menu.active {
      display: block;
  }

  .mobile-menu a {
      display: block;
      padding: 12px 0;
      color: hsl(var(--primary) / 0.7);
      text-decoration: none;
      transition: color 0.2s;
  }

  .mobile-menu a:hover {
      color: #131d34;
  }

  /* Hero */
  .hero {
      padding-top: 128px;
      padding-bottom: 80px;
      text-align: center;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 9999px;
      background: hsl(var(--accent) / 0.1);
      border: 1px solid hsl(var(--accent) / 0.2);
      color: hsl(var(--accent));
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 24px;
  }

  .hero-badge svg {
      width: 12px;
      height: 12px;
      fill: currentColor;
  }

  .hero-title {
      font-family: var(--font-playfair);
      font-size: 48px;
      font-weight: 700;
      color: #131d34;
      line-height: 1.2;
      margin-bottom: 24px;
  }

  .hero-title .italic {
      font-style: italic;
      color: hsl(var(--accent));
  }

  .hero-subtitle {
      color: hsl(var(--muted-foreground));
      font-size: 18px;
      font-weight: 300;
      max-width: 576px;
      margin: 0 auto;
      line-height: 1.6;
  }

  /* Features Section */
  .features-section {
      padding: 64px 24px;
      background: white;
      border-top: 1px solid hsl(var(--border) / 0.3);
      border-bottom: 1px solid hsl(var(--border) / 0.3);
  }

  .features-header {
      text-align: center;
      margin-bottom: 48px;
  }

  .features-title {
      font-family: var(--font-playfair);
      font-size: 32px;
      font-weight: 700;
      color: #131d34;
      margin-bottom: 12px;
  }

  .features-subtitle {
      color: hsl(var(--muted-foreground));
      font-weight: 300;
      max-width: 512px;
      margin: 0 auto;
  }

  .features-grid {
      max-width: 70%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
  }

  .feature-card {
      padding: 20px;
      border-radius: 16px;
      border: 1px solid hsl(var(--border) / 0.4);
      background: #f8f6f1;
      transition: box-shadow 0.3s;
  }

  .feature-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: hsl(var(--accent) / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
  }

  .feature-icon svg {
      width: 20px;
      height: 20px;
      color: hsl(var(--accent));
  }

  .feature-title {
      font-weight: 600;
      color: #131d34;
      font-size: 14px;
      margin-bottom: 8px;
  }

  .feature-desc {
      color: hsl(var(--muted-foreground));
      font-size: 12px;
      line-height: 1.6;
  }

  /* Plans Section */
  .plans-section {
      padding: 96px 24px;
  }

  .plans-header {
      text-align: center;
      margin-bottom: 64px;
  }

  .plans-title {
      font-family: var(--font-playfair);
      font-size: 36px;
      font-weight: 700;
      color: #131d34;
      margin-bottom: 16px;
  }

  .plans-title .italic {
      font-style: italic;
      color: hsl(var(--accent));
  }

  .plans-subtitle {
      color: hsl(var(--muted-foreground));
      font-weight: 300;
  }

  .plans-grid {
      max-width: 896px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 32px;
  }

  .plan-card {
      position: relative;
      border-radius: 24px;
      border: 1px solid;
      overflow: hidden;
      transition: all 0.3s;
  }

  .plan-card.standard {
      background: white;
      border-color: hsl(var(--border) / 0.4);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .plan-card.popular {
      border-color: #131d34;
      background: #131d34;
      box-shadow: 0 8px 32px hsl(var(--primary) / 0.2);
      transform: scale(1.02);
  }

  .plan-content {
      padding: 40px;
      display: flex;
      flex-direction: column;
  }

  .plan-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: 9999px;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
  }

  .plan-tag svg {
      width: 12px;
      height: 12px;
      fill: currentColor;
  }

  .plan-name {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 8px;
  }

  .plan-card.standard .plan-name {
      color: #131d34;
  }

  .plan-card.popular .plan-name {
      color: white;
  }

  .plan-desc {
      font-size: 15px;
      margin-bottom: 24px;
  }

  .plan-card.standard .plan-desc {
      color: hsl(var(--muted-foreground));
  }

  .plan-card.popular .plan-desc {
      color: hsl(white / 0.6);
  }

  .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 32px;
  }

  .plan-currency {
      font-size: 14px;
      font-weight: 500;
  }

  .plan-card.standard .plan-currency {
      color: hsl(var(--muted-foreground));
  }

  .plan-card.popular .plan-currency {
      color: hsl(white / 0.6);
  }

  .plan-amount {
      font-family: var(--font-playfair);
      font-size: 48px;
      font-weight: 700;
  }

  .plan-card.standard .plan-amount {
      color: #131d34;
  }

  .plan-card.popular .plan-amount {
      color: white;
  }

  .plan-period {
      font-size: 15px;
      margin-left: 4px;
  }

  .plan-card.standard .plan-period {
      color: hsl(var(--muted-foreground));
  }

  .plan-card.popular .plan-period {
      color: hsl(white / 0.5);
  }

  .plan-features {
      list-style: none;
      margin-bottom: 16px;
      flex: 1;
  }

  .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
  }

  .plan-feature svg {
      width: 16px;
      height: 16px;
      color: hsl(var(--accent));
      flex-shrink: 0;
      margin-top: 2px;
  }

  .plan-feature-text {
      font-size: 15px;
  }

  .plan-card.standard .plan-feature-text {
      color: hsl(var(--foreground) / 0.7);
  }

  .plan-card.popular .plan-feature-text {
      color: hsl(white / 0.8);
  }

  .plan-excluded {
      list-style: none;
      margin-bottom: 32px;
  }

  .plan-excluded li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 8px;
      opacity: 0.4;
  }

  .plan-excluded span {
      text-align: center;
      font-size: 15px;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
  }

  .plan-excluded-text {
      font-size: 14px;
      color: hsl(var(--foreground) / 0.6);
  }

  .plan-spacer {
      margin-bottom: 32px;
  }

  .plan-btn {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 32px;
      border-radius: 9999px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      text-decoration: none;
      font-family: var(--font-inter);
  }

  .plan-btn.standard {
      background: #131d34;
      color: #fffaeb;
  }

  .plan-btn.standard:hover {
            background: #131d34;

  }

  .plan-btn.popular {
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      box-shadow: 0 4px 16px hsl(var(--accent) / 0.25);
  }

  .plan-btn.popular:hover {
      background: hsl(var(--accent) / 0.9);
  }

  .plan-btn svg {
      width: 16px;
      height: 16px;
  }

  /* Services Grid */
  .services-included-section {
      padding: 80px 24px;
      background: white;
      border-top: 1px solid hsl(var(--border) / 0.3);
  }

  .services-header {
      text-align: center;
      margin-bottom: 48px;
  }

  .services-title {
      font-family: var(--font-playfair);
      font-size: 32px;
      font-weight: 700;
      color: #131d34;
      margin-bottom: 12px;
  }

  .services-subtitle {
      color: hsl(var(--muted-foreground));
      font-weight: 300;
      max-width: 512px;
      margin: 0 auto;
  }

  .services-grid {
      max-width: 1152px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
  }

  .service-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      height: 288px;
      transition: transform 0.3s;
  }

  .service-card:hover {
      transform: translateY(-4px);
  }

  .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
  }

  .service-card:hover img {
      transform: scale(1.05);
  }

  .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  }

  .service-card-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
  }

  .service-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
  }

  .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .service-icon svg {
      width: 20px;
      height: 20px;
      color: white;
  }

  .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 12px;
      border-radius: 9999px;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-size: 11px;
      font-weight: 700;
  }

  .service-badge svg {
      width: 12px;
      height: 12px;
      fill: currentColor;
  }

  .service-card-body h3 {
      font-family: var(--font-playfair);
      font-size: 20px;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
  }

  .service-card-body p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.6;
  }

  /* FAQ Section */
  .faq-section {
      padding: 80px 24px;
      background: #f8f6f1;
  }

  .faq-header {
      text-align: center;
      margin-bottom: 48px;
  }

  .faq-title {
      font-family: var(--font-playfair);
      font-size: 32px;
      font-weight: 700;
      color: #131d34;
      margin-bottom: 12px;
  }

  .faq-subtitle {
      color: hsl(var(--muted-foreground));
      font-weight: 300;
  }

  .faq-list {
      max-width: 768px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .faq-item {
      border-radius: 16px;
      border: 1px solid hsl(var(--border) / 0.4);
      background: white;
      overflow: hidden;
  }

  .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      text-align: left;
      gap: 16px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-inter);
      font-size: 14px;
      font-weight: 500;
      color: #131d34;
      transition: color 0.2s;
  }

  .faq-question:hover {
      color: hsl(var(--accent));
  }

  .faq-icon {
      width: 16px;
      height: 16px;
      color: hsl(var(--accent));
      flex-shrink: 0;
      transition: transform 0.3s;
  }

  .faq-icon.open {
      transform: rotate(180deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  .faq-answer.open {
      max-height: 500px;
  }

  .faq-answer-text {
      padding: 0 20px 20px;
      color: hsl(var(--muted-foreground));
      font-size: 14px;
      line-height: 1.7;
      border-top: 1px solid hsl(var(--border) / 0.3);
      margin-top: 16px;
      padding-top: 16px;
  }

  /* Bottom CTA */
  .bottom-cta {
      padding: 80px 24px;
      text-align: center;
      background: #f8f6f1;
  }

  .bottom-cta-title {
      font-family: var(--font-playfair);
      font-size: 32px;
      font-weight: 700;
      color: #131d34;
      margin-bottom: 16px;
  }

  .bottom-cta-text {
      color: hsl(var(--muted-foreground));
      font-weight: 300;
      margin-bottom: 32px;
      max-width: 448px;
      margin-left: auto;
      margin-right: auto;
  }

  .bottom-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 40px;
      border-radius: 9999px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      text-decoration: none;
      font-family: var(--font-inter);
      background: #131d34;
      color: #fffaeb;
      box-shadow: 0 8px 24px hsl(var(--primary) / 0.2);
  }

  .bottom-cta-btn:hover {
      background: #131d34;

      transform: scale(1.05);
  }

  .bottom-cta-btn svg {
      width: 16px;
      height: 16px;
  }

  /* Responsive */
  @media (min-width: 640px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 768px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .plans-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .services-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 1024px) {
      .features-grid {
          grid-template-columns: repeat(4, 1fr);
      }

      .services-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 768px) {
      .navbar-links {
          display: none;
      }

      .mobile-menu-btn {
          display: block;
      }

      .hero-title {
          font-size: 32px;
      }

      .hero-subtitle {
          font-size: 16px;
      }

      .features-grid {
          max-width: 90%;
      }

      .plans-title {
          font-size: 28px;
      }

      .plan-card.popular {
          transform: scale(1);
      }

      .plan-btn {
          width: 100%;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          padding: 12px 25px;
          border-radius: 9999px;
          font-size: 15px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s;
          border: none;
          text-decoration: none;
          font-family: var(--font-inter);
      }

      .bottom-cta-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          padding: 12px 25px;
          border-radius: 9999px;
          font-size: 15px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s;
          border: none;
          text-decoration: none;
          font-family: var(--font-inter);
          background: #131d34 !important;
          color: #fffaeb;

          box-shadow: 0 8px 24px hsl(var(--primary) / 0.2);
      }

      .footer-grid {
          grid-template-columns: 1fr;
      }
  }