  /* ── Reset & Tokens ── */
  *,
  ::after,
  ::before {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  :root {
      --orange: #f97316;
      --orange-dark: #ea6500;
      --orange-light: #fff7ed;
      --orange-mid: #ffedd5;
      --black: #0f0f0f;
      --gray-900: #1a1a1a;
      --gray-700: #374151;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f9fafb;
      --white: #ffffff;
      --font-display: "Fraunces", Georgia, serif;
      --font-body: "Plus Jakarta Sans", sans-serif;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
      --shadow-orange: 0 6px 32px rgba(249, 115, 22, 0.35);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--gray-900);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
  }

  .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
  }

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

  /* ── Nav ── */
  .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
  }

  .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
  }

  .logo-image {
      height: 32px;
      width: auto;
      display: block;
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
  }

  .logo-text {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--black);
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
  }

  .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-700);
      transition: color 0.2s;
  }

  .nav-links a:hover {
      color: var(--orange);
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      padding: 12px 26px;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.22s ease;
      text-decoration: none;
  }

  .btn-primary {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
  }

  .btn-primary:hover {
      background: var(--orange-dark);
      border-color: var(--orange-dark);
      box-shadow: var(--shadow-orange);
      transform: translateY(-1px);
  }

  .btn-outline {
      background: transparent;
      color: var(--orange);
      border-color: var(--orange);
  }

  .btn-outline:hover {
      background: var(--orange);
      color: var(--white);
      box-shadow: var(--shadow-orange);
  }

  .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 8px 18px;
      border-radius: var(--radius-sm);
      font-weight: 600 !important;
  }

  @media (max-width: 860px) {
      .nav-links {
          display: none;
      }
  }

  /* ── Hero ── */
  .price-hero {
      padding: 120px 0 56px;
      background: var(--black);
      position: relative;
      overflow: hidden;
      text-align: center;
  }

  .price-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%,
              rgba(249, 115, 22, 0.2) 0%,
              transparent 70%);
      pointer-events: none;
  }

  .price-hero-badge {
      display: inline-block;
      background: rgba(249, 115, 22, 0.15);
      border: 1px solid rgba(249, 115, 22, 0.4);
      color: #fed7aa;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
  }

  .price-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 6vw, 62px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
  }

  .price-hero h1 em {
      font-style: italic;
      color: var(--orange);
  }

  .price-hero p {
      color: #9ca3af;
      font-size: 16px;
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.7;
  }

  /* ── Pricing Section ── */
  .pricing-section {
      padding: 72px 0 96px;
      background: var(--gray-100);
  }

  .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 780px;
      margin: 0 auto;
  }

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

  /* ── Card base ── */
  .p-card {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-xl);
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: box-shadow 0.22s, transform 0.22s;
      position: relative;
  }

  .p-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
  }

  /* ── Featured (Pro) card ── */
  .p-card-featured {
      border-color: var(--orange);
      box-shadow: var(--shadow-orange);
      transform: scale(1.025);
  }

  .p-card-featured:hover {
      transform: scale(1.025) translateY(-3px);
      box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
  }

  /* ── Card internals ── */
  .p-badge {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 16px;
      display: block;
  }

  .p-badge-hot {
      color: var(--orange);
  }

  .p-name {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--black);
      line-height: 1;
      margin-bottom: 18px;
  }

  /* ── Price block ── */
  .p-price-block {
      margin-bottom: 24px;
  }

  .p-price-original {
      font-size: 13px;
      color: var(--gray-500);
      text-decoration: line-through;
      margin-bottom: 2px;
  }

  .p-price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
  }

  .p-price-amount {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
  }

  .p-price-free {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 700;
      color: var(--black);
      line-height: 1;
  }

  .p-price-period {
      font-size: 13px;
      color: var(--gray-500);
      font-weight: 500;
  }

  .p-price-save {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 2px 9px;
      border-radius: 100px;
      margin-top: 8px;
  }

  /* ── Divider ── */
  .p-divider {
      border: none;
      border-top: 1px solid var(--gray-200);
      margin: 20px 0;
  }

  /* ── Feature list ── */
  .p-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
      margin-bottom: 28px;
  }

  .p-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-700);
      line-height: 1.5;
  }

  .p-check {
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: var(--orange-mid);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--orange-dark);
      font-weight: 700;
      margin-top: 1px;
  }

  .p-check-plain {
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: var(--gray-100);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--gray-500);
      font-weight: 700;
      margin-top: 1px;
  }

  .p-features .p-note {
      font-size: 12.5px;
      color: var(--gray-500);
      font-style: italic;
      padding-left: 28px;
  }

  .p-features .p-note::before {
      display: none;
  }

  .p-section-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--gray-500);
      margin: 4px 0 6px;
  }

  /* ── CTA button full ── */
  .btn-full {
      width: 100%;
      justify-content: center;
      font-size: 15px;
      padding: 13px 20px;
  }

  /* ── Guarantee strip ── */
  .guarantee {
      max-width: 780px;
      margin: 32px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
  }

  .g-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--gray-500);
  }

  .g-icon {
      font-size: 16px;
  }

  /* ── FAQ / promise ── */
  .promise-section {
      background: var(--black);
      padding: 72px 0;
  }

  .promise-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
  }

  .promise-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
  }

  .promise-inner h2 em {
      font-style: italic;
      color: var(--orange);
  }

  .promise-inner p {
      color: #9ca3af;
      font-size: 15px;
      line-height: 1.75;
      max-width: 500px;
      margin: 0 auto 32px;
  }

  .promise-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
  }

  .p-pill {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #d1d5db;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 100px;
  }

  /* ── FAQ ── */
  .faq-section {
      padding: 72px 0;
      background: var(--white);
  }

  .faq-inner {
      max-width: 640px;
      margin: 0 auto;
  }

  .faq-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
      display: block;
      text-align: center;
  }

  .faq-title {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.5vw, 34px);
      font-weight: 700;
      color: var(--black);
      text-align: center;
      margin-bottom: 40px;
      line-height: 1.2;
  }

  .faq-item {
      border-bottom: 1px solid var(--gray-200);
  }

  .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
      padding: 18px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
  }

  .faq-q:hover {
      color: var(--orange);
  }

  .faq-icon {
      font-size: 18px;
      color: var(--gray-500);
      flex-shrink: 0;
      transition: transform 0.22s;
  }

  .faq-item.open .faq-icon {
      transform: rotate(45deg);
      color: var(--orange);
  }

  .faq-a {
      font-size: 14.5px;
      color: var(--gray-500);
      line-height: 1.75;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 18px;
  }

  /* ── Footer ── */
  .footer {
      background: var(--black);
      padding-top: 60px;
      padding-bottom: 0;
  }

  .footer-inner {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 60px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  @media (max-width: 640px) {
      .footer-inner {
          grid-template-columns: 1fr;
          gap: 32px;
      }
  }

  .footer .logo-text {
      color: var(--white);
  }

  .footer-tagline {
      font-family: var(--font-display);
      font-size: 16px;
      font-style: italic;
      color: #9ca3af;
      margin-top: 10px;
      margin-bottom: 14px;
  }

  .footer-flagodna {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.65;
      max-width: 380px;
  }

  .footer-flagodna a {
      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 3px;
  }

  .footer-links {
      display: flex;
      gap: 40px;
  }

  .footer-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-col h5 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #6b7280;
      margin-bottom: 4px;
  }

  .footer-col a {
      font-size: 14px;
      color: #9ca3af;
      transition: color 0.2s;
  }

  .footer-col a:hover {
      color: var(--orange);
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      font-size: 12.5px;
      color: #4b5563;
      flex-wrap: wrap;
      gap: 8px;
  }

  /* ── Animations ── */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

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

  .price-hero-badge {
      animation: fadeUp 0.45s ease 0.1s both;
  }

  .price-hero h1 {
      animation: fadeUp 0.45s ease 0.2s both;
  }

  .price-hero p {
      animation: fadeUp 0.45s ease 0.3s both;
  }

  .p-card {
      animation: fadeUp 0.45s ease both;
  }

  .p-card:nth-child(1) {
      animation-delay: 0.1s;
  }

  .p-card:nth-child(2) {
      animation-delay: 0.2s;
  }