/* ═══════════════════════════════════════════════════════════
       PLANKO STYLE GUIDE V2 - Light Theme Default
       Based on planko-style-guide.html specifications
    ═══════════════════════════════════════════════════════════ */

      :root {
        /* Brand Colors */
        --mint: #84e390;
        --mint-dim: rgba(132, 227, 144, 0.12);
        --forest: #2e5038;
        --near-black: #18181b;

        /* Light Theme (Default) */
        --bg-page: #fafafa;
        --bg-card: #f4f4f5;
        --bg-deeper: #ffffff;
        --text-primary: #2e5038;
        --text-secondary: #52525b;
        --text-muted: #71717a;
        --text-dim: #71717a;
        --border: #e5e5e5;
        --border-light: #d4d4d8;

        /* Priority Colors */
        --priority-high: #e38484;
        --priority-medium: #e3c584;
        --priority-low: #8e9aad;

        /* Shadows */
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      }

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

      /* Base */
      html {
        scroll-behavior: smooth;
      }

      body {
        font-family:
          "Outfit",
          system-ui,
          -apple-system,
          sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-secondary);
        background: var(--bg-page);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      ::selection {
        background: var(--mint);
        color: var(--bg-page);
      }

      /* Grain Overlay */
      .grain {
        position: fixed;
        inset: 0;
        pointer-events: none;
        opacity: 0.018;
        z-index: 9999;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }

      /* Container */
      .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
      }

      @media (max-width: 768px) {
        .container {
          padding: 0 20px;
        }
      }

      /* Typography */
      h1,
      h2,
      h3,
      h4 {
        color: var(--text-primary);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
      }

      h1 {
        font-size: clamp(32px, 5vw, 56px);
      }

      h2 {
        font-size: clamp(28px, 4vw, 42px);
      }

      h3 {
        font-size: clamp(20px, 3vw, 24px);
        font-weight: 700;
      }

      p {
        color: var(--text-muted);
        line-height: 1.7;
      }

      a {
        color: var(--mint);
        text-decoration: none;
        transition: opacity 0.2s;
      }

      a:hover {
        opacity: 0.8;
      }

      /* Logo */
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo-mark {
        width: 32px;
        height: 32px;
      }

      .logo-text {
        font-family: "Outfit", sans-serif;
        font-weight: 600;
        font-size: 22px;
        color: var(--text-primary);
        letter-spacing: -0.02em;
      }

      /* Header */
      header {
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(250, 250, 250, 0.9);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 36px;
        margin-left: auto;
      }

      nav a {
        color: var(--text-muted);
        font-size: 16px;
        font-weight: 500;
        transition: color 0.2s;
      }

      nav a:hover {
        color: var(--mint);
        opacity: 1;
      }

      .nav-divider {
        color: var(--border);
        font-weight: 300;
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        border-radius: 10px;
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        text-decoration: none;
      }

      .btn-primary {
        background: #1a7f37;
        color: #ffffff;
      }

      .btn-primary {
        min-height: 52px;
        padding: 16px 32px;
        font-size: 1.125rem;
        box-shadow: 0 4px 14px rgba(26, 127, 55, 0.4);
      }
      .btn-primary:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(46, 160, 67, 0.3);
        background: #156b2d;
        opacity: 1;
      }

      .btn-secondary {
        background: transparent;
        color: var(--forest);
        border: 1px solid var(--forest);
      }

      .btn-secondary:hover {
        background: var(--mint-dim);
        opacity: 1;
      }

      .btn-ghost {
        background: var(--bg-card);
        color: var(--text-primary);
        border: 1px solid var(--border-light);
      }

      .btn-ghost:hover {
        border-color: var(--mint);
        opacity: 1;
      }

      
      /* Pain-Agitation Block */
      .pain-agitation {
        padding: 48px 0;
        text-align: center;
      }
      .pain-agitation h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
        color: #1a1a2e;
      }
      .pain-list {
        list-style: none;
        padding: 0;
        max-width: 480px;
        margin: 0 auto;
        text-align: left;
      }
      .pain-list li {
        font-size: 1.1rem;
        padding: 8px 0 8px 28px;
        position: relative;
        color: #555;
      }
      .pain-list li::before {
        content: "\2717";
        position: absolute;
        left: 0;
        color: #e74c3c;
        font-weight: bold;
      }
      .pain-solution-box {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        border-radius: 12px;
        padding: 24px;
        margin-top: 32px;
        text-align: center;
      }
      .pain-solution-box p {
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 16px;
      }
      .pain-solution-list {
        list-style: none;
        padding: 0;
        max-width: 480px;
        margin: 0 auto;
        text-align: left;
      }
      .pain-solution-item {
        padding: 8px 0 8px 28px;
        position: relative;
        color: #2e5038;
        font-size: 1.05rem;
      }
      .pain-solution-item::before {
        content: "\2713";
        position: absolute;
        left: 0;
        color: #2ea043;
        font-weight: bold;
      }

      /* Hero Section */
      .hero {
        padding: 160px 0 80px;
        text-align: center;
      }

      @media (max-width: 768px) {
        .hero {
          padding: 100px 0 40px;
        }
      }

      @media (max-width: 768px) {
        h1 {
          line-height: 1.25;
        }
      }

      .hero h1 {
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero h1 em {
        font-style: normal;
        color: var(--mint);
      }

      .hero p {
        font-size: 22px;
        max-width: 640px;
        margin: 0 auto 32px;
      }

      .hero-cta {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }

      @media (max-width: 768px) {
        h1 {
          line-height: 1.25;
        }

        .hero-cta .btn-primary {
          width: 100%;
          text-align: center;
        }

        .hero-cta {
          flex-direction: column;
          align-items: stretch;
        }
        .hero-cta .btn {
          padding: 16px 32px;
          font-size: 16px;
          width: 100%;
        }
      }

      .hero-image {
        margin-top: 60px;
      }

      .hero-image img {
        width: 100%;
        display: block;
      }

      /* Section */
      section {
        padding: 100px 0;
      }

      .section-tag {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--mint);
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .section-tag::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--mint);
      }

      .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
      }

      .section-header h2 {
        margin-bottom: 16px;
      }

      /* Cards */
      .card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .card:hover {
        border-color: var(--border-light);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
      }

      .card h3 {
        font-size: 28px;
        margin-bottom: 12px;
      }

      .card p {
        font-size: 20px;
        line-height: 1.6;
      }

      /* Grid */
      .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }

      @media (max-width: 900px) {
        .grid-3,
        .grid-4 {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 600px) {
        .grid-2,
        .grid-3,
        .grid-4 {
          grid-template-columns: 1fr;
        }
      }

      /* Social Proof / Testimonials */
      .testimonials-heading {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .testimonials {
        background: var(--bg-card);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .testimonial-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
      }

      .testimonial-card p {
        font-style: italic;
        font-size: 15px;
        margin-bottom: 16px;
        color: var(--text-secondary);
      }

      .testimonial-card strong {
        color: var(--mint);
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .testimonial-avatar {
        width: 40px;
        height: 40px;
        background: var(--mint-dim);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--mint);
      }

      .testimonial-info {
        font-size: 13px;
      }

      .testimonial-info .name {
        font-weight: 600;
        color: var(--text-primary);
      }

      .testimonial-info .role {
        color: var(--text-dim);
      }

      .testimonial-card strong {
        color: var(--forest);
      }

      .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid var(--border);
        padding: 12px 24px;
        border-radius: 100px;
        font-size: 14px;
        color: var(--text-muted);
        margin-top: 40px;
      }

      .trust-badge .stars {
        color: var(--mint);
      }

      /* Features */
      .feature-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px;
        transition: all 0.3s;
      }

      .feature-card:hover {
        border-color: var(--mint);
        background: rgba(132, 227, 144, 0.04);
      }

      /* Combined Features Card */
      .features-combined {
        display: flex;
        padding: 0;
      }

      .features-combined-item {
        flex: 1;
        padding: 28px;
      }

      .features-combined-item:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
      }

      .features-combined-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
      }

      .features-combined-item p {
        font-size: 16px;
        line-height: 1.6;
      }

      @media (max-width: 900px) {
        .features-combined {
          flex-direction: column;
        }
        .features-combined-item:not(:last-child) {
          border-right: none;
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
      }

      .feature-card h3 {
        font-size: 28px;
        margin-bottom: 12px;
      }

      .feature-card p {
        font-size: 20px;
        line-height: 1.6;
      }

      .feature-large {
        display: flex;
        gap: 40px;
        align-items: center;
        padding: 40px;
      }

      .feature-large-content {
        flex: 2;
      }

      .feature-large-image {
        flex: 3;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }

      .feature-large-image img {
        width: 100%;
        display: block;
      }

      @media (max-width: 900px) {
        .feature-large {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
        /* Use display: contents so children participate in parent flex */
        .feature-large-content {
          display: contents;
        }
        .feature-large-content h3 {
          order: 1;
        }
        .feature-large-content p {
          order: 2;
        }
        .feature-large-content ul {
          order: 3;
        }
        .feature-large-image,
        .whatsapp-image-container {
          order: 4;
        }
        .feature-large-content .btn {
          order: 5;
          width: 100%;
        }
        /* Ensure carousel images are visible on mobile */
        .views-carousel {
          width: 100%;
          min-height: 200px;
        }
        .carousel-slide {
          display: block !important;
        }
      }

      /* Feature large with image on left (text on right) */
      .feature-large.image-left {
        flex-direction: row-reverse;
      }

      @media (max-width: 900px) {
        .feature-large.image-left {
          flex-direction: column;
        }
        /* Same ordering applies to image-left variant */
      }

      /* Mobile: Remove card styling for feature-large cards */
      @media (max-width: 768px) {
        .card.feature-large {
          background: transparent;
          border: none;
          border-radius: 0;
          padding: 16px 12px;
          margin-bottom: 80px !important;
          box-shadow: none;
        }
        .card.feature-large:hover {
          transform: none;
          box-shadow: none;
        }
        .whatsapp-examples {
          display: none;
        }
        #features > .container > .section-header,
        .ai-section > .container > .section-header {
          margin-bottom: 48px;
          padding-bottom: 24px;
          border-bottom: 2px solid var(--mint);
        }
        .card.feature-large h3,
        .ai-section .card h3 {
          margin-bottom: 12px;
        }
        .card.feature-large p,
        .ai-section .card p {
          margin-top: 0 !important;
          margin-bottom: 12px !important;
        }
        /* AI section cards */
        .ai-section .card {
          background: transparent;
          border: none;
          border-radius: 0;
          padding: 16px 12px !important;
          margin-bottom: 80px !important;
          box-shadow: none;
        }
        .ai-section .card:hover {
          transform: none;
          box-shadow: none;
          background: transparent;
        }
        .whatsapp-image-container {
          max-width: 100% !important;
          width: 100% !important;
        }
        .whatsapp-image-container img {
          width: 100% !important;
          height: auto !important;
        }
        .feature-large-image,
        .views-carousel {
          width: 100% !important;
          max-width: 100% !important;
        }
        .views-carousel img,
        .feature-large-image img {
          width: 100% !important;
          height: auto !important;
        }
      }

      /* WhatsApp images */
      .whatsapp-images {
        display: flex;
        gap: 20px;
        flex: 3;
        align-items: center;
      }

      .whatsapp-image-container {
        flex: 1;
        max-width: 320px;
        border-radius: 12px;
        overflow: hidden;
      }

      .whatsapp-image-container img {
        width: 100%;
        display: block;
        border-radius: 12px;
      }

      @media (max-width: 900px) {
        .whatsapp-images {
          flex-direction: column;
          align-items: center;
          gap: 16px;
        }
        .whatsapp-image-container {
          max-width: 240px;
        }
      }

      /* Pricing */
      .pricing {
        background: var(--bg-card);
        border-top: 1px solid var(--border);
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 900px;
        margin: 0 auto;
      }

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

      .pricing-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px;
        position: relative;
      }

      .pricing-card.featured {
        background: var(--mint);
        border-color: var(--mint);
      }

      .pricing-card.featured * {
        color: var(--forest);
      }

      .pricing-card.featured .pricing-check {
        color: var(--forest);
      }

      .pricing-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--near-black);
        color: #ffffff !important;
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .pricing-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
      }

      .pricing-price {
        margin-bottom: 24px;
      }

      .pricing-price .amount {
        font-size: 48px;
        font-weight: 700;
        color: var(--text-primary);
      }

      .pricing-card.featured .pricing-price .amount {
        color: var(--forest);
      }

      .pricing-price .period {
        font-size: 14px;
        color: var(--text-muted);
      }

      .pricing-card.featured .pricing-price .period {
        color: var(--forest);
      }

      .pricing-features {
        list-style: none;
        margin: 24px 0;
      }

      .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        padding: 8px 0;
        color: var(--text-secondary);
      }

      .pricing-card.featured .pricing-features li {
        color: var(--forest);
      }

      .pricing-check {
        color: var(--mint);
        font-weight: 700;
        flex-shrink: 0;
      }

      .pricing-card .btn-primary {
        width: 100%;
      }

      .pricing-card.featured .btn-primary {
        background: var(--near-black);
        color: #ffffff;
      }

      .pricing-card.featured .btn-primary:hover {
        background: #27272a;
      }

      /* Downloads */
      .downloads {
        text-align: center;
      }

      .download-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 32px;
      }

      .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        border: 1px solid var(--border);
        color: var(--text-primary);
        padding: 14px 24px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s;
      }

      .download-btn:hover {
        border-color: var(--mint);
        background: var(--mint-dim);
        opacity: 1;
      }

      .download-btn svg {
        width: 20px;
        height: 20px;
      }

      /* Footer */
      footer {
        background: var(--bg-card);
        border-top: 1px solid var(--border);
        padding: 80px 0 40px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
      }

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

      .footer-brand p {
        margin-top: 16px;
        font-size: 14px;
        max-width: 300px;
      }

      .footer-brand .company-info {
        margin-top: 24px;
        font-size: 13px;
        color: var(--text-dim);
      }

      .footer-links h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-primary);
      }

      .footer-links ul {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: var(--text-muted);
        font-size: 14px;
        transition: color 0.2s;
      }

      .footer-links a:hover {
        color: var(--mint);
        opacity: 1;
      }

      /* CTA Section */
      .cta-section {
        text-align: center;
        background: #ffffff;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .cta-section h2 {
        margin-bottom: 16px;
      }

      .cta-section p {
        margin-bottom: 32px;
      }

      .cta-note {
        margin-top: 20px;
        font-size: 14px;
        color: var(--text-dim);
      }

      /* Image with caption */
      .feature-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
      }

      .feature-image img {
        width: 100%;
        display: block;
      }

      /* Mobile Menu */
      .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 24px;
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .mobile-menu-toggle {
          display: block;
        }

        nav {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: #ffffff;
          border-top: 1px solid var(--border);
          padding: 20px;
          flex-direction: column;
          gap: 20px;
        }

        nav.active {
          display: flex;
        }

        .header-cta {
          display: none;
        }
      }

      /* Divider */
      .divider {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--border) 20%,
          var(--border) 80%,
          transparent
        );
        margin: 0;
      }

      /* AI Section Special */
      .ai-section {
        background: linear-gradient(
          180deg,
          var(--bg-page) 0%,
          var(--bg-card) 100%
        );
      }

      .ai-section .section-header h2 em {
        color: var(--mint);
        font-style: normal;
      }

      /* Cards use white on light theme */
      .card {
        background: #ffffff;
      }

      .feature-card {
        background: #ffffff;
      }

      /* Carousel */
      .views-carousel {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        aspect-ratio: 16 / 10;
      }

      .carousel-track {
        position: absolute;
        inset: 0;
      }

      .carousel-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        opacity: 0;
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .carousel-slide.active {
        opacity: 1;
      }

      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
      }

      .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: all 0.2s;
      }

      .carousel-dots .dot.active {
        background: var(--mint);
      }

      .carousel-dots .dot:hover {
        background: var(--text-muted);
      }

      /* Sticky Mobile CTA Bar */
      .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--bg-page);
        padding: 12px 20px;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
        display: none;
        text-align: center;
      }

      .sticky-cta.visible {
        display: block;
      }

      .sticky-cta .btn {
        width: 100%;
        max-width: 400px;
        padding: 14px 28px;
        font-size: 16px;
      }

      @media (min-width: 769px) {
        .sticky-cta {
          padding: 8px 20px;
          background: rgba(250, 250, 250, 0.92);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          box-shadow: 0 -2px 16px rgba(0,0,0,0.10);
          border-top: 1px solid rgba(0,0,0,0.08);
        }
        .sticky-cta .btn {
          max-width: 400px;
          padding: 12px 28px;
          font-size: 16px;
        }
      }

      /* Comparison Table */
      .comparison-section {
        padding: 100px 0;
      }

      .comparison-table-wrapper {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 900px;
        margin: 0 auto;
      }

      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
      }

      .comparison-table thead th {
        padding: 20px 16px;
        font-weight: 700;
        font-size: 16px;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border);
        text-align: center;
      }

      .comparison-table thead th:first-child {
        text-align: left;
      }

      .comparison-table thead th.planko-col {
        background: var(--mint-dim);
        color: var(--forest);
        border-bottom-color: var(--mint);
      }

      .comparison-table tbody td {
        padding: 14px 16px;
        text-align: center;
        border-bottom: 1px solid var(--border);
        color: var(--text-secondary);
      }

      .comparison-table tbody td:first-child {
        text-align: left;
        font-weight: 500;
        color: var(--text-primary);
      }

      .comparison-table tbody td.planko-col {
        background: var(--mint-dim);
        font-weight: 600;
      }

      .comparison-table tbody tr:last-child td {
        border-bottom: none;
      }

      .comparison-table .check {
        color: var(--mint);
        font-size: 20px;
        font-weight: 700;
      }

      .comparison-table .dash {
        color: var(--text-dim);
        font-size: 20px;
      }

      .comparison-cta {
        text-align: center;
        margin-top: 40px;
      }

      @media (max-width: 600px) {
        .comparison-table {
          font-size: 13px;
        }
        .comparison-table thead th,
        .comparison-table tbody td {
          padding: 10px 8px;
        }
      }

      /* Mobile Nav CTA */
      .nav-cta-mobile {
        display: none;
      }

      @media (max-width: 768px) {
        .nav-cta-mobile {
          display: inline-flex;
          text-align: center;
          justify-content: center;
          margin-top: 8px;
        }
      }

      /* Carousel Controls */
      .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
      }

      .carousel-prev,
      .carousel-next {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
        color: var(--text-primary);
        transition: all 0.2s;
      }

      .carousel-prev:hover,
      .carousel-next:hover {
        border-color: var(--mint);
        background: var(--mint-dim);
      }

      .carousel-controls .carousel-dots {
        margin-top: 0;
      }

      .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--border);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.2s;
      }

      .carousel-dot.active {
        background: var(--mint);
      }

      .carousel-dot:hover {
        background: var(--text-muted);
      }