:root {
            --primary-teal: #086972;
            --dark-teal: #053b42;
            --header-teal: #0a5c64;
            --crystal-cyan: #00c6ff;
            --crystal-blue: #0072ff;
            --crystal-ice: #e0f7fa;
            --crystal-glow: rgba(0, 198, 255, 0.4);
            --accent-green: #059669;
            --accent-red: #e11d48;
            --bg-light: #f0f7f9;
            --text-dark: #162a2c;
            --text-muted: #4e6164;
            --card-shadow: 0 4px 16px rgba(8, 105, 114, 0.08);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Global Text Justification Everywhere Applicable */
        p, .feature-list li, .pros-cons-list li, .faq-answer, .table-review td:last-child {
            text-align: justify;
            text-justify: inter-word;
        }

        /* Responsive Crystal Header */
        .header-custom {
            background: linear-gradient(135deg, #052c30 0%, #08434a 100%);
            padding: 16px 24px;
            color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 198, 255, 0.25);
            box-shadow: 0 4px 20px rgba(5, 44, 48, 0.25);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-container .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.2px;
            text-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
        }

        /* Desktop Navigation Links */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .desktop-nav a {
            color: #e0f7fa;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }

        .desktop-nav a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
        }

        .btn-header-pill {
            display: inline-block;
            border: 1.5px solid rgba(0, 198, 255, 0.7);
            border-radius: 50px;
            padding: 8px 22px;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            background: rgba(0, 198, 255, 0.12);
            box-shadow: 0 0 12px rgba(0, 198, 255, 0.2);
            backdrop-filter: blur(6px);
            transition: all 0.25s ease;
        }

        .btn-header-pill:hover {
            background: rgba(0, 198, 255, 0.3);
            box-shadow: 0 0 18px rgba(0, 198, 255, 0.45);
            border-color: #ffffff;
            color: #ffffff;
        }

        /* Mobile Hamburger Icon */
        .hamburger-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffffff;
            line-height: 1;
            user-select: none;
        }

        /* Mobile Dropdown Menu */
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 12px;
            padding-top: 15px;
            margin-top: 12px;
            border-top: 1px solid rgba(0, 198, 255, 0.2);
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            color: #ffffff;
            font-size: 1rem;
            padding: 6px 0;
            font-weight: 500;
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 0 25px rgba(8, 105, 114, 0.08);
        }

        /* Crystal Section Banners */
        .section-header {
            background: linear-gradient(135deg, #063e44 0%, #0a5c64 50%, #0d7782 100%);
            color: #ffffff;
            text-align: center;
            padding: 15px;
            font-size: 1.45rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-top: 25px;
            border-top: 1px solid rgba(0, 198, 255, 0.3);
            border-bottom: 1px solid rgba(5, 44, 48, 0.4);
            box-shadow: 0 3px 12px rgba(8, 105, 114, 0.12);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* Crystal Call To Action Buttons */
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
            color: #ffffff;
            padding: 12px 34px;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-top: 15px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 5px 18px rgba(0, 114, 255, 0.38);
            letter-spacing: 0.4px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 7px 24px rgba(0, 198, 255, 0.55);
            color: #ffffff;
        }

        .btn-cta:active {
            transform: translateY(0) scale(1);
            box-shadow: 0 4px 14px rgba(0, 114, 255, 0.4);
        }

        .btn-cta-blue {
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
        }

        .btn-cta-blue:hover {
            background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(145deg, #053338 0%, #094e55 50%, #0d656f 100%);
            color: #ffffff;
            padding: 45px 5%;
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(0, 198, 255, 0.2);
        }

        .hero-img {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }

        .hero-img img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }

        .hero-content {
            flex: 1.2;
            min-width: 290px;
        }

        .hero-content h1 {
            font-size: 2.1rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        .hero-content p {
            font-size: 0.98rem;
            margin-bottom: 14px;
            color: #e0f7fa;
            text-align: justify;
            text-justify: inter-word;
            line-height: 1.68;
        }

        .hero-btn-container {
            text-align: center;
            margin-top: 25px;
        }

        .btn-gradient {
            display: inline-block;
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 700;
            padding: 15px 42px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 6px 22px rgba(0, 114, 255, 0.42), 0 2px 6px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
        }

        .btn-gradient:hover {
            background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 28px rgba(0, 198, 255, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }

        .btn-gradient:active {
            transform: translateY(0) scale(1);
            box-shadow: 0 4px 14px rgba(0, 114, 255, 0.4);
        }

        /* Full Width Review Summary Section */
        .review-summary-full {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #ccebf0;
            box-shadow: 0 4px 15px rgba(8, 105, 114, 0.05);
        }

        .review-summary-header {
            background: linear-gradient(135deg, #063e44 0%, #0a5c64 100%);
            color: white;
            padding: 13px 16px;
            font-weight: bold;
            font-size: 1.15rem;
            text-align: center;
            width: 100%;
            border-bottom: 1px solid rgba(0, 198, 255, 0.3);
        }

        .table-review {
            width: 100%;
            border-collapse: collapse;
        }

        .table-review th, .table-review td {
            padding: 13px 20px;
            text-align: left;
            border-bottom: 1px solid #e2f3f5;
            font-size: 0.95rem;
        }

        .table-review tr:nth-child(even) {
            background-color: #f4fbfb;
        }

        .table-review td:first-child {
            font-weight: 600;
            width: 30%;
            color: var(--dark-teal);
        }

        /* Testimonials */
        .testimonials {
            padding: 24px 5%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .testimonial-card {
            display: flex;
            gap: 20px;
            background: #ffffff;
            border: 1px solid #ccebf0;
            border-radius: 8px;
            padding: 20px;
            align-items: flex-start;
            box-shadow: 0 4px 15px rgba(8, 105, 114, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(8, 105, 114, 0.1);
            border-color: #7dd3fc;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            border: 2px solid #e0f7fa;
            flex-shrink: 0;
        }

        .testimonial-card .author {
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--dark-teal);
            margin-bottom: 6px;
        }

        .testimonial-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: justify;
            text-justify: inter-word;
            line-height: 1.65;
        }

        /* Split Content Section */
        .split-content {
            padding: 35px 5%;
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .split-content .col-left, .split-content .col-right {
            flex: 1;
            min-width: 280px;
        }

        .split-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(8, 105, 114, 0.08);
        }

        /* Author Section Integration */
        .author-section {
            padding: 35px 5% 0 5%;
            align-items: flex-end;
        }

        .split-content .author-col {
            flex: 1;
            min-width: 290px;
            max-width: 440px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            align-self: flex-end;
            margin-bottom: 0;
            line-height: 0;
        }

        .split-content img.author-img {
            width: 100%;
            max-width: 430px;
            height: auto;
            max-height: none;
            object-fit: contain;
            box-shadow: none !important;
            border-radius: 0;
            display: block;
            margin: 0 auto;
            margin-bottom: 0;
            vertical-align: bottom;
        }

        .author-text-col {
            flex: 1.15;
            min-width: 290px;
            align-self: center;
            padding-bottom: 30px;
        }

        .author-next-header {
            margin-top: 0;
        }

        /* Features & Workflow Diagram Image Layout */
        .features-split, .workflow-split {
            align-items: center;
            gap: 35px;
        }

        .col-features-text {
            flex: 1;
            min-width: 280px;
        }

        .col-features-media {
            flex: 1.25;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-diagram-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            border: 1px solid #ccebf0;
            box-shadow: 0 6px 20px rgba(0, 198, 255, 0.12), 0 2px 8px rgba(8, 105, 114, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-diagram-img:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 198, 255, 0.2);
        }

        .split-content p {
            font-size: 0.95rem;
            line-height: 1.68;
            color: var(--text-dark);
            text-align: justify;
            text-justify: inter-word;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            margin-bottom: 12px;
            font-size: 0.94rem;
            line-height: 1.58;
            text-align: justify;
            text-justify: inter-word;
        }

        .feature-list li strong {
            color: var(--dark-teal);
        }

        /* Benefits Grid */
        .benefits-grid {
            padding: 30px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .benefit-card {
            background: #f7fcfd;
            border: 1px solid #ccebf0;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 14px rgba(8, 105, 114, 0.04);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .benefit-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(8, 105, 114, 0.1);
            border-color: #7dd3fc;
        }

        .benefit-card h4 {
            font-size: 1.05rem;
            color: var(--dark-teal);
            margin-bottom: 8px;
        }

        .benefit-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            text-align: justify;
            text-justify: inter-word;
            line-height: 1.6;
        }

        /* Pros and Cons Split Header */
        .pros-cons-container {
            display: flex;
            flex-wrap: wrap;
            margin: 25px 0;
            gap: 20px;
            padding: 0 5%;
        }

        .pros-box, .cons-box {
            flex: 1;
            min-width: 300px;
            border: 1px solid #ccebf0;
            border-radius: 8px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 4px 14px rgba(8, 105, 114, 0.05);
        }

        .pros-header {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            color: white;
            text-align: center;
            padding: 12px;
            font-weight: bold;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        .cons-header {
            background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
            color: white;
            text-align: center;
            padding: 12px;
            font-weight: bold;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        .pros-cons-list {
            padding: 20px;
            list-style: none;
            font-size: 0.9rem;
        }

        .pros-cons-list li {
            margin-bottom: 10px;
            padding-left: 24px;
            position: relative;
            line-height: 1.6;
            text-align: justify;
            text-justify: inter-word;
        }

        .pros-list li::before {
            content: "\2713";
            color: #10b981;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 900;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .cons-list li::before {
            content: "\2717";
            color: #f43f5e;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 900;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        /* Interactive FAQ Accordion */
        .faq-container {
            padding: 30px 5%;
        }

        .faq-item {
            border: 1px solid #ccebf0;
            border-radius: 8px;
            margin-bottom: 12px;
            background: #ffffff;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(8, 105, 114, 0.04);
            transition: all 0.25s ease;
        }

        .faq-item.active {
            border-color: #38bdf8;
            box-shadow: 0 4px 18px rgba(0, 198, 255, 0.15);
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.96rem;
            color: var(--dark-teal);
            background-color: #ffffff;
            user-select: none;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .faq-question:hover {
            background-color: #f4fbfb;
        }

        .faq-item.active .faq-question {
            background-color: #ecfeff;
            color: #0369a1;
        }

        .faq-question::after {
            content: "\276F";
            font-size: 0.9rem;
            color: #0891b2;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            background-color: #f8fdfd;
            font-size: 0.92rem;
            color: #4e6164;
            border-top: 0px solid #eee;
            text-align: justify;
            text-justify: inter-word;
            line-height: 1.65;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 16px 20px;
            border-top: 1px solid #ccebf0;
        }

        /* Footer & Disclaimer */
        .footer {
            background-color: #ebf6f8;
            text-align: center;
            padding: 30px 5%;
            border-top: 1px solid #ccebf0;
            font-size: 0.82rem;
            color: #557277;
        }

        .footer-links {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #086972;
            margin: 0 8px;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #0072ff;
        }

        .footer p {
            text-align: justify;
            text-justify: inter-word;
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .text-center {
            text-align: center;
        }

        .price-tag {
            font-size: 1.55rem;
            color: #0891b2;
            font-weight: 800;
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }

            .hamburger-icon {
                display: block;
            }

            .hero, .split-content {
                flex-direction: column;
            }

            .author-section {
                padding-bottom: 25px !important;
                align-items: center;
            }

            .author-text-col {
                padding-bottom: 0;
            }

            .author-next-header {
                margin-top: 25px !important;
            }

            .btn-gradient {
                font-size: 1.15rem;
                padding: 14px 30px;
                max-width: 100%;
            }

            .testimonial-card {
                flex-direction: column;
            }

            .pros-cons-container {
                flex-direction: column;
            }
        }
