
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: #ffffff;
      font-family: 'Open Sans', sans-serif;
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: #ffffff;
      padding: 14px 0;
    }

    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar .logo {
      height: 150px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #1a1a1a;
      text-decoration: none;
      transition: color 0.15s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #5CC520;
    }

    .mobile-only { display: none; }

    .btn-nav-signup:hover,
    .nav-links a.btn-nav-signup:hover {
      color: #1a1a1a;
    }

    .btn-nav-signup {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      color: #1a1a1a;
      background: #F5C800;
      border: 3px solid #5CC520;
      border-radius: 50px;
      padding: 9px 28px;
      box-shadow: 0 4px 0 #3a8a10;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
      white-space: nowrap;
    }

    .btn-nav-signup:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #3a8a10;
    }

    /* Cart icon in navbar */
    .nav-cart-icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      color: #1a1a1a;
      padding: 6px;
      text-decoration: none;
      transition: color 0.15s;
    }
    .nav-cart-icon:hover { color: #5CC520; }
    .cart-badge {
      position: absolute;
      top: -5px;
      right: -7px;
      background: #5CC520;
      color: #fff;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      min-width: 17px;
      height: 17px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      line-height: 1;
    }

    /* ── HERO ── */
    .hero-wrap {
      position: relative;
      overflow: hidden;
    }
    .hero {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      max-width: 1280px;
      margin: 0 auto;
      padding: 30px 52px 40px;
      gap: 0;
      position: relative;
      z-index: 1;
    }

    /* LEFT COLUMN */
    .hero-content {
      flex: 0 0 52%;
      max-width: 52%;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-title {
      font-family: 'Barlow Condensed', Impact, Arial Narrow, sans-serif;
      line-height: 1.0;
      margin-bottom: 20px;
    }

    /* Canvas brand heading */
    .title-line-brand {
      display: block;
      margin-bottom: -8px;
      margin-left: -21px;
      line-height: 0;
    }

    .brand-canvas {
      display: block;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 860px) {
      .brand-canvas {
        width: auto !important;
        max-width: 100%;
        height: auto !important;
      }
    }

    .title-line-main {
      display: block;
      font-size: clamp(3.2rem, 5.8vw, 5.8rem);
      font-style: normal;
      font-weight: 900;
      color: #111111;
      line-height: 0.97;
      letter-spacing: -0.5px;
    }

    .hero-desc {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.6;
      color: #333333;
      margin-bottom: 30px;
      margin-top: 4px;
      max-width: 520px;
    }

    /* ── CTA BUTTON ── */
    .btn-signup {
      display: inline-flex;
      align-items: center;
      background: #F5C800;
      color: #1a1a1a;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 2.6rem;
      letter-spacing: 4px;
      text-decoration: none;
      padding: 8px 44px;
      border-radius: 60px;
      border: 3.5px solid #5CC520;
      box-shadow:
        0 5px 0 #3a8a10,
        0 7px 14px rgba(0,0,0,0.15);
      transition: transform 0.12s ease, box-shadow 0.12s ease;
      cursor: pointer;
      user-select: none;
    }

    .btn-signup .btn-cursor {
      font-size: 1.3rem;
      line-height: 1;
      display: inline-block;
      transform: scaleX(-1); /* point left */
      transition: transform 0.15s ease;
    }

    .btn-signup:hover {
      transform: translateY(3px);
      box-shadow:
        0 3px 0 #3a8a10,
        0 5px 8px rgba(0,0,0,0.18);
    }

    .btn-signup:hover .btn-cursor {
      transform: scaleX(-1) translateX(-4px);
    }

    .btn-signup:active {
      transform: translateY(6px);
      box-shadow:
        0 1px 0 #3a8a10,
        0 2px 5px rgba(0,0,0,0.15);
    }

    /* RIGHT COLUMN */
    .hero-visual {
      position: absolute;
      right: -40px;
      bottom: 0;
      width: 58%;
      max-width: 860px;
      pointer-events: none;
      z-index: 0;
    }

    .hero-visual .pear-mascot {
      width: 100%;
      height: auto;
      display: block;
      animation: float 3.8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes float-down {
      0%,  100% { transform: translateY(0px); }
      50%        { transform: translateY(18px); }
    }

    @media (max-width: 860px) {
      .hero-visual .pear-mascot { animation-name: float-down; }
      .hero-wrap { padding-top: 0; }
    }

    /* ── POPCORN DECORATIONS ── */
    .popcorn-deco {
      position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 2;
      animation: float 4.5s ease-in-out infinite;
    }
    .popcorn-deco-top {
      width: 110px;
      top: 2%;
      left: 52%;
      animation-delay: 0.5s;
    }
    .popcorn-deco-bottom {
      width: 95px;
      bottom: 6%;
      left: 44%;
      animation-delay: 1.8s;
    }
    @media (max-width: 860px) {
      .popcorn-deco { z-index: 0; }
      .popcorn-deco-top  { width: 80px; top: auto; bottom: 38%; left: 4%; }
      .popcorn-deco-bottom { width: 70px; left: auto; right: 4%; bottom: 3%; }
    }
    @media (max-width: 520px) {
      .popcorn-deco-top  { width: 65px; bottom: 40%; left: 2%; }
      .popcorn-deco-bottom { width: 58px; right: 2%; bottom: 1%; }
    }

    @keyframes float {
      0%,  100% { transform: translateY(0px); }
      50%        { transform: translateY(-18px); }
    }

    @keyframes popcorn-pop {
      0%   { opacity: 0; scale: 0;    rotate: -15deg; }
      60%  { opacity: 1; scale: 1.25; rotate: 8deg; }
      80%  {            scale: 0.9;  rotate: -4deg; }
      100% { opacity: 1; scale: 1;    rotate: 0deg; }
    }

    @keyframes popcorn-float {
      0%,  100% { translate: 0 0px; }
      50%        { translate: 0 -18px; }
    }

    /* Apply pop-in to hero decos only (on load) */
    .popcorn-deco {
      animation: popcorn-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both,
                 popcorn-float 4.5s ease-in-out infinite;
      animation-delay: var(--pop-delay, 0s), var(--float-delay, 0s);
    }
    .popcorn-deco-top    { --pop-delay: 0.2s; --float-delay: 0s; }
    .popcorn-deco-bottom { --pop-delay: 0.4s; --float-delay: 2.25s; }

    /* Section heading popcorns: hidden until scrolled into view */
    .popcorn-side {
      opacity: 0;
      transform: scale(0) rotate(-15deg);
      transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .popcorn-side.popped {
      opacity: 1;
      transform: scale(1) rotate(0deg);
      animation: popcorn-float 4.5s ease-in-out infinite;
    }
    /* Stagger each popcorn pair so left and right are never in phase */
    .popcorn-side.popcorn-side-left.popped  { animation-delay: 0s; }
    .popcorn-side.popcorn-side-right.popped { animation-delay: 1.5s; }

    /* ── FEATURES ── */
    .features {
      background: #ffffff;
      padding: 36px 0;
    }

    .features-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: #f0f0f0;
      border-radius: 16px;
      padding: 32px 20px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      box-shadow: none;
    }

    .feature-icon {
      width: 110px;
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 8px;
      transition: transform 0.25s ease;
    }

    .feature-card:hover .feature-icon img {
      transform: scale(1.12);
    }

    .feature-title {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      letter-spacing: 1px;
      text-align: center;
      color: #1a1a1a;
      line-height: 1.2;
      text-transform: uppercase;
    }

    @media (max-width: 860px) {
      .features-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 28px;
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .features-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 16px;
        gap: 12px;
      }
      .feature-card { padding: 22px 14px 20px; }
      .feature-icon { width: 80px; height: 64px; }
      .feature-title { font-size: 1.1rem; }
    }

    /* ── WHY CHOOSE US ── */
    .why {
      background: #ffffff;
      padding: 56px 0;
    }
    .why-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }
    .why-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }
    .why-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .why-heading-wrap .popcorn-side-left  { margin-right: 60px; top: 30px; }
    .why-heading-wrap .popcorn-side-right { margin-left: 60px;  top: -30px; scale: -1 1; }
    @media (max-width: 860px) {
      .why-heading-wrap .popcorn-side { width: 52px; }
      .why-heading-wrap .popcorn-side-left  { margin-right: 36px; top: 20px; }
      .why-heading-wrap .popcorn-side-right { margin-left: 36px;  top: -20px; }
    }
    @media (max-width: 520px) {
      .why-heading-wrap { overflow: visible; }
      .why-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .why-heading-wrap .popcorn-side-left  { left: 8px; top: -28px; }
      .why-heading-wrap .popcorn-side-right { right: 8px; left: auto; bottom: -28px; top: auto; }
      .why-heading { position: relative; z-index: 1; }
    }
    .why-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 0;
    }
    .why-layout {
      display: flex;
      align-items: center;
      gap: 48px;
    }
    .why-image {
      flex: 0 0 min(540px, 45%);
      max-width: min(540px, 45%);
    }
    .why-image img {
      width: 100%;
      border-radius: 16px;
      display: block;
      transition: transform 0.35s ease;
    }
    .why-image img:hover {
      transform: rotate(2deg) scale(1.02);
    }
    .why-cards {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .why-card {
      background: #ffffff;
      border-radius: 16px;
      border: 3px solid #1a1a1a;
      padding: 32px 24px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }
    .why-icon {
      width: 64px;
      height: 64px;
      background: #5CC520;
      border-radius: 50%;
      border: 3px solid #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .why-card:hover .why-icon {
      transform: scale(1.15);
    }
    .why-icon img, .why-icon svg { width: 34px; height: 34px; flex-shrink: 0; }
    .why-icon i { font-size: 1.4rem; color: #fff; }
    .why-card-title {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.5rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #1a1a1a;
      line-height: 1.2;
    }
    .why-card-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #444;
      line-height: 1.6;
    }
    @media (max-width: 860px) {
      .why-layout { flex-direction: column; }
      .why-image { flex: unset; max-width: 100%; width: 100%; }
      .why-inner { padding: 0 28px; }
    }
    @media (max-width: 520px) {
      .why-cards { grid-template-columns: 1fr; }
      .why-inner { padding: 0 32px; }
      .why { padding: 36px 0; }
    }

    /* ── TRUSTPILOT REVIEWS (marquee style) ── */
    .reviews {
      background: #ffffff;
      padding: 64px 0 56px;
      overflow: hidden;
    }

    /* ── Header ── */
    .reviews-header {
      text-align: center;
      margin-bottom: 48px;
      padding: 0 24px;
    }
    .reviews-tp-brand {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #00B67A;
      border-radius: 6px;
      padding: 5px 14px 5px 10px;
      margin-bottom: 20px;
    }
    .reviews-tp-star-icon {
      display: inline-block;
      width: 18px;
      height: 18px;
      max-width: 18px;
      min-width: 18px;
      fill: #ffffff;
      flex: 0 0 18px;
    }
    .reviews-tp-name {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      color: #ffffff;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .reviews-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 16px;
    }
    .reviews-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .reviews-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .reviews-heading-wrap .popcorn-side-left  { margin-right: 60px; top: -30px; }
    .reviews-heading-wrap .popcorn-side-right { margin-left: 60px;  top: 30px; scale: -1 1; }
    @media (max-width: 860px) {
      .reviews-heading-wrap .popcorn-side { width: 52px; }
      .reviews-heading-wrap .popcorn-side-left  { margin-right: 36px; top: -20px; }
      .reviews-heading-wrap .popcorn-side-right { margin-left: 36px;  top: 20px; }
    }
    @media (max-width: 520px) {
      .reviews-heading-wrap { overflow: visible; }
      .reviews-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .reviews-heading-wrap .popcorn-side-left  { left: 8px; bottom: -28px; top: auto; }
      .reviews-heading-wrap .popcorn-side-right { right: 8px; left: auto; top: -28px; bottom: auto; }
      .reviews-heading { position: relative; z-index: 1; }
    }
    .reviews-score-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 18px;
    }
    .reviews-tp-stars {
      display: inline-block;
      line-height: 1;
      color: #00B67A;
      font-size: 24px;
      letter-spacing: 3px;
    }
    .reviews-tp-stars span {
      display: none;
    }
    .reviews-tp-stars::before {
      content: "\2605\2605\2605\2605\2605";
    }
    .reviews-score-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      color: #444;
    }
    .reviews-score-label strong { color: #1a1a1a; }
    .reviews-count {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.85rem;
      color: #666;
    }

    /* ── Marquee track ── */
    .reviews-track-wrap {
      position: relative;
      overflow: hidden;
      margin-bottom: 18px;
    }
    .reviews-track-wrap::before,
    .reviews-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 220px;
      z-index: 2;
      pointer-events: none;
    }
    .reviews-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, transparent 100%);
    }
    .reviews-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #ffffff 0%, #ffffff 30%, transparent 100%);
    }

    @keyframes reviews-scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes reviews-scroll-right {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    .reviews-track {
      display: flex;
      gap: 18px;
      width: max-content;
      padding: 8px 0;
      will-change: transform;
    }
    .reviews-track--left {
      animation: reviews-scroll-left 32s linear infinite;
    }
    .reviews-track--right {
      animation: reviews-scroll-right 36s linear infinite;
    }
    .reviews-track:hover,
    .reviews-track:focus-within {
      animation-play-state: paused;
    }

    /* ── Review card ── */
    .review-card {
      background: #f0f0f0;
      border-radius: 16px;
      border: 3px solid #1a1a1a;
      padding: 22px 22px 18px;
      width: 300px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      box-shadow: none;
    }
    .review-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .review-card-stars {
      display: inline-block;
      line-height: 1;
      color: #00B67A;
      font-size: 17px;
      letter-spacing: 2px;
    }
    .review-card-stars span {
      display: none;
    }
    .review-card-stars::before {
      content: "\2605\2605\2605\2605\2605";
    }
    .review-verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      color: #00B67A;
      letter-spacing: 0.3px;
    }
    .review-verified svg {
      display: none;
    }
    .review-verified::before {
      content: "\2713\00A0";
      font-size: 0.8rem;
      font-weight: 700;
    }
    .review-title {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      color: #111111;
      letter-spacing: 0.3px;
      line-height: 1.3;
      margin: 0;
    }
    .review-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 400;
      color: #444444;
      line-height: 1.6;
      margin: 0;
    }
    .review-author-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-top: auto;
      padding-top: 8px;
      border-top: 2px solid #1a1a1a;
    }
    .review-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #5CC520;
      border: 2px solid #1a1a1a;
      color: #ffffff;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      text-transform: uppercase;
    }
    .review-author {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #1a1a1a;
    }

    @media (max-width: 860px) {
      .reviews { padding: 48px 0 40px; }
      .reviews-track-wrap::before,
      .reviews-track-wrap::after { width: 120px; }
    }
    @media (max-width: 520px) {
      .reviews { padding: 36px 0 28px; }
      .review-card { width: 260px; padding: 18px 16px 14px; }
      .reviews-track-wrap::before,
      .reviews-track-wrap::after { width: 60px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reviews-track { animation: none; }
    }


    /* ── FAQ ── */
    .faq {
      background: #ffffff;
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }
    @keyframes faq-drift-left {
      0%   { transform: translateY(-50%) translate(0px, 0px) rotate(0deg); }
      25%  { transform: translateY(-50%) translate(6px, -8px) rotate(1deg); }
      50%  { transform: translateY(-50%) translate(3px, 6px) rotate(-0.8deg); }
      75%  { transform: translateY(-50%) translate(-5px, -4px) rotate(0.5deg); }
      100% { transform: translateY(-50%) translate(0px, 0px) rotate(0deg); }
    }
    @keyframes faq-drift-right {
      0%   { transform: translateY(-50%) translate(0px, 0px) rotate(0deg); }
      25%  { transform: translateY(-50%) translate(-5px, 7px) rotate(-1deg); }
      50%  { transform: translateY(-50%) translate(-8px, -5px) rotate(0.7deg); }
      75%  { transform: translateY(-50%) translate(4px, 3px) rotate(-0.5deg); }
      100% { transform: translateY(-50%) translate(0px, 0px) rotate(0deg); }
    }
    .faq-deco {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      border-radius: 32px;
      display: block;
      pointer-events: none;
      user-select: none;
    }
    .faq-deco-left  { left: -210px; animation: faq-drift-left 7s ease-in-out infinite; }
    .faq-deco-right { right: -210px; animation: faq-drift-right 8.5s ease-in-out infinite; }
    @media (max-width: 860px) {
      .faq-deco { display: none; }
      .faq { overflow: hidden; }
    }
    .faq-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 52px;
    }
    .faq-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }
    .faq-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .faq-heading-wrap .popcorn-side-left  { margin-right: 60px; top: 30px; }
    .faq-heading-wrap .popcorn-side-right { margin-left: 60px;  top: -30px; scale: -1 1; }
    @media (max-width: 860px) {
      .faq-heading-wrap .popcorn-side { width: 52px; }
      .faq-heading-wrap .popcorn-side-left  { margin-right: 36px; top: 20px; }
      .faq-heading-wrap .popcorn-side-right { margin-left: 36px;  top: -20px; }
    }
    @media (max-width: 520px) {
      .faq-heading-wrap { overflow: visible; }
      .faq-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .faq-heading-wrap .popcorn-side-left  { left: 8px; top: -20px; }
      .faq-heading-wrap .popcorn-side-right { right: 8px; left: auto; top: -32px; bottom: auto; }
      .faq-heading { position: relative; z-index: 1; }
    }
    .faq-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 0;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #ffffff;
      border: 3px solid #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.25rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #1a1a1a;
      user-select: none;
    }
    .faq-chevron {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease;
    }
    .faq-chevron svg {
      width: 12px;
      height: 12px;
      fill: none;
      stroke: #ffffff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.25s ease;
    }
    .faq-item.open .faq-chevron svg {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #444;
      line-height: 1.7;
      padding: 0 22px;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 22px 18px;
    }
    @media (max-width: 860px) {
      .faq-inner { padding: 0 28px; }
    }
    @media (max-width: 520px) {
      .faq-inner { padding: 0 20px; }
      .faq { padding: 36px 0; }
    }

    /* ── FOOTER ── */
    .footer {
      background: #2a2a2a;
      color: #ffffff;
      padding: 56px 0 28px;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 2px solid #333;
    }
    .footer-brand-logo {
      height: 150px;
      width: auto;
      margin-bottom: 16px;
      display: block;
    }
    .footer-brand-desc {
      font-size: 0.9rem;
      color: #aaa;
      line-height: 1.7;
      max-width: 320px;
    }
    .footer-col-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 24px;
    }
    .footer-links a {
      color: #aaa;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: #F5C800;
    }
    .footer-payments {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .footer-payment-icon {
      height: 28px;
      width: 28px;
      object-fit: contain;
      border-radius: 4px;
      display: block;
      opacity: 0.9;
    }
    .footer-payment-icon:hover {
      opacity: 1;
    }
    .footer-bottom {
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.82rem;
      color: #666;
    }
    .footer-copy a {
      color: #aaa;
      text-decoration: none;
    }
    .footer-copy a:hover { color: #F5C800; }
    .footer-legal {
      font-size: 0.82rem;
      color: #666;
    }
    .footer-legal a {
      color: #666;
      text-decoration: none;
    }
    .footer-legal a:hover { color: #F5C800; }
    @media (max-width: 860px) {
      .footer-inner { padding: 0 28px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .footer-inner { padding: 0 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer { padding: 40px 0 24px; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 8px; }
      .footer-top > * { text-align: center; }
      .footer-brand-logo { margin-left: auto; margin-right: auto; }
      .footer-brand-desc { text-align: center; margin-left: auto; margin-right: auto; }
      .footer-links { align-items: center; }
      .footer-payments { justify-content: center; }
      .footer-copy { text-align: center; }
      .footer-legal { text-align: center; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(48px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.reveal-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── GET IN TOUCH ── */
    .contact {
      background: #ffffff;
      padding: 56px 0;
    }
    .contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }
    .contact-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .contact-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .contact-heading-wrap .popcorn-side-left  { margin-right: 60px; top: -30px; }
    .contact-heading-wrap .popcorn-side-right { margin-left: 60px;  top: 30px; scale: -1 1; }
    @media (max-width: 860px) {
      .contact-heading-wrap .popcorn-side { width: 52px; }
      .contact-heading-wrap .popcorn-side-left  { margin-right: 36px; top: -20px; }
      .contact-heading-wrap .popcorn-side-right { margin-left: 36px;  top: 20px; }
    }
    @media (max-width: 520px) {
      .contact-heading-wrap { overflow: visible; }
      .contact-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .contact-heading-wrap .popcorn-side-left  { left: 8px; bottom: -20px; top: auto; }
      .contact-heading-wrap .popcorn-side-right { right: 8px; left: auto; bottom: -32px; top: auto; }
      .contact-heading { position: relative; z-index: 1; }
    }
    .contact-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 0;
    }
    .contact-sub {
      text-align: center;
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 40px;
    }
    .contact-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .contact-card {
      background: #ffffff;
      border: 3px solid #1a1a1a;
      border-radius: 16px;
      padding: 36px 28px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
    }
    .contact-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #5CC520;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-card-icon svg {
      width: 30px;
      height: 30px;
      fill: #ffffff;
    }
    .contact-card-title {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #1a1a1a;
    }
    .contact-card-desc {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.6;
      flex: 1;
    }
    .contact-card-btn {
      display: inline-block;
      padding: 12px 28px;
      background: #F5C800;
      color: #1a1a1a;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: 3px solid #5CC520;
      border-radius: 50px;
      box-shadow: 4px 4px 0 #5CC520;
      transition: transform 0.1s, box-shadow 0.1s;
      cursor: pointer;
      margin-top: 6px;
    }
    .contact-card-btn:hover {
      transform: translateY(2px);
      box-shadow: 2px 2px 0 #5CC520;
    }
    @media (max-width: 860px) {
      .contact-inner { padding: 0 28px; }
      .contact-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    }
    @media (max-width: 520px) {
      .contact-inner { padding: 0 20px; }
      .contact { padding: 36px 0; }
    }

    /* ── COMPATIBILITY ── */
    .compat {
      background: #ffffff;
      padding: 56px 0;
    }
    .compat-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }
    .compat-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }
    .compat-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .compat-heading-wrap .popcorn-side-left  { margin-right: 60px; top: -30px; }
    .compat-heading-wrap .popcorn-side-right { margin-left: 60px;  top: 30px; scale: -1 1; }
    @media (max-width: 860px) {
      .compat-heading-wrap .popcorn-side { width: 52px; }
      .compat-heading-wrap .popcorn-side-left  { margin-right: 36px; top: -20px; }
      .compat-heading-wrap .popcorn-side-right { margin-left: 36px;  top: 20px; }
    }
    @media (max-width: 520px) {
      .compat-heading-wrap { overflow: visible; }
      .compat-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .compat-heading-wrap .popcorn-side-left  { left: 8px; bottom: -28px; top: auto; }
      .compat-heading-wrap .popcorn-side-right { right: 8px; left: auto; top: -28px; bottom: auto; }
      .compat-heading { position: relative; z-index: 1; }
    }
    .compat-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 0;
    }
    .compat-layout {
      display: flex;
      gap: 32px;
      align-items: stretch;
    }
    .compat-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .compat-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      flex: 1;
    }
    .compat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 10px;
      background: #ffffff;
      border: 3px solid #1a1a1a;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s, transform 0.12s;
      user-select: none;
      text-align: center;
    }
    .compat-card:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
    }
    .compat-card.active {
      background: #1a1a1a;
      border-color: #1a1a1a;
    }
    .compat-card.active .compat-card-label { color: #ffffff; }
    .compat-card-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .compat-card-icon img { width: 100%; height: 100%; object-fit: cover; }
    .compat-card-icon i { font-size: 1.7rem; color: #1a1a1a; }
    .compat-card.active .compat-card-icon i { color: #ffffff; }
    .compat-card-label {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #1a1a1a;
    }
    .compat-info {
      flex: 0 0 420px;
      max-width: 420px;
      background: #ffffff;
      border: 3px solid #1a1a1a;
      border-radius: 16px;
      padding: 28px 28px;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .compat-info-img {
      width: 100%;
      max-height: 180px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid #e0e0e0;
    }
    .compat-info-title {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 2rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #1a1a1a;
    }
    .compat-info-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #444;
      line-height: 1.7;
    }
    .compat-info-steps {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .compat-info-steps li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #1a1a1a;
    }
    .compat-info-steps li::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      background: #5CC520;
      border-radius: 50%;
      border: 2px solid #1a1a1a;
      margin-top: 1px;
    }
    .compat-desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: #444;
      line-height: 1.7;
    }
    .compat-info-download {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 50px;
      background: #F5C800;
      color: #1a1a1a;
      border: 3px solid #5CC520;
      box-shadow: 0 4px 0 #3a8a10;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
      cursor: pointer;
    }
    .compat-info-download:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #3a8a10;
    }
    @media (max-width: 860px) {
      .compat-layout { flex-direction: column; }
      .compat-left { flex: unset; width: 100%; }
      .compat-cards { grid-template-columns: repeat(3, 1fr); width: 100%; }
      .compat-inner { padding: 0 28px; }
      .compat-info { min-height: auto; flex: unset; max-width: 100%; width: 100%; }
    }
    @media (max-width: 520px) {
      .compat-cards { grid-template-columns: repeat(3, 1fr); }
      .compat-inner { padding: 0 20px; }
      .compat-info { padding: 24px 20px; }
      .compat { padding: 36px 0; }
    }
    .pricing {
      background: #ffffff;
      padding: 36px 0 56px;
    }

    .pricing-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }

    .pricing-heading-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }
    .pricing-heading-wrap .popcorn-side {
      width: 80px;
      height: auto;
      flex-shrink: 0;
      position: relative;
      animation: float 4.5s ease-in-out infinite;
    }
    .pricing-heading-wrap .popcorn-side-left  { margin-right: 60px; top: 30px; }
    .pricing-heading-wrap .popcorn-side-right { margin-left: 60px;  top: -30px; scale: -1 1; }
    @media (max-width: 860px) {
      .pricing-heading-wrap .popcorn-side { width: 52px; }
      .pricing-heading-wrap .popcorn-side-left  { margin-right: 36px; top: 20px; }
      .pricing-heading-wrap .popcorn-side-right { margin-left: 36px;  top: -20px; }
    }
    @media (max-width: 520px) {
      .pricing-heading-wrap { overflow: visible; }
      .pricing-heading-wrap .popcorn-side { position: absolute; width: 52px; margin: 0; z-index: 0; }
      .pricing-heading-wrap .popcorn-side-left  { left: 8px; top: -28px; }
      .pricing-heading-wrap .popcorn-side-right { right: 8px; left: auto; top: -20px; bottom: auto; }
      .pricing-heading { position: relative; z-index: 1; }
    }
    .pricing-heading {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 3.8rem);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin-bottom: 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: start;
    }

    .price-card {
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 3px solid transparent;
      background: #ffffff;
    }

    .price-card.starter { border-color: #1a1a1a; }
    .price-card.pro      { border-color: #1a1a1a; }
    .price-card.elite    { border-color: #1a1a1a; }
    .price-card.ultimate { border-color: #1a1a1a; }

    .price-card-header {
      padding: 24px 22px 20px;
      text-align: center;
    }
    .starter .price-card-header  { background: #5CC520; }
    .pro .price-card-header      { background: #F5C800; }
    .elite .price-card-header    { background: #555555; }
    .ultimate .price-card-header { background: #1a1a1a; }

    .price-card-body {
      padding: 20px 22px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }

    .price-card-name {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 1;
    }
    .starter .price-card-name,
    .pro .price-card-name      { color: #1a1a1a; }
    .elite .price-card-name,
    .ultimate .price-card-name { color: #ffffff; }

    .price-amount {
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 3.4rem;
      line-height: 1.1;
    }
    .price-amount sup { font-size: 1.5rem; vertical-align: super; }
    .price-amount sub { font-size: 1.3rem; font-weight: 600; vertical-align: baseline; }
    .starter .price-amount,
    .pro .price-amount      { color: #1a1a1a; }
    .elite .price-amount,
    .ultimate .price-amount { color: #ffffff; }

    .price-divider {
      height: 2px;
      border: none;
      border-radius: 2px;
      background: #e0e0e0;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: #1a1a1a;
    }

    .price-features li::before {
      content: '🍐';
      font-size: 1rem;
      flex-shrink: 0;
      line-height: 1;
    }

    .price-cta {
      display: block;
      text-align: center;
      font-family: 'Barlow Condensed', Impact, sans-serif;
      font-weight: 900;
      font-size: 1.25rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 12px 0;
      border-radius: 50px;
      margin-top: 6px;
      background: #F5C800;
      color: #1a1a1a;
      border: 3px solid #5CC520;
      box-shadow: 0 4px 0 #3a8a10;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }
    .price-cta:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #3a8a10;
    }
    .price-cta:active {
      transform: translateY(4px);
      box-shadow: 0 1px 0 #3a8a10;
    }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .pricing-inner { padding: 0 28px; }
    }
    @media (max-width: 520px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-inner { padding: 0 56px; }
      .price-card-header { padding: 18px 16px 14px; }
      .price-card-body { padding: 16px 16px 22px; align-items: center; }
      .price-features { width: fit-content; }
      .price-cta { width: 80%; }
    }

    /* ── PRICING TRIAL BANNER ── */
    .price-trial-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      margin-top: 28px;
      padding: 32px 40px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      border: 2px solid #5CC520;
      border-radius: 18px;
      box-shadow: 0 6px 0 #3a8a10;
    }
    .price-trial-banner-left {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .price-trial-badge {
      display: inline-block;
      width: fit-content;
      background: #5CC520;
      color: #1a1a1a;
      font-weight: 800;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      padding: 4px 12px;
      border-radius: 50px;
      text-transform: uppercase;
    }
    .price-trial-title {
      font-size: 1.55rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
    }
    .price-trial-desc {
      font-size: 0.95rem;
      color: #cccccc;
      max-width: 560px;
      line-height: 1.6;
      margin: 0;
    }
    .price-trial-cta {
      flex-shrink: 0;
      display: inline-block;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      padding: 16px 36px;
      border-radius: 50px;
      background: #F5C800;
      color: #1a1a1a;
      border: 3px solid #5CC520;
      box-shadow: 0 4px 0 #3a8a10;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }
    .price-trial-cta:hover {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #3a8a10;
    }
    .price-trial-cta:active {
      transform: translateY(4px);
      box-shadow: 0 1px 0 #3a8a10;
    }
    @media (max-width: 860px) {
      .price-trial-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
      }
      .price-trial-cta { width: 100%; text-align: center; }
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: #1a1a1a;
      border-radius: 3px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ── RESPONSIVE – intermediate desktop (861 – 1140px) ── */
    @media (max-width: 1140px) {
      .navbar-inner { padding: 0 32px; }
      .navbar .logo { height: 115px; }
      .nav-links { gap: 22px; }
      .nav-links a { font-size: 1.25rem; letter-spacing: 1px; }
      .btn-nav-signup { font-size: 1.25rem; padding: 7px 20px; }

      .hero-inner { padding: 0 32px 40px; }

      .why-inner { padding: 0 36px; }
      .why-layout { gap: 32px; }

      .compat-inner { padding: 0 36px; }
      .pricing-inner { padding: 0 36px; }
      .faq-inner { padding: 0 36px; }
      .reviews-inner { padding: 0 36px; }
    }

    /* ── RESPONSIVE – tablet (861px and below) ── */
    @media (max-width: 860px) {
      .hamburger { display: flex; }

      .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 100;
      }
      .nav-links.open { display: flex; }
      .mobile-only { display: list-item; }
      .nav-links a { font-size: 2rem; white-space: nowrap; }
      .nav-links li:last-child { margin-top: 10px; }
      .btn-nav-signup { font-size: 2rem; padding: 12px 36px; }

      .navbar-inner { padding: 0 24px; }
      .navbar .logo { height: 130px; width: auto; max-width: none; }

      .hero-wrap { overflow: hidden; }
      .hero {
        flex-direction: column;
        padding: 36px 28px 48px;
        text-align: center;
      }
      .hero-content { flex: none; max-width: 100%; align-items: center; }
      .hero-visual  {
        position: relative;
        right: auto; top: auto;
        transform: none;
        width: 100%; max-width: 420px;
        margin: 0 auto;
        padding-top: 0;
      }
      .btn-signup { align-self: center; }
    }

    @media (max-width: 520px) {
      .navbar .logo { height: 120px; max-width: none; }
      .hero { padding: 24px 16px 36px; }
      .title-line-main { font-size: 4.4rem; }
      .btn-signup { font-size: 2rem; padding: 10px 38px; }
    }
  
/* ════════════════════════════════════════════════════════
   INNER PAGES & CLIENT AREA – Pear Stream WHMCS Template
   ════════════════════════════════════════════════════════ */

/* Page hero banner */
.page-hero { background: #1a1a1a; padding: 36px 0; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 52px; }
.page-hero h1 {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 900; font-size: clamp(2rem,4vw,3rem);
  text-transform: uppercase; letter-spacing: 2px; color: #fff; margin: 0;
}
.page-hero .breadcrumb-bar { margin-top: 6px; font-size: 0.88rem; color: #aaa; }
.page-hero .breadcrumb-bar a { color: #F5C800; text-decoration: none; }
.page-hero .breadcrumb-bar span { color: #aaa; }
.page-content { max-width: 1280px; margin: 0 auto; padding: 40px 52px 80px; }
@media(max-width:860px){ .page-hero-inner{padding:0 28px} .page-content{padding:32px 28px 60px} }
@media(max-width:520px){ .page-hero-inner{padding:0 16px} .page-content{padding:24px 16px 48px} }

/* Client area grid */
.ca-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
@media(max-width:860px){ .ca-grid{grid-template-columns:1fr} }

/* Sidebar */
.ca-sidebar { background: #f7f7f7; border-radius: 16px; border: 2px solid #e0e0e0; overflow: hidden; position: sticky; top: 20px; }
.ca-sidebar-heading { background: #1a1a1a; color: #fff; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; padding: 14px 20px; }
.ca-sidebar-nav { list-style: none; padding: 8px 0; margin: 0; }
.ca-sidebar-nav li a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-family: 'Open Sans',sans-serif; font-size: 0.9rem; font-weight: 600; color: #333; text-decoration: none; transition: background 0.15s; }
.ca-sidebar-nav li a:hover, .ca-sidebar-nav li a.active { background: #F5C800; color: #1a1a1a; }
.ca-sidebar-nav li a i { font-size: 1rem; width: 18px; text-align: center; }
.ca-sidebar-divider { height: 1px; background: #e0e0e0; margin: 6px 0; list-style: none; padding: 0; }

/* ps-card */
.ps-card { background: #fff; border: 2px solid #e0e0e0; border-radius: 16px; padding: 28px 24px; margin-bottom: 24px; }
.ps-card:last-child { margin-bottom: 0; }
.ps-card-title { font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #e0e0e0; }

/* Alerts */
.ps-alert { padding: 14px 18px; border-radius: 10px; border-width: 2px; border-style: solid; font-family: 'Open Sans',sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.ps-alert-success,.alert-success { background:#e8f9e8; border-color:#5CC520; color:#2a6e00; }
.ps-alert-error,.alert-danger   { background:#fff0f0; border-color:#e53935; color:#b71c1c; }
.ps-alert-warning,.alert-warning { background:#fff8e1; border-color:#F5C800; color:#7a5900; }
.ps-alert-info,.alert-info      { background:#e8f4fd; border-color:#2196f3; color:#0d47a1; }
.alert { border-radius: 10px !important; border-width: 2px !important; }

/* Forms */
.ps-form .form-group { margin-bottom: 18px; }
.ps-form label { display: block; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 6px; }
.ps-form input[type=text],.ps-form input[type=email],.ps-form input[type=password],.ps-form input[type=tel],.ps-form input[type=number],.ps-form select,.ps-form textarea { width: 100%; padding: 12px 16px; border: 2px solid #d0d0d0; border-radius: 10px; font-family: 'Open Sans',sans-serif; font-size: 0.95rem; background: #fff; color: #1a1a1a; outline: none; transition: border-color 0.15s; -webkit-appearance: none; }
.ps-form input:focus,.ps-form select:focus,.ps-form textarea:focus { border-color: #5CC520; }
.ps-form textarea { resize: vertical; min-height: 120px; }
.ps-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .ps-form .form-row{grid-template-columns:1fr} }
.ps-form .field-hint { font-size: 0.82rem; color: #777; margin-top: 4px; }
.ps-form .form-check { display: flex; align-items: center; gap: 8px; }
.ps-form .form-check input { width: auto; }

/* Buttons */
.ps-btn { display: inline-flex; align-items: center; gap: 8px; background: #F5C800; color: #1a1a1a; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 10px 28px; border-radius: 50px; border: 3px solid #5CC520; box-shadow: 0 4px 0 #3a8a10; transition: transform 0.1s,box-shadow 0.1s; cursor: pointer; white-space: nowrap; }
.ps-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 #3a8a10; color: #1a1a1a; text-decoration: none; }
.ps-btn:active { transform: translateY(4px); box-shadow: 0 1px 0 #3a8a10; }
.ps-btn-sm { font-size: 1rem; padding: 7px 20px; }
.ps-btn-outline { background: transparent; border-color: #1a1a1a; box-shadow: 0 4px 0 #888; }
.ps-btn-outline:hover { background: #f0f0f0; box-shadow: 0 2px 0 #888; }
.ps-btn-danger { background: #e53935; color: #fff; border-color: #b71c1c; box-shadow: 0 4px 0 #7f0000; }
.ps-btn-danger:hover { color: #fff; box-shadow: 0 2px 0 #7f0000; }
.btn-group-inline { display: flex; gap: 10px; flex-wrap: wrap; }

/* Tables */
.ps-table-wrap, .ps-table-responsive { overflow-x: auto; border-radius: 12px; border: 2px solid #e0e0e0; }
.ps-table { width: 100%; border-collapse: collapse; font-family: 'Open Sans',sans-serif; font-size: 0.9rem; }
.ps-table thead th { background: #1a1a1a; color: #fff; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; padding: 12px 16px; text-align: left; white-space: nowrap; }
.ps-table tbody tr { border-bottom: 1px solid #e0e0e0; }
.ps-table tbody tr:last-child { border-bottom: none; }
.ps-table tbody tr:hover { background: #fafafa; }
.ps-table tbody td { padding: 12px 16px; color: #333; vertical-align: middle; }

/* Status badges */
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border-width: 2px; border-style: solid; }
.status-active   { background:#e8f9e8; color:#2a6e00;  border-color:#5CC520; }
.status-pending  { background:#fff8e1; color:#7a5900;  border-color:#F5C800; }
.status-suspended{ background:#fff0f0; color:#b71c1c;  border-color:#e53935; }
.status-cancelled{ background:#f5f5f5; color:#555;     border-color:#999; }
.status-unpaid   { background:#fff0f0; color:#b71c1c;  border-color:#e53935; }
.status-paid     { background:#e8f9e8; color:#2a6e00;  border-color:#5CC520; }
.status-open     { background:#e8f4fd; color:#0d47a1;  border-color:#2196f3; }
.status-answered { background:#f3e5f5; color:#4a148c;  border-color:#9c27b0; }
.status-closed   { background:#f5f5f5; color:#555;     border-color:#999; }
.status-overdue  { background:#fff0f0; color:#b71c1c;  border-color:#e53935; }
.status-draft    { background:#f5f5f5; color:#555;     border-color:#999; }

/* Pagination */
.ps-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; padding-top: 20px; border-top: 2px solid #e0e0e0; }
.ps-pagination a,.ps-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 8px; font-family: 'Barlow Condensed',Impact,sans-serif; font-weight: 900; font-size: 1rem; color: #1a1a1a; text-decoration: none; border: 2px solid #d0d0d0; transition: all 0.15s; }
.ps-pagination a:hover { background:#F5C800; border-color:#5CC520; }
.ps-pagination .current { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }

/* Dashboard stats */
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
@media(max-width:860px){ .dash-stats{grid-template-columns:repeat(2,1fr)} }
.dash-stat-card { background:#fff; border: 2px solid #e0e0e0; border-radius: 12px; padding: 20px 16px; text-align: center; }
.dash-stat-icon { width:48px; height:48px; background:#5CC520; border-radius:50%; border:2px solid #1a1a1a; display:flex; align-items:center; justify-content:center; margin:0 auto 10px; }
.dash-stat-icon i { font-size:1.2rem; color:#fff; }
.dash-stat-number { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:2rem; color:#1a1a1a; }
.dash-stat-label { font-size:0.82rem; font-weight:600; color:#777; text-transform:uppercase; letter-spacing:1px; }

/* Ticket replies */
.ticket-replies { display:flex; flex-direction:column; gap:16px; margin-bottom:24px; }
.ticket-reply { border-radius:12px; padding:16px 20px; border:2px solid #e0e0e0; }
.ticket-reply.staff  { background:#f7f7f7; border-color:#1a1a1a; }
.ticket-reply.client { background:#f0f9e8; border-color:#5CC520; }
.ticket-reply-meta { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; gap:12px; }
.ticket-reply-author { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1rem; text-transform:uppercase; letter-spacing:1px; color:#1a1a1a; }
.ticket-reply-date { font-size:0.82rem; color:#888; }
.ticket-reply-body { font-size:0.92rem; color:#333; line-height:1.7; }

/* KB categories */
.kb-cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; margin-bottom:40px; }
.kb-cat-card { background:#fff; border:3px solid #1a1a1a; border-radius:16px; padding:28px 20px; display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; text-decoration:none; color:#1a1a1a; transition:background 0.15s,transform 0.15s; }
.kb-cat-card:hover { background:#F5C800; transform:translateY(-3px); color:#1a1a1a; text-decoration:none; }
.kb-cat-icon { width:56px; height:56px; background:#5CC520; border-radius:50%; border:2px solid #1a1a1a; display:flex; align-items:center; justify-content:center; }
.kb-cat-icon i { font-size:1.5rem; color:#fff; }
.kb-cat-name { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1.2rem; text-transform:uppercase; letter-spacing:1px; }
.kb-cat-count { font-size:0.82rem; color:#888; }

/* Article card grid */
.article-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.article-card { background:#fff; border:2px solid #e0e0e0; border-radius:14px; padding:24px 20px; display:flex; flex-direction:column; gap:10px; transition:border-color 0.15s,transform 0.15s; }
.article-card:hover { border-color:#5CC520; transform:translateY(-2px); }
.article-card-title { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1.25rem; text-transform:uppercase; letter-spacing:1px; color:#1a1a1a; line-height:1.2; text-decoration:none; }
.article-card-title:hover { color:#5CC520; }
.article-card-meta { font-size:0.82rem; color:#888; }
.article-card-excerpt { font-size:0.9rem; color:#555; line-height:1.6; flex:1; }
.article-card-link { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1rem; text-transform:uppercase; letter-spacing:1px; color:#5CC520; text-decoration:none; }
.article-card-link:hover { text-decoration:underline; }

/* Article body */
.article-body { font-family:'Open Sans',sans-serif; font-size:0.95rem; line-height:1.8; color:#333; }
.article-body h2,.article-body h3,.article-body h4 { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; text-transform:uppercase; letter-spacing:1px; color:#1a1a1a; margin:24px 0 12px; }
.article-body p { margin-bottom:14px; }
.article-body ul,.article-body ol { margin:0 0 14px 20px; }
.article-body li { margin-bottom:6px; }
.article-body a { color:#5CC520; }
.article-body img { max-width:100%; border-radius:10px; margin:16px 0; }

/* Invoice */
.invoice-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:32px; gap:20px; flex-wrap:wrap; }
.invoice-total-block { background:#1a1a1a; color:#fff; border-radius:12px; padding:20px 28px; text-align:center; min-width:180px; }
.invoice-total-label { font-size:0.82rem; text-transform:uppercase; letter-spacing:1px; color:#aaa; }
.invoice-total-amount { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:2.4rem; color:#F5C800; }
.invoice-items-table { margin-bottom:20px; }

/* ════════════════════════════════════════════════════════
   BOOTSTRAP COMPATIBILITY – WHMCS Store & Default Pages
   (Styles .panel, .list-group, .row/.col-* used by WHMCS
   product catalog at index.php?rp=/store)
   ════════════════════════════════════════════════════════ */

/* Grid */
.container { width:100%; max-width:960px; margin:0 auto; padding:40px 52px 80px; }
.row { display:flex; flex-wrap:wrap; margin-left:-12px; margin-right:-12px; }
[class*="col-"] { padding-left:12px; padding-right:12px; box-sizing:border-box; min-height:1px; }
.col-xs-12,.col-sm-12,.col-md-12 { flex:0 0 100%; max-width:100%; }
.col-sm-3,.col-md-3 { flex:0 0 25%; max-width:25%; }
.col-sm-4,.col-md-4 { flex:0 0 33.333%; max-width:33.333%; }
.col-sm-6,.col-md-6 { flex:0 0 50%; max-width:50%; }
.col-sm-8,.col-md-8 { flex:0 0 66.666%; max-width:66.666%; }
.col-sm-9,.col-md-9 { flex:0 0 75%; max-width:75%; }
@media(max-width:767px) {
  [class*="col-sm-"],[class*="col-md-"] { flex:0 0 100%; max-width:100%; }
  .container { padding:24px 16px 48px; }
}

/* Clearfix */
.clearfix::after { content:''; display:table; clear:both; }

/* Panels */
.panel { background:#fff; border:2px solid #e0e0e0; border-radius:16px; margin-bottom:16px; overflow:hidden; box-shadow:none; }
.panel-default > .panel-heading,
.panel-primary > .panel-heading,
.panel-heading { background:#1a1a1a; color:#fff; padding:14px 20px; border:none; border-radius:0; }
.panel-title { margin:0; font-size:1rem; }
.panel-title > a,
.panel-heading > a,
.panel-heading > .panel-title > a { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1.1rem; text-transform:uppercase; letter-spacing:1px; color:#fff; text-decoration:none; display:flex; align-items:center; gap:8px; }
.panel-title > a:hover, .panel-heading > a:hover { color:#F5C800; text-decoration:none; }
.panel-body { padding:16px 20px; }
.panel-footer { padding:12px 20px; background:#f7f7f7; border-top:1px solid #e0e0e0; }
.panel-collapse { }

/* List Groups */
.list-group { list-style:none; padding:0; margin:0; }
.list-group-item { display:block; padding:10px 20px; color:#333; font-family:'Open Sans',sans-serif; font-size:0.9rem; font-weight:600; border-top:1px solid #e0e0e0; text-decoration:none; transition:background 0.15s,color 0.15s; }
.list-group-item:first-child { border-top:none; }
a.list-group-item { color:#333; text-decoration:none; }
a.list-group-item:hover,
button.list-group-item:hover { background:#F5C800; color:#1a1a1a; text-decoration:none; }
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus { background:#1a1a1a; border-color:#1a1a1a; color:#F5C800; }
.list-group-item-heading { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; text-transform:uppercase; letter-spacing:1px; font-size:1rem; margin-bottom:4px; }
.list-group-item-text { font-size:0.85rem; color:#777; }
.badge { display:inline-block; min-width:10px; padding:3px 7px; background:#5CC520; color:#fff; border-radius:50px; font-size:0.75rem; font-weight:900; font-family:'Barlow Condensed',Impact,sans-serif; letter-spacing:1px; }

/* Bootstrap Buttons */
.btn { display:inline-flex; align-items:center; gap:6px; padding:8px 22px; border-radius:50px; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1rem; letter-spacing:1px; text-transform:uppercase; text-decoration:none; border:2px solid transparent; cursor:pointer; transition:all 0.15s; vertical-align:middle; }
.btn-default { background:#f0f0f0; color:#1a1a1a; border-color:#d0d0d0; }
.btn-default:hover { background:#F5C800; border-color:#5CC520; color:#1a1a1a; text-decoration:none; }
.btn-primary { background:#F5C800; color:#1a1a1a; border-color:#5CC520; box-shadow:0 4px 0 #3a8a10; }
.btn-primary:hover { transform:translateY(2px); box-shadow:0 2px 0 #3a8a10; color:#1a1a1a; text-decoration:none; }
.btn-success { background:#5CC520; color:#fff; border-color:#3a8a10; box-shadow:0 4px 0 #256010; }
.btn-success:hover { transform:translateY(2px); box-shadow:0 2px 0 #256010; color:#fff; text-decoration:none; }
.btn-danger { background:#e53935; color:#fff; border-color:#b71c1c; box-shadow:0 4px 0 #7f0000; }
.btn-danger:hover { transform:translateY(2px); box-shadow:0 2px 0 #7f0000; color:#fff; text-decoration:none; }
.btn-sm { font-size:0.85rem; padding:5px 16px; }
.btn-lg { font-size:1.4rem; padding:12px 36px; }
.btn-block { width:100%; justify-content:center; }
.btn-group { display:inline-flex; gap:0; }
.btn-group .btn { border-radius:0; }
.btn-group .btn:first-child { border-radius:50px 0 0 50px; }
.btn-group .btn:last-child { border-radius:0 50px 50px 0; }

/* Wells */
.well { background:#f7f7f7; border:2px solid #e0e0e0; border-radius:12px; padding:20px; margin-bottom:16px; }
.well-sm { padding:12px; }
.well-lg { padding:28px; }

/* Tables (Bootstrap compat) */
.table { width:100%; border-collapse:collapse; }
.table > thead > tr > th { padding:12px 16px; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:0.95rem; text-transform:uppercase; letter-spacing:1px; background:#1a1a1a; color:#fff; border-bottom:2px solid #e0e0e0; text-align:left; }
.table > tbody > tr > td { padding:12px 16px; color:#333; border-bottom:1px solid #e0e0e0; vertical-align:middle; }
.table > tbody > tr:last-child > td { border-bottom:none; }
.table > tbody > tr:hover > td { background:#fafafa; }
.table-bordered { border:2px solid #e0e0e0; border-radius:12px; overflow:hidden; }
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td { border:1px solid #e0e0e0; }
.table-responsive { overflow-x:auto; }
.table-striped > tbody > tr:nth-child(odd) > td { background:#f7f7f7; }

/* Labels / Tags */
.label { display:inline-block; padding:3px 10px; border-radius:50px; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:0.8rem; text-transform:uppercase; letter-spacing:1px; }
.label-default { background:#888; color:#fff; }
.label-primary { background:#F5C800; color:#1a1a1a; }
.label-success { background:#5CC520; color:#fff; }
.label-danger  { background:#e53935; color:#fff; }
.label-warning { background:#F5C800; color:#1a1a1a; }
.label-info    { background:#2196f3; color:#fff; }

/* Miscellaneous Bootstrap utilities */
.text-center { text-align:center; }
.text-right  { text-align:right; }
.text-left   { text-align:left; }
.text-muted  { color:#888; }
.text-primary { color:#5CC520; }
.text-danger  { color:#e53935; }
.text-success { color:#5CC520; }
.pull-right { float:right; }
.pull-left  { float:left; }
.hidden { display:none !important; }
.show   { display:block !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.mt-0 { margin-top:0; }
.mb-0 { margin-bottom:0; }
.form-control { width:100%; padding:12px 16px; border:2px solid #d0d0d0; border-radius:10px; font-family:'Open Sans',sans-serif; font-size:0.95rem; background:#fff; color:#1a1a1a; outline:none; transition:border-color 0.15s; box-sizing:border-box; -webkit-appearance:none; }
.form-control:focus { border-color:#5CC520; outline:none; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:0.95rem; text-transform:uppercase; letter-spacing:1px; color:#1a1a1a; margin-bottom:6px; }
.input-group { display:flex; }
.input-group .form-control { border-radius:10px 0 0 10px; flex:1; }
.input-group-btn { flex-shrink:0; }
.input-group-btn .btn { border-radius:0 10px 10px 0; margin-left:-2px; }
.checkbox label, .radio label { display:flex; align-items:center; gap:8px; cursor:pointer; font-family:'Open Sans',sans-serif; font-size:0.95rem; }
.has-error .form-control { border-color:#e53935; }
.help-block { font-size:0.82rem; color:#777; margin-top:4px; }
.nav-tabs { display:flex; list-style:none; padding:0; margin:0 0 20px; border-bottom:2px solid #e0e0e0; gap:4px; }
.nav-tabs > li { margin-bottom:-2px; }
.nav-tabs > li > a { display:block; padding:10px 20px; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1rem; text-transform:uppercase; letter-spacing:1px; color:#333; text-decoration:none; border:2px solid transparent; border-bottom:none; border-radius:10px 10px 0 0; transition:all 0.15s; }
.nav-tabs > li > a:hover { background:#f0f0f0; color:#1a1a1a; }
.nav-tabs > li.active > a { background:#1a1a1a; color:#F5C800; border-color:#1a1a1a; }
.tab-content { padding:24px 0; }
.tab-pane { display:none; }
.tab-pane.active { display:block; }
.pagination { display:flex; list-style:none; padding:0; margin:16px 0; gap:4px; justify-content:center; }
.pagination > li > a,
.pagination > li > span { display:inline-flex; align-items:center; justify-content:center; min-width:36px; height:36px; padding:0 8px; border-radius:8px; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1rem; color:#1a1a1a; text-decoration:none; border:2px solid #d0d0d0; transition:all 0.15s; }
.pagination > li > a:hover { background:#F5C800; border-color:#5CC520; }
.pagination > .active > a,
.pagination > .active > span { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }

/* Affiliates */
.affiliate-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:28px; }
@media(max-width:600px){ .affiliate-stats{grid-template-columns:1fr} }
.affiliate-stat { background:#fff; border:2px solid #e0e0e0; border-radius:12px; padding:20px; text-align:center; }
.affiliate-stat-value { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:2rem; color:#1a1a1a; }
.affiliate-stat-label { font-size:0.82rem; color:#777; text-transform:uppercase; letter-spacing:1px; }

/* Search form */
.ps-search-form { display:flex; gap:10px; margin-bottom:32px; }
.ps-search-form input[type=text] { flex:1; padding:12px 16px; border:3px solid #1a1a1a; border-radius:50px; font-family:'Open Sans',sans-serif; font-size:0.95rem; outline:none; transition:border-color 0.15s; }
.ps-search-form input:focus { border-color:#5CC520; }
.ps-search-form button { padding:12px 28px; background:#F5C800; color:#1a1a1a; font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1.1rem; text-transform:uppercase; letter-spacing:1px; border:3px solid #5CC520; border-radius:50px; cursor:pointer; box-shadow:0 4px 0 #3a8a10; transition:transform 0.1s,box-shadow 0.1s; }
.ps-search-form button:hover { transform:translateY(2px); box-shadow:0 2px 0 #3a8a10; }

/* Empty state */
.empty-state { text-align:center; padding:60px 20px; color:#888; }
.empty-state i { font-size:3rem; margin-bottom:16px; display:block; }
.empty-state p { font-size:1rem; }

/* Dashboard row link (services, invoices) */
.ca-row-link { display:flex; align-items:center; justify-content:space-between; padding:15px 22px; border-bottom:1px solid #f0f0f0; text-decoration:none; color:#1a1a1a; transition:background 0.15s; }
.ca-row-link:hover { background:#fafafa; }
.ca-row-title { font-family:'Open Sans',sans-serif; font-weight:700; font-size:0.88rem; color:#1a1a1a; }
.ca-row-sub { font-size:0.79rem; color:#aaa; margin-top:2px; }

/* Dashboard quick action links */
.ca-action-link { display:flex; align-items:center; gap:11px; padding:12px 18px; text-decoration:none; color:#1a1a1a; transition:background 0.15s; font-family:'Open Sans',sans-serif; font-weight:700; font-size:0.86rem; }
.ca-action-link:hover { background:#fafafa; }
.ca-action-icon { width:32px; height:32px; background:#5CC520; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#fff; font-size:0.82rem; }
.ca-action-arrow { color:#ccc; font-size:0.68rem; margin-left:auto; }

/* Dashboard two-column layout responsive */
@media(max-width:860px){ .ca-dash-two-col{grid-template-columns:1fr !important;} }
/* Dashboard hero stats responsive */
@media(max-width:700px){ .ca-dash-stats-row{grid-template-columns:1fr !important;} }

/* Referral page grids */
.referral-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.referral-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media(max-width:640px){ .referral-steps,.referral-stats{grid-template-columns:1fr !important;} }

/* Network status */
.network-status-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }
.network-status-card { background:#fff; border:2px solid #e0e0e0; border-radius:12px; padding:20px; display:flex; align-items:center; gap:14px; }
.network-dot { width:16px; height:16px; border-radius:50%; flex-shrink:0; }
.network-dot.operational { background:#5CC520; }
.network-dot.degraded    { background:#F5C800; }
.network-dot.outage      { background:#e53935; }
.network-info-id { font-size:0.82rem; color:#aaa; }
.network-info-name { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:1.1rem; text-transform:uppercase; letter-spacing:1px; color:#1a1a1a; }
.network-info-status { font-size:0.85rem; font-weight:600; }

/* Login / Auth pages */
.auth-wrap { min-height: 70vh; display:flex; align-items:center; justify-content:center; padding: 48px 20px; }
.auth-box { background:#fff; border:3px solid #1a1a1a; border-radius:20px; padding:40px 40px 36px; width:100%; max-width:440px; }
.auth-logo { display:block; margin:0 auto 24px; height:80px; width:auto; }
.auth-title { font-family:'Barlow Condensed',Impact,sans-serif; font-weight:900; font-size:2rem; text-transform:uppercase; letter-spacing:2px; color:#1a1a1a; text-align:center; margin-bottom:24px; }
.auth-divider { text-align:center; font-size:0.85rem; color:#888; margin:16px 0; }
.auth-links { display:flex; justify-content:space-between; font-size:0.88rem; margin-top:14px; }
.auth-links a { color:#5CC520; text-decoration:none; }
.auth-links a:hover { text-decoration:underline; }
@media(max-width:480px){ .auth-box{padding:28px 20px 24px} }

/* Misc */
.text-muted { color:#888 !important; font-size:0.88rem; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.d-flex{display:flex}.align-center{align-items:center}.gap-2{gap:16px}.justify-between{justify-content:space-between}
.w-100{width:100%}

/* ── WHMCS SYSTEM OVERLAYS (Bootstrap not loaded in this theme) ── */
.hidden { display: none !important; }
#fullpage-overlay { display: none; position: fixed; top:0;left:0;right:0;bottom:0; z-index:9998; background:rgba(0,0,0,0.6); align-items:center; justify-content:center; }
#fullpage-overlay:not(.hidden) { display: flex; }
.modal { display: none !important; overflow: hidden; }
.modal.in, .modal.show { display: flex !important; position: fixed; top:0;left:0;right:0;bottom:0; z-index:9999; align-items:center; justify-content:center; background:rgba(0,0,0,0.5); }
.modal-backdrop { display: none !important; }

/* ── REFERRAL / AFFILIATES PAGE ── */
.ref-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.ref-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 12px;
}
.ref-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 4px;
  padding-top: 28px;
  color: #5CC520;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ref-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #5CC520;
  border: 3px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ref-step-icon i { font-size: 1.5rem; color: #fff; }
.ref-step-title {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.ref-step-desc { font-size: 0.9rem; color: #555; line-height: 1.6; margin: 0; }

.ref-enroll-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ref-enroll-text { flex: 1; min-width: 240px; }
.ref-enroll-heading {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.ref-enroll-sub { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 24px; max-width: 520px; }
.ref-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.ref-stat { text-align: center; }
.ref-stat-value {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #5CC520;
  line-height: 1;
}
.ref-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #777; font-weight: 600; margin-top: 4px; }
.ref-enroll-action { flex-shrink: 0; }
@media (max-width: 700px) {
  .ref-step-arrow { display: none; }
  .ref-steps { gap: 16px; }
  .ref-enroll-card { flex-direction: column; }
  .ref-enroll-action { width: 100%; }
  .ref-enroll-action .ps-btn { width: 100%; justify-content: center; }
  .ref-stats { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   WHMCS STORE / CART — BOOTSTRAP LAYOUT TRANSFORMATION
   ═══════════════════════════════════════════════════════════ */

/* 1. Hide WHMCS store/cart sidebar by ID */
#sidebar, #ClientAreaSidebar { display: none !important; }

/* 2. Main content col: expand */
.container > .row > [class*="col-"]:nth-child(2) {
  flex: 1 1 62% !important;
  max-width: 63% !important;
  padding-right: 24px !important;
}
/* Also covers 2-col layout (col-9 directly after hidden col-3) */
.container > .row > .col-md-9,
.container > .row > .col-sm-9 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-right: 12px !important;
}

/* 3. Order summary col: keep right-side at ~37% */
.container > .row > [class*="col-"]:nth-child(3) {
  flex: 1 1 37% !important;
  max-width: 37% !important;
}

/* 4. Mobile: stack everything */
@media (max-width: 768px) {
  .container > .row > [class*="col-"]:nth-child(2),
  .container > .row > [class*="col-"]:nth-child(3) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 12px !important;
  }
}

/* 5. Page heading ("Review & Checkout", "Configure", etc.) */
.container > .row h2 {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #1a1a1a !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 3px solid #1a1a1a !important;
}

/* 6. Nav tabs → themed step bar */
.container .nav-tabs {
  list-style: none !important;
  display: flex !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  border: 2px solid #1a1a1a !important;
  border-bottom: 2px solid #1a1a1a !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.container .nav-tabs > li {
  flex: 1 !important;
  margin-bottom: 0 !important;
  border-right: 2px solid #1a1a1a !important;
}
.container .nav-tabs > li:last-child { border-right: none !important; }
.container .nav-tabs > li > a {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 11px 10px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #666 !important;
  background: #f7f7f7 !important;
  border: none !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s !important;
  white-space: nowrap !important;
}
.container .nav-tabs > li.active > a,
.container .nav-tabs > li > a:hover,
.container .nav-tabs > li > a:focus {
  background: #1a1a1a !important;
  color: #F5C800 !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
}

/* 7. Tab content area */
.container .tab-content {
  background: #fff !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.container .tab-pane { padding: 20px !important; }

/* 8. Bootstrap collapse (promo code accordion) */
.container .collapse { display: none; }
.container .collapse.in,
.container .collapse.show { display: block; }

/* 9. Order Summary panel — dark themed */
.container > .row > [class*="col-"]:nth-child(3) .panel {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.container > .row > [class*="col-"]:nth-child(3) .panel-heading {
  background: #F5C800 !important;
  color: #1a1a1a !important;
}
.container > .row > [class*="col-"]:nth-child(3) .panel-heading a,
.container > .row > [class*="col-"]:nth-child(3) .panel-title,
.container > .row > [class*="col-"]:nth-child(3) .panel-title a {
  color: #1a1a1a !important;
  font-size: 1rem !important;
}
.container > .row > [class*="col-"]:nth-child(3) .panel-body {
  color: #fff !important;
  padding: 20px !important;
}
.container > .row > [class*="col-"]:nth-child(3) .panel-body p,
.container > .row > [class*="col-"]:nth-child(3) .panel-body span,
.container > .row > [class*="col-"]:nth-child(3) .panel-body td {
  color: #ccc !important;
}
.container > .row > [class*="col-"]:nth-child(3) strong,
.container > .row > [class*="col-"]:nth-child(3) b {
  color: #fff !important;
}
.container > .row > [class*="col-"]:nth-child(3) .text-success,
.container > .row > [class*="col-"]:nth-child(3) .discount-row { color: #5CC520 !important; }
.container > .row > [class*="col-"]:nth-child(3) .panel-footer {
  background: #121212 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 16px 20px !important;
}
/* Checkout / primary button in order summary */
.container > .row > [class*="col-"]:nth-child(3) .btn-success,
.container > .row > [class*="col-"]:nth-child(3) .btn-primary {
  background: #5CC520 !important;
  color: #fff !important;
  border-color: #3a8a10 !important;
  box-shadow: 0 4px 0 #256010 !important;
  width: 100% !important;
  justify-content: center !important;
  font-size: 1.05rem !important;
}
.container > .row > [class*="col-"]:nth-child(3) .btn-success:hover,
.container > .row > [class*="col-"]:nth-child(3) .btn-primary:hover {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #256010 !important;
  color: #fff !important;
}
/* Continue Shopping link in summary */
.container > .row > [class*="col-"]:nth-child(3) .btn-default {
  background: transparent !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #888 !important;
  width: 100% !important;
  justify-content: center !important;
  margin-top: 10px !important;
  font-size: 0.85rem !important;
}
.container > .row > [class*="col-"]:nth-child(3) .btn-default:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* 10. Total / due-today line highlight */
.container .total-row td,
.container .total-due td { color: #F5C800 !important; font-size: 1.1rem !important; font-weight: 900 !important; }

/* 11. ps-panel — JS tags every .panel with this class for extra polish */
.ps-panel {
  border: 3px solid #1a1a1a !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ps-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.ps-panel > .panel-heading {
  padding: 16px 22px !important;
}
.ps-panel > .panel-heading .panel-title,
.ps-panel > .panel-heading .panel-title a,
.ps-panel > .panel-heading a {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.15rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: #fff !important;
}
.ps-panel > .panel-body {
  padding: 20px 22px !important;
  color: #333 !important;
  font-family: 'Open Sans', sans-serif !important;
}
.ps-panel > .panel-body .btn-primary,
.ps-panel > .panel-body .btn-success {
  margin-top: 12px;
}

/* 12. Cart sidebar spacing */
#order-standard_cart .cart-sidebar {
  padding-left: 40px;
  padding-top: 25px;
}

/* Show full sidebar on mobile — stacked above products.
   standard_cart hides it at <1200px without !important so our !important wins. */
@media only screen and (max-width: 1199px) {
  #order-standard_cart .cart-sidebar {
    display: block !important;
    float: none !important;
    width: 100% !important;
    padding: 0 16px !important;
    margin-bottom: 32px;
  }
  #order-standard_cart .cart-body {
    float: none !important;
    width: 100% !important;
  }
  /* Style the sidebar panels to match the pearstream theme on mobile */
  #order-standard_cart .cart-sidebar .panel,
  #order-standard_cart .cart-sidebar .card-sidebar {
    border: 2px solid #1a1a1a !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 14px !important;
  }
  #order-standard_cart .cart-sidebar .panel-heading,
  #order-standard_cart .cart-sidebar .card-header {
    background: #1a1a1a !important;
    color: #F5C800 !important;
    font-family: 'Barlow Condensed', Impact, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 14px 18px !important;
  }
  #order-standard_cart .cart-sidebar h3 {
    color: #F5C800 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  #order-standard_cart .cart-sidebar .list-group-item {
    border-left: none !important;
    border-right: none !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
  }
  #order-standard_cart .cart-sidebar .list-group-item.active {
    background: #5CC520 !important;
    border-color: #5CC520 !important;
    color: #fff !important;
    font-weight: 700 !important;
  }
  /* Hide the dropdown fallback since we're showing the full sidebar */
  #order-standard_cart .sidebar-collapsed {
    display: none !important;
  }
}

/* 12b. Cart Body — "Review & Checkout" page
   ─────────────────────────────────────────── */

/* Hide the dropdown collapsed sidebar on desktop (full sidebar is already visible) */
@media only screen and (min-width: 1200px) {
  .cart-body .sidebar-collapsed { display: none !important; }
}

/* "Review & Checkout" heading */
.cart-body .header-lined {
  border: none !important;
  margin-bottom: 28px !important;
}
.cart-body .header-lined h1 {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 3px solid #1a1a1a !important;
}

/* Two-column layout: cart items left, order summary right */
.cart-body > .row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
}
.cart-body .secondary-cart-body {
  flex: 1 1 62% !important;
  max-width: 63% !important;
  padding-right: 32px !important;
}
.cart-body .secondary-cart-sidebar {
  flex: 1 1 35% !important;
  max-width: 37% !important;
}
@media (max-width: 768px) {
  .cart-body .secondary-cart-body,
  .cart-body .secondary-cart-sidebar {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
}

/* Cart items header row */
.view-cart-items-header {
  background: #1a1a1a !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.view-cart-items-header .row {
  margin: 0 !important;
}
.view-cart-items-header .row > [class*="col-"] {
  padding: 14px 20px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #fff !important;
}

/* Cart items list */
.view-cart-items {
  border: 2px solid #e0e0e0 !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  background: #fff !important;
  margin-bottom: 24px !important;
}
.view-cart-items .item {
  padding: 16px 20px !important;
  border-bottom: 1px solid #e0e0e0 !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.95rem !important;
  color: #333 !important;
}
.view-cart-items .item:last-child {
  border-bottom: none !important;
}
.view-cart-items .item .item-title,
.view-cart-items .item strong {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.05rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #1a1a1a !important;
}
.view-cart-items .item a.btn-danger,
.view-cart-items .item .remove-item {
  font-size: 0.8rem !important;
  padding: 4px 12px !important;
}

/* Empty cart message */
.view-cart-empty {
  padding: 48px 20px !important;
  text-align: center !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.3rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #999 !important;
}

/* Promo code tabs section */
.view-cart-tabs {
  margin-bottom: 24px !important;
}
.view-cart-tabs .nav-tabs {
  border: 2px solid #1a1a1a !important;
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}
.view-cart-tabs .nav-tabs > li > a,
.view-cart-tabs .nav-tabs > .nav-item > .nav-link {
  background: #1a1a1a !important;
  color: #F5C800 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.view-cart-tabs .tab-content {
  border: 2px solid #e0e0e0 !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  background: #fff !important;
  padding: 20px !important;
  margin-bottom: 0 !important;
}
.view-cart-tabs .tab-pane .form-group {
  margin-bottom: 12px !important;
}
.view-cart-tabs .tab-pane .btn-default,
.view-cart-tabs .tab-pane .btn-block {
  background: #F5C800 !important;
  color: #1a1a1a !important;
  border: 3px solid #5CC520 !important;
  box-shadow: 0 4px 0 #3a8a10 !important;
  border-radius: 50px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 10px 24px !important;
}
.view-cart-tabs .tab-pane .btn-default:hover,
.view-cart-tabs .tab-pane .btn-block:hover {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #3a8a10 !important;
}

/* ── Order Summary sidebar ── */
.order-summary {
  background: #1a1a1a !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: sticky;
  top: 100px;
}
.order-summary h2 {
  background: #F5C800 !important;
  color: #1a1a1a !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.15rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 16px 22px !important;
  margin: 0 !important;
  border: none !important;
}
.order-summary .summary-container {
  padding: 20px 22px 24px !important;
}
.order-summary .subtotal,
.order-summary .recurring-totals {
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.95rem !important;
  color: #ccc !important;
}
.order-summary .subtotal span,
.order-summary .recurring-totals span {
  color: #ccc !important;
}
.order-summary .subtotal .pull-right,
.order-summary .subtotal .float-right,
.order-summary .recurring-totals .pull-right,
.order-summary .recurring-totals .float-right {
  font-weight: 700 !important;
  color: #fff !important;
}

/* Total due today — big highlight */
.order-summary .total-due-today {
  text-align: center !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  margin-bottom: 20px !important;
}
.order-summary .total-due-today .amt,
.order-summary .total-due-today #totalDueToday {
  display: block !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 2.6rem !important;
  color: #F5C800 !important;
  letter-spacing: 1px !important;
  line-height: 1.1 !important;
}
.order-summary .total-due-today > span:last-child {
  display: block !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #888 !important;
  margin-top: 4px !important;
}

/* Checkout button */
.order-summary .btn-checkout {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  background: #5CC520 !important;
  color: #fff !important;
  border: 3px solid #3a8a10 !important;
  box-shadow: 0 4px 0 #256010 !important;
  border-radius: 50px !important;
  padding: 14px 24px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.15rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-decoration: none !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease !important;
}
.order-summary .btn-checkout:hover {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #256010 !important;
  color: #fff !important;
}
.order-summary .btn-checkout.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Continue Shopping link */
.order-summary .btn-continue-shopping {
  display: block !important;
  text-align: center !important;
  margin-top: 12px !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #666 !important;
  text-decoration: none !important;
}
.order-summary .btn-continue-shopping:hover {
  color: #F5C800 !important;
}

/* 13. WHMCS Store Product Cards — match homepage price-card look
   Structure: .products > .row > .col-md-6 > .product > header / .product-desc / footer */

/* Grid */
.products .row {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0 !important;
  margin: 0 !important;
  padding-top: 28px !important;
}
.products .row > [class*="col-"],
.products .row > .col-md-6,
.products .row > .col-md-4,
.products .row > .col-sm-6,
.products .row > .col-lg-4 {
  flex: none !important;
  max-width: 90% !important;
  width: 90% !important;
  padding: 0 !important;
  margin: 0 auto 28px !important;
  float: none !important;
}

/* Card */
.product {
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  border: 3px solid #1a1a1a !important;
  background: #fff !important;
  height: 100% !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* Header — colored band with product name */
.product > header {
  padding: 28px 24px 24px !important;
  text-align: center !important;
  background: #5CC520 !important;
  margin: 0 !important;
  border: none !important;
}
.product > header span {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.6rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.15 !important;
  color: #1a1a1a !important;
  display: block !important;
}

/* Color cycling — rotate green / yellow / grey / dark across products */
.products .row > [class*="col-"]:nth-child(4n+1) .product > header { background: #5CC520 !important; }
.products .row > [class*="col-"]:nth-child(4n+2) .product > header { background: #F5C800 !important; }
.products .row > [class*="col-"]:nth-child(4n+3) .product > header { background: #555555 !important; }
.products .row > [class*="col-"]:nth-child(4n+4) .product > header { background: #1a1a1a !important; }
/* Light text on dark headers */
.products .row > [class*="col-"]:nth-child(4n+3) .product > header span,
.products .row > [class*="col-"]:nth-child(4n+4) .product > header span { color: #fff !important; }

/* Body — description & features */
.product .product-desc {
  padding: 24px 24px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  flex: 1 !important;
}

#order-standard_cart .products .product div.product-desc {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Description paragraph — raw text with ✔ and <br> tags */
.product .product-desc p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.88rem !important;
  color: #444 !important;
  line-height: 1.85 !important;
  margin: 0 !important;
  white-space: normal !important;
  word-wrap: break-word !important;
}

/* Feature list — 🍐 bullets like homepage */
.product .product-desc ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.product .product-desc ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
}
.product .product-desc ul li::before {
  content: '🍐' !important;
  font-size: 0.9rem !important;
  flex-shrink: 0 !important;
  line-height: 1.4 !important;
}
.product .product-desc ul li .feature-value {
  font-weight: 600 !important;
  color: #1a1a1a !important;
}

/* JS-converted ✔ features → .ps-features */
.ps-features {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ps-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
}
.ps-features li::before {
  content: '🍐' !important;
  font-size: 0.9rem !important;
  flex-shrink: 0 !important;
  line-height: 1.4 !important;
}

/* Footer — price + CTA */
.product > footer,
#order-standard_cart .products .product footer {
  padding: 0 24px 28px !important;
  text-align: center !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Divider above footer */
.product > footer::before {
  content: '' !important;
  display: block !important;
  height: 2px !important;
  background: #e0e0e0 !important;
  border-radius: 2px !important;
  margin-bottom: 20px !important;
}

/* Price — big bold like homepage */
.product .product-pricing {
  margin-bottom: 16px !important;
}
.product .product-pricing .price {
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  color: #1a1a1a !important;
  letter-spacing: 1px !important;
  display: block !important;
}
/* Billing cycle text (e.g. "Monthly") below price */
.product .product-pricing br + br { display: none !important; }
.product .product-pricing {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.82rem !important;
  color: #888 !important;
  text-transform: capitalize !important;
}

/* Order Now button — yellow CTA matching homepage */
.product .btn-order-now {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  font-family: 'Barlow Condensed', Impact, sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 16px 24px !important;
  border-radius: 50px !important;
  background: #F5C800 !important;
  color: #1a1a1a !important;
  border: 3px solid #5CC520 !important;
  box-shadow: 0 5px 0 #3a8a10 !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease !important;
  line-height: 1.2 !important;
  min-height: 52px !important;
}
.product .btn-order-now i {
  font-size: 1.1rem !important;
}
.product .btn-order-now:hover {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #3a8a10 !important;
  color: #1a1a1a !important;
}
.product .btn-order-now:active {
  transform: translateY(4px) !important;
  box-shadow: 0 1px 0 #3a8a10 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .products .row { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
  .product > header { padding: 22px 18px 18px !important; }
  .product > header span { font-size: 1.35rem !important; }
  .product .product-desc { padding: 18px 18px 12px !important; }
  .product > footer { padding: 0 18px 22px !important; }
  .product .product-pricing .price { font-size: 2.2rem !important; }
  .product .btn-order-now { font-size: 1.05rem !important; padding: 12px 16px !important; }
}
@media (max-width: 600px) {
  .products .row { grid-template-columns: 1fr !important; gap: 20px !important; max-width: 400px !important; margin: 0 auto !important; }
  .product > header span { font-size: 1.5rem !important; }
  .product .product-desc { padding: 20px 20px 14px !important; }
  .product > footer { padding: 0 20px 24px !important; }
  .product .product-pricing .price { font-size: 2.4rem !important; }
  .product .btn-order-now { font-size: 1.15rem !important; padding: 14px 20px !important; }
}
/* ─────────────────────────────────────────────────────────── */
