      /* === THEME COLORS === */
      :root {
        /* CURRENT THEME: Green & Blue */
        --primary-color: #2cb67d; /* Green - Main brand color */
        --secondary-color: #3b82f6; /* Blue - Secondary brand color */
        --primary-rgb: 44, 182, 125; /* Primary color RGB values for rgba() */
        --secondary-rgb: 59, 130, 246; /* Secondary color RGB values for rgba() */
        --primary-light: #34d399; /* Lighter shade of primary */
        --secondary-light: #60a5fa; /* Lighter shade of secondary */

        /* Gradient combinations */
        --gradient-primary: linear-gradient(
          90deg,
          var(--primary-color),
          var(--secondary-color)
        );
        --gradient-reverse: linear-gradient(
          90deg,
          var(--secondary-color),
          var(--primary-color)
        );

        /* Shadow colors */
        --shadow-primary: rgba(var(--primary-rgb), 0.5);
        --shadow-secondary: rgba(var(--secondary-rgb), 0.5);

        /* Background variations */
        --bg-primary-10: rgba(var(--primary-rgb), 0.1);
        --bg-secondary-10: rgba(var(--secondary-rgb), 0.1);
        --bg-primary-20: rgba(var(--primary-rgb), 0.2);
      }

      /* === ALTERNATIVE THEME OPTIONS === */
      /* To switch themes, uncomment one of the sections below and comment out the current theme above */

      /* PURPLE & PINK THEME (Original)
      :root {
        --primary-color: #8B5CF6;           
        --secondary-color: #EC4899;         
        --primary-rgb: 139, 92, 246;        
        --secondary-rgb: 236, 72, 153;      
        --primary-light: #A78BFA;           
        --secondary-light: #F472B6;         
        
        --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        --gradient-reverse: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        
        --shadow-primary: rgba(var(--primary-rgb), 0.5);
        --shadow-secondary: rgba(var(--secondary-rgb), 0.5);
        
        --bg-primary-10: rgba(var(--primary-rgb), 0.1);
        --bg-secondary-10: rgba(var(--secondary-rgb), 0.1);
        --bg-primary-20: rgba(var(--primary-rgb), 0.2);
      }
      */

      /* ORANGE & RED THEME
      :root {
        --primary-color: #F97316;           
        --secondary-color: #EF4444;         
        --primary-rgb: 249, 115, 22;        
        --secondary-rgb: 239, 68, 68;       
        --primary-light: #FB923C;           
        --secondary-light: #F87171;         
        
        --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        --gradient-reverse: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        
        --shadow-primary: rgba(var(--primary-rgb), 0.5);
        --shadow-secondary: rgba(var(--secondary-rgb), 0.5);
        
        --bg-primary-10: rgba(var(--primary-rgb), 0.1);
        --bg-secondary-10: rgba(var(--secondary-rgb), 0.1);
        --bg-primary-20: rgba(var(--primary-rgb), 0.2);
      }
      */

      /* TEAL & INDIGO THEME
      :root {
        --primary-color: #14B8A6;           
        --secondary-color: #6366F1;         
        --primary-rgb: 20, 184, 166;        
        --secondary-rgb: 99, 102, 241;      
        --primary-light: #2DD4BF;           
        --secondary-light: #818CF8;         
        
        --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        --gradient-reverse: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        
        --shadow-primary: rgba(var(--primary-rgb), 0.5);
        --shadow-secondary: rgba(var(--secondary-rgb), 0.5);
        
        --bg-primary-10: rgba(var(--primary-rgb), 0.1);
        --bg-secondary-10: rgba(var(--secondary-rgb), 0.1);
        --bg-primary-20: rgba(var(--primary-rgb), 0.2);
      }
      */

      /* EMERALD & CYAN THEME
      :root {
        --primary-color: #10B981;           
        --secondary-color: #06B6D4;         
        --primary-rgb: 16, 185, 129;        
        --secondary-rgb: 6, 182, 212;       
        --primary-light: #34D399;           
        --secondary-light: #22D3EE;         
        
        --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        --gradient-reverse: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        
        --shadow-primary: rgba(var(--primary-rgb), 0.5);
        --shadow-secondary: rgba(var(--secondary-rgb), 0.5);
        
        --bg-primary-10: rgba(var(--primary-rgb), 0.1);
        --bg-secondary-10: rgba(var(--secondary-rgb), 0.1);
        --bg-primary-20: rgba(var(--primary-rgb), 0.2);
      }
      */

      /* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      .page {
        scroll-behavior: smooth;
        font-family: "Inter", sans-serif;
        background-color: #0b0a0f;
        color: #e0e0e0;
        line-height: 1.6;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* Header Block */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: rgba(17, 16, 23, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
      }

      .header__logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
      }

      .header__logo-accent {
        color: var(--primary-color);
      }

      .header__nav {
        display: none;
        align-items: center;
        gap: 2rem;
      }

      .header__nav--visible {
        display: flex;
      }

      .header__nav-link {
        color: #e0e0e0;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .header__nav-link:hover {
        color: var(--primary-color);
      }

      .header__cta {
        background: var(--gradient-primary);
        color: white;
        font-weight: 600;
        padding: 0.5rem 1.5rem;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .header__cta:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--shadow-primary);
      } /* H
ero Block */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .hero__background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("https://placehold.co/1920x1080/0B0A0F/1F2937?text=");
        background-size: cover;
        background-position: center;
        filter: blur(20px) brightness(0.4);
        transform: scale(1.1);
        z-index: -1;
      }

      .hero__container {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
        padding-top: 5rem;
      }

      .hero__content {
        text-align: center;
      }

      .hero__badge {
        display: inline-block;
        background: rgba(55, 65, 81, 0.5);
        border: 1px solid #374151;
        border-radius: 9999px;
        padding: 0.25rem 1rem;
        margin-bottom: 1.5rem;
      }

      .hero__badge-icon {
        display: inline-block;
        height: 1rem;
        margin-right: 0.5rem;
        color: white;
        vertical-align: middle;
      }

      .hero__badge-text {
        font-weight: 600;
        background: var(--gradient-primary);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero__title {
        font-size: clamp(2rem, 5vw, 3.75rem);
        font-weight: 800;
        color: white;
        line-height: 1.1;
        margin-bottom: 1rem;
      }

      .hero__title-accent {
        background: var(--gradient-primary);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero__description {
        font-size: 1.125rem;
        color: #d1d5db;
        max-width: 36rem;
        margin: 0 auto 2rem;
      }

      .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1rem;
      }

      .hero__cta {
        background: var(--gradient-primary);
        color: white;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 1.125rem;
        transition: all 0.3s ease;
      }

      .hero__cta:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--shadow-primary);
      }

      .hero__secondary {
        background-color: transparent;
        border: 1px solid #4a5568;
        color: white;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 1.125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
      }

      .hero__secondary:hover {
        background-color: #2d3748;
        border-color: var(--primary-color);
      }

      .hero__note {
        color: #6b7280;
        font-size: 0.875rem;
      }

      .hero__visual {
        position: relative;
        height: 500px;
        display: none;
        align-items: center;
        justify-content: center;
        perspective: 1000px;
      }

      .hero__visual--visible {
        display: flex;
      }

      /* Image Rotator Component */
      .rotator {
        position: relative;
        width: 100%;
        height: 100%;
      }

      .rotator__image {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 90%;
        max-width: 500px;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: rotator-cycle 12s infinite
          cubic-bezier(0.45, 0.05, 0.55, 0.95);
      }

      .rotator__image:nth-child(1) {
        animation-delay: 0s;
      }
      .rotator__image:nth-child(2) {
        animation-delay: -9s;
      }
      .rotator__image:nth-child(3) {
        animation-delay: -6s;
      }
      .rotator__image:nth-child(4) {
        animation-delay: -3s;
      }

      @keyframes rotator-cycle {
        0%,
        100% {
          transform: translateY(0) scale(1) rotate(2deg);
          opacity: 1;
          z-index: 4;
        }
        25% {
          transform: translateY(-20px) scale(0.9) rotate(-2deg);
          opacity: 1;
          z-index: 3;
        }
        50% {
          transform: translateY(-40px) scale(0.8) rotate(2deg);
          opacity: 1;
          z-index: 2;
        }
        75% {
          transform: translateY(-60px) scale(0.7) rotate(-2deg);
          opacity: 0;
          z-index: 1;
        }
        95% {
          z-index: 1;
        }
      }

      /* Workflow Section */
      .workflow {
        padding: 5rem 0 8rem;
        background-color: #0b0a0f;
      }

      .workflow__header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .workflow__title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      .workflow__description {
        color: #9ca3af;
        max-width: 32rem;
        margin: 0 auto;
      }

      .workflow__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      /* Card Component */
      .card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 1rem;
        transition: all 0.3s ease;
      }

      .card:hover {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--shadow-primary);
        transform: translateY(-5px);
      }

      .card__icon {
        width: 4rem;
        height: 4rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
      }

      .card__icon--purple {
        background: var(--bg-primary-10);
        color: var(--primary-color);
      }

      .card__icon--pink {
        background: var(--bg-secondary-10);
        color: var(--secondary-color);
      }

      .card__icon--blue {
        background: var(--bg-secondary-10);
        color: var(--secondary-light);
      }

      .card__title {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        text-align: center;
      }

      .card__description {
        color: #9ca3af;
        text-align: center;
      }

      /* Features Section */
      .features {
        padding: 5rem 0 8rem;
      }

      .features__header {
        text-align: center;
        max-width: 48rem;
        margin: 0 auto 3rem;
      }

      .features__title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      .features__description {
        color: #9ca3af;
      }

      .features__showcase {
        background: rgba(17, 16, 23, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        padding: 1rem;
        box-shadow: 0 25px 50px -12px var(--bg-primary-20);
      }

      .features__image {
        border-radius: 0.5rem;
        width: 100%;
        height: auto;
      }

      /* Comparison Section */
      .comparison {
        padding: 5rem 0 8rem;
        background-color: #0b0a0f;
      }

      .comparison__header {
        text-align: center;
        max-width: 48rem;
        margin: 0 auto 3rem;
      }

      .comparison__title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      .comparison__description {
        color: #9ca3af;
      }

      .comparison__table {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        overflow: hidden;
        max-width: 800px;
        margin: 0 auto;
      }

      .comparison__row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .comparison__row:last-child {
        border-bottom: none;
      }

      .comparison__cell {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .comparison__cell:first-child {
        justify-content: flex-start;
        text-align: left;
      }

      .comparison__header-row {
        background: rgba(255, 255, 255, 0.1);
      }

      .comparison__header-cell {
        font-weight: 700;
        color: white;
      }

      .comparison__check {
        color: var(--primary-color);
        font-size: 1.5rem;
      }

      .comparison__cross {
        color: #ef4444;
        font-size: 1.5rem;
      }

      /* Pricing Section */
      .pricing {
        padding: 5rem 0 8rem;
      }

      .pricing__header {
        text-align: center;
        max-width: 48rem;
        margin: 0 auto 3rem;
      }

      .pricing__title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      .pricing__description {
        color: #9ca3af;
      }

      /* Iframe Pricing Styles */
      .pricing__iframe-container {
        position: relative;
        width: 100%;
        height: 800px;
        border-radius: 1rem;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px -12px var(--bg-primary-20);
      }

      .pricing__iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 1rem;
      }

      /* Loading state */
      .pricing__iframe-container::before {
        content: "Loading pricing plans...";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--primary-color);
        font-weight: 600;
        z-index: 1;
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s ease;
      }

      .pricing__iframe-container.loaded::before {
        opacity: 0;
      }

      .pricing__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 80rem;
        margin: 0 auto;
      }

      /* Plan Component */
      .plan {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        position: relative;
      }

      .plan--featured {
        border: 2px solid var(--primary-color);
      }

      .plan__badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--primary-color);
        color: white;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 0.25rem 1rem;
        border-radius: 9999px;
      }

      .plan__name {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
      }

      .plan__description {
        color: #9ca3af;
        margin-bottom: 1.5rem;
      }

      .plan__price {
        font-size: 2.25rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1.5rem;
      }

      .plan__price-period {
        font-size: 1.125rem;
        font-weight: 500;
        color: #9ca3af;
      }

      .plan__features {
        list-style: none;
        margin-bottom: 2rem;
        flex-grow: 1;
      }

      .plan__feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #d1d5db;
        margin-bottom: 1rem;
      }

      .plan__feature-icon {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--primary-color);
        flex-shrink: 0;
      }

      .plan__cta {
        width: 100%;
        text-align: center;
        font-weight: 600;
        padding: 0.75rem;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .plan__cta--primary {
        background: var(--gradient-primary);
        color: white;
      }

      .plan__cta--primary:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--shadow-primary);
      }

      .plan__cta--secondary {
        background-color: transparent;
        border: 1px solid #4a5568;
        color: white;
      }

      .plan__cta--secondary:hover {
        background-color: #2d3748;
        border-color: var(--primary-color);
      }

      /* CTA Section */
      .cta {
        padding: 5rem 0 8rem;
        text-align: center;
      }

      .cta__title {
        font-size: clamp(1.875rem, 5vw, 3rem);
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      .cta__description {
        font-size: 1.125rem;
        color: #9ca3af;
        margin-bottom: 2rem;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
      }

      .cta__button {
        background: var(--gradient-primary);
        color: white;
        font-weight: 700;
        padding: 1.25rem 2.5rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 1.25rem;
        transition: all 0.3s ease;
      }

      .cta__button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--shadow-primary);
      }

      /* Footer Block */
      .footer {
        background-color: #060508;
        border-top: 1px solid rgba(55, 65, 81, 0.5);
        color: #9ca3af;
      }

      .footer__container {
        padding: 4rem 1.5rem;
      }

      .footer__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .footer__column {
        /* Base column styles */
      }

      .footer__column-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: white;
        margin-bottom: 1rem;
      }

      .footer__list {
        list-style: none;
      }

      .footer__list-item {
        margin-bottom: 0.75rem;
      }

      .footer__link {
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer__link:hover {
        color: var(--primary-color);
      }

      .footer__bottom {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(55, 65, 81, 0.5);
        text-align: center;
        font-size: 0.875rem;
        color: #6b7280;
      }

      .footer__bottom-link {
        color: inherit;
        text-decoration: none;
      }

      .footer__bottom-link:hover {
        text-decoration: underline;
      }

      /* Responsive Design */
      @media (min-width: 640px) {
        .hero__actions {
          flex-direction: row;
        }

        .workflow__grid {
          grid-template-columns: repeat(3, 1fr);
        }

        .pricing__grid {
          grid-template-columns: repeat(3, 1fr);
        }

        .footer__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      @media (min-width: 768px) {
        .header__nav {
          display: flex;
        }

        .hero__container {
          grid-template-columns: 1fr 1fr;
          text-align: left;
        }

        .hero__content {
          text-align: left;
        }

        .hero__description {
          margin-left: 0;
          margin-right: 0;
        }

        .hero__actions {
          justify-content: flex-start;
        }

        .hero__visual {
          display: flex;
        }

        .footer__grid {
          grid-template-columns: repeat(5, 1fr);
        }
      }

      @media (min-width: 1024px) {
        .comparison__table {
          font-size: 1rem;
        }
      }

      /* Responsive iframe styles */
      @media (max-width: 768px) {
        .pricing__iframe-container {
          height: 600px;
        }
      }

      @media (max-width: 480px) {
        .pricing__iframe-container {
          height: 500px;
        }
      }