

:root {
    /* Colors for Oryxen AI */
    --color-primary: #f08821; /* Orange for key areas */
    --color-secondary: #1ba7a6; /* Teal blue */
    --color-accent: #1ba7a6; /* Teal blue for accents */
    --color-text-dark: #333333; /* Main text color */
    --color-text-light: #ffffff; /* Light text on dark backgrounds */
    --color-bg-light: #f8f9fa; /* Light background */
    --color-white: #ffffff; /* Pure white */
    --color-border: #dddddd; /* Border color */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: white;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* SVG Icon Styles */
.icon-search, .icon-angle-right, .icon-chevron, .icon-arrow, .icon-step, .icon-envelope {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
}

.icon-search {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-dark);
}

.icon-angle-right {
    margin-left: 0.3em;
}

.icon-chevron {
    transition: transform 0.3s ease;
}

.faq-item.active .icon-chevron {
    transform: rotate(180deg);
}

.icon-step {
    width: 24px;
    height: 24px;
}

.icon-envelope {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
}

.announcement-banner {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.coming-soon-text {
    color: var(--color-secondary);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 1000px;
}

.announcement-line {
    display: block;
}

.silent-steady-text {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.banner-orange {
    background-color: white;
    color: var(--color-text-dark);
    position: relative;
    padding: 4rem 0;
}

.banner-orange .content {
    color: var(--color-text-dark);
}

.banner-orange p {
    color: var(--color-text-dark);
}

.banner-orange .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
}

.banner-orange .btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.unlock-possibilities {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.imagine-text {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Closing paragraph bold */
[data-i18n="image-text-2"] {
    font-weight: 600;
}

.footer-teal {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 2rem 0;
    margin-top: auto;
}

body.contact-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.contact-page main {
    flex: 1 0 auto;
}

.footer-teal .copyright {
    color: var(--color-text-light);
    margin: 0;
}

.footer-teal .language-selector a,
.footer-teal .language-selector .lang-btn {
    color: var(--color-text-light);
}

.footer-teal .language-selector a:hover,
.footer-teal .language-selector .lang-btn:hover {
    text-decoration: underline;
}

.footer-teal .language-selector .separator {
    color: var(--color-text-light);
}

.footer-teal .language-selector .active {
    font-weight: 600;
}

/* Language Selector Button Styles */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    text-decoration: none;
}

.language-selector .lang-btn:hover {
    text-decoration: underline;
}

.language-selector .separator {
    margin: 0 4px;
}

/* Layout Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6, .col-lg-5 {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    
    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }
}

.align-items-center {
    align-items: center;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.85;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--color-secondary);
    background-color: rgba(27, 167, 166, 0.1);
}

.nav-links a.active-page {
    color: var(--color-text-light);
    background-color: var(--color-secondary);
    box-shadow: 0 2px 8px rgba(27, 167, 166, 0.4);
}

/* Pricing button with teal outline */
.nav-links a.pricing-btn {
    color: var(--color-secondary);
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    font-weight: 600;
}

.nav-links a.pricing-btn:hover,
.nav-links a.pricing-btn.active-page {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

/* CTA button in nav - solid orange */
.nav-links a.nav-cta {
    color: white;
    background-color: var(--color-primary);
    border: none;
    font-weight: 600;
    padding: 10px 22px;
    margin-left: 4px;
}

.nav-links a.nav-cta:hover {
    background-color: #d97a1e;
    color: white;
}

/* Active pricing button - solid teal when on pricing page */
.nav-links a.pricing-btn.active-page {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border-color: var(--color-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    margin-right: 20px;
}

.search-box input {
    padding: 8px 30px 8px 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    width: 150px;
}

/* Removed Font Awesome icon styles - using SVG now */

.sign-in-btn {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* Title Section */
.title-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.title-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    margin-bottom: 40px;
}

.text-line {
    display: block;
    margin: 10px 0;
}

/* Image Styles */
.image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Specific image size constraints */
.logo img {
    max-height: 35px;
    width: auto;
}

/* Benefits image */
.benefits-image img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Download page images */
.download-image img {
    max-height: 120px;
    width: auto;
}

/* Large logo */
.logo-large {
    max-height: 280px;
    width: auto;
    display: block;
    margin: 4rem auto;
}

/* Image container in sections */
.image-section .image-container img,
.image-container img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Extra padding for sections before footer */
.image-text-extra-padding {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

/* Lower product image in index page */
.product-image-lower {
    margin-top: 3rem;
}

/* Feature list for index page */
.feature-list-index {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem 0;
}

.feature-list-index li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list-index li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.feature-list-index li strong {
    color: var(--color-primary);
}

/* Index page paragraphs - larger text */
.col-lg-10.content > p {
    font-size: 1.15rem;
    line-height: 1.6;
}

.feature-list-index li {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* More space before Learn more button */
.col-lg-10.content .btn-primary {
    margin-top: 2.5rem;
}

/* Hero section paragraph */
.section .col-lg-5.content > p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* More space before button in index page */
.col-lg-5.content .btn-primary {
    margin-top: 2rem;
}

/* ============================================
   DOCS PAGE STYLES
   ============================================ */

/* Docs page layout with sidebar */
.docs-page {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sidebar navigation */
.docs-sidebar {
    width: 250px;
    flex-shrink: 0;
    padding: 2rem 1rem;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.docs-nav h3 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.docs-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav li {
    margin-bottom: 0.5rem;
}

.docs-nav a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.docs-nav a:hover {
    background-color: rgba(27, 167, 166, 0.1);
    color: var(--color-secondary);
}

/* Highlighted User Guide link in nav */
.nav-guide-item a {
    color: var(--color-primary);
}

.nav-guide-item a:hover {
    color: #d97a1e;
}

/* Docs accordion nav groups */
.nav-group {
    margin-bottom: 0.5rem;
}

.nav-group-toggle {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-align: left;
}

.nav-group-toggle:hover {
    background-color: rgba(27, 167, 166, 0.1);
    color: var(--color-secondary);
}

.nav-group-toggle .icon-chevron-nav {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.nav-group.open .icon-chevron-nav {
    transform: rotate(90deg);
}

.nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-group.open .nav-submenu {
    max-height: 600px;
}

.nav-submenu li {
    margin-bottom: 0;
}

.nav-submenu a {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.nav-submenu a:hover {
    color: var(--color-secondary);
}

/* Main content area */
.docs-main-content {
    flex: 1;
    padding: 2rem 0 2rem 2rem;
    min-width: 0;
}

/* Section intro paragraph */
.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* API intro paragraph */
.api-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(27, 167, 166, 0.1);
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 8px 8px 0;
}

.api-intro p {
    margin: 0;
    line-height: 1.7;
}

/* API section title */
.api-section-title {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin: 2rem 0 1rem;
}

/* Custom endpoint highlight */
.api-endpoint-custom {
    background-color: rgba(240, 136, 33, 0.1);
    border-left: 3px solid var(--color-primary);
}

/* Responsive sidebar */
@media (max-width: 992px) {
    .docs-page {
        flex-direction: column;
    }
    
    .docs-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .docs-main-content {
        padding-left: 0;
    }
    
    .docs-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .docs-nav li {
        margin-bottom: 0;
    }
}

/* Code tabs with more languages */
.code-tabs {
    display: flex;
    gap: 0.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.code-tab {
    padding: 0.5rem 1rem;
    background-color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.code-tab.active {
    background-color: #2d2d2d;
    color: white;
}

/* ============================================
   END DOCS PAGE STYLES
   ============================================ */

.docs-intro {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

/* Wrapper per centrare le card */
.docs-options-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.docs-description {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.docs-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.docs-option-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.docs-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.docs-option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--color-primary);
}

.docs-option-icon svg {
    width: 100%;
    height: 100%;
}

.docs-option-card h3 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.docs-option-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.docs-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.docs-link:hover {
    text-decoration: underline;
}

/* Docs Guide Section */
.docs-guide-section {
    background-color: var(--color-teal-light);
    padding: 4rem 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.docs-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.docs-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-secondary);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.docs-card h3 {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.docs-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.docs-card code {
    display: block;
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    overflow-x: auto;
}

/* API Reference Section */
.api-reference-section {
    background-color: white;
    padding: 4rem 0;
}

.api-endpoints {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.api-method {
    background-color: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.api-path {
    font-family: monospace;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.api-description {
    margin-left: auto;
    font-size: 0.95rem;
    color: #666;
}

.api-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(27, 167, 166, 0.1);
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 8px 8px 0;
}

.api-note p {
    margin-bottom: 0.5rem;
}

.api-note code {
    background-color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

/* Code Examples Section */
.docs-examples-section {
    background-color: var(--color-teal-light);
    padding: 4rem 0;
}

.code-tabs {
    display: flex;
    gap: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.code-tab {
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.code-tab.active {
    background-color: #2d2d2d;
    color: white;
}

.code-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2d2d2d;
    border-radius: 0 8px 8px 8px;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-content.hidden {
    display: none;
}

.code-content pre {
    margin: 0;
}

.code-content code {
    color: #f8f8f2;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .docs-options {
        grid-template-columns: 1fr;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .api-endpoint {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .api-description {
        margin-left: 0;
    }
}

/* ============================================
   UNIFORM TEXT SIZES ACROSS ALL PAGES
   ============================================ */

/* Base paragraph text - all pages */
p {
    font-size: 1rem;
    line-height: 1.6;
}

/* List items - all pages */
li {
    font-size: 1rem;
    line-height: 1.6;
}

/* Section subtitles - all pages */
.section-subtitle-orange {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Hero/landing text - all pages */
.silent-steady-text {
    font-size: 2.8rem;
}

/* Orange banner text */
.text-white-heading {
    font-size: 2.4rem;
    white-space: pre-line;
}

/* Index page specific - larger intro */
.imagine-text {
    font-size: 1.2rem;
}

/* Closing paragraph bold - index */
[data-i18n="image-text-2"] {
    font-size: 1rem;
}

/* Feature lists - all pages */
.privacy-list .privacy-item p,
.customization-options .customization-item p {
    font-size: 1rem;
}

/* Pricing page - plan descriptions */
.plan-description .description-line {
    font-size: 0.95rem;
}

/* Pricing page - feature items */
.feature-item {
    font-size: 0.95rem;
}

/* FAQ items - product page */
.faq-question {
    font-size: 1.1rem;
}

.faq-answer p {
    font-size: 1rem;
}

/* Download page - flow steps */
.flow-content p {
    font-size: 1rem;
}

/* Contact page - form labels */
.form-group label {
    font-size: 1rem;
}

/* Buttons - all pages */
.cta-button,
.btn-primary,
.submit-btn {
    font-size: 1rem;
}

/* Footer - all pages */
.copyright {
    font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .section-subtitle-orange {
        font-size: 1.6rem;
    }
    
    .silent-steady-text {
        font-size: 2rem;
    }
    
    .text-white-heading {
        font-size: 1.5rem;
    }
    
    .imagine-text {
        font-size: 1.1rem;
    }
}

/* Highlight text - bold emphasis */
.highlight-text {
    font-weight: 700;
    font-size: 1.1em;
}

/* Competitive Pricing subtitle */
.competitive-pricing {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-top: -2rem;
}

.pricing-description {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    margin-bottom: 5rem;
    text-align: left;
}

.pricing-plans {
    margin-bottom: -2rem;
}

/* Orange subtitle - same style across all pages */
.section-subtitle-orange {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-top: -2rem;
}

/* Benefits Section - Bold minimalist design without boxes */
.benefits-content {
    padding: 0.5rem 0 2rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--color-secondary);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
    min-height: 3.9em;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.benefit-content p:last-child {
    margin-bottom: 0;
}

.benefit-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.benefits-image {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0rem;
}

.benefits-image img {
    width: 1000px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Product Diagram (How It Works) */
.product-diagram-wrapper {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
}
.product-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Row */
.pd-row {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
}
.pd-row-provider {
    justify-content: flex-end;
    padding-right: 36px;
}

/* Client box (solid, site brand color) */
.pd-client {
    background-color: #f39c4a;
    color: #fff;
    border: 2px solid #f08821;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    min-width: 110px;
    box-shadow: none;
    letter-spacing: 0.5px;
}

/* Connector horizontal (TLS) */
.pd-conn {
    width: 80px;
    height: 2px;
    background: #1ba7a6;
    position: relative;
    margin-top: 0;
    align-self: center;
}
.pd-conn::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #1ba7a6;
    border-radius: 50%;
}
.pd-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: #1ba7a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(27,167,166,0.08);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ORYXEN AI TEE box (pastel + dashed border) */
.pd-tee {
    background-color: #e8f9f9;
    color: #0d7a7a;
    border: 2px dashed #1ba7a6;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    width: 280px;
    box-shadow: none;
    position: relative;
}
.pd-tee-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.3px;
}
.pd-tee-sub {
    font-size: 0.82rem;
    opacity: 0.9;
}

/* Secured Provider box (pastel + dashed border) */
.pd-provider {
    background-color: #f8f8f8;
    border: 2px dashed #bbb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    width: 280px;
    box-shadow: none;
}
.pd-provider-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #666;
    letter-spacing: 0.3px;
}

/* GPU badge */
.pd-gpu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(27,167,166,0.25);
}
.pd-provider .pd-gpu {
    border-top: 1px dashed rgba(153,153,153,0.3);
}
/* GPU connector line */
.pd-gpu-line {
    width: 20px;
    height: 2px;
    background: #1ba7a6;
    position: relative;
}
.pd-provider .pd-gpu-line {
    background: #999;
}
.pd-gpu-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: #1ba7a6;
    border-radius: 50%;
}
.pd-provider .pd-gpu-line::after {
    background: #999;
}
.pd-gpu-badge {
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(27,167,166,0.08);
    border: 1px dashed #1ba7a6;
    color: #1ba7a6;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.pd-gpu-partner {
    background: rgba(153,153,153,0.08);
    border: 1px dashed #bbb;
    color: #888;
}

/* Connector vertical down (TLS) */
.pd-conn-down {
    width: 2px;
    height: 40px;
    background: #1ba7a6;
    position: relative;
    margin-left: 160px;
    margin-top: 0;
}
.pd-conn-down::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #1ba7a6;
    border-radius: 50%;
}
.pd-label-down {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: #1ba7a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(27,167,166,0.08);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .pd-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .pd-row-provider {
        padding-right: 0;
    }
    .pd-conn {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    .pd-conn::after {
        right: auto;
        left: -3px;
        top: auto;
        bottom: -4px;
        width: 8px;
        height: 8px;
        background: #1ba7a6;
        border-radius: 50%;
        border: none;
    }
    .pd-label {
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
    }
    .pd-conn-down {
        margin-left: 0;
        height: 30px;
    }
    .pd-tee, .pd-provider {
        width: 260px;
        text-align: center;
    }
    .pd-gpu {
        justify-content: center;
    }
}

/* API Guide link below diagram */
.pd-api-link {
    text-align: center;
    margin-top: 3.5rem;
    font-size: 1rem;
    color: #555;
}
.pd-api-link a {
    color: #f08821;
    font-weight: 600;
    text-decoration: none;
}
.pd-api-link a:hover {
    text-decoration: underline;
}

/* Search dropdown */
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 320px;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}
.search-dropdown.active {
    display: block;
}
.search-dropdown-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.search-dropdown-item:last-child {
    border-bottom: none;
}
.search-dropdown-item a {
    color: #333;
    text-decoration: none;
    display: block;
}
.search-dropdown-item a:hover {
    color: #f08821;
}
.result-section {
    font-size: 0.75rem;
    color: #f08821;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-title {
    font-weight: 600;
    margin-top: 0.2rem;
}
.search-dropdown-empty {
    padding: 1rem;
    text-align: center;
    color: #888;
}
.search-dropdown-more {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #f0f0f0;
}

.legal-text a {
    color: #f08821;
    font-weight: 600;
    text-decoration: none;
}
.legal-text a:hover {
    text-decoration: underline;
}

.search-highlight {
    background-color: rgba(240, 136, 33, 0.2);
    color: #d4720f;
    font-weight: 600;
    border-radius: 2px;
    padding: 0 2px;
}

/* FAQ Section */
.faqs-content {
    padding: 2rem 0;
}

.faqs-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
}

.faqs-footer-text {
    text-align: left;
    font-size: 1.1rem;
    color: #555;
    margin-top: 2.5rem;
}

.faqs-footer-text a {
    color: #f08821;
    font-weight: 600;
    text-decoration: none;
}

.faqs-footer-text a:hover {
    text-decoration: underline;
}

.pricing-link {
    color: #f08821;
    font-weight: 600;
    text-decoration: none;
}

.pricing-link:hover {
    text-decoration: underline;
}

/* Download Page Styles */
.download-content {
    text-align: left;
}

.download-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    text-align: left;
}

.download-card-container {
    display: flex;
    justify-content: center;
    margin: 5rem 0 2rem 0;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--color-secondary);
}

.download-card .download-image {
    margin-bottom: 1.5rem;
}

.download-card .download-image img {
    width: auto;
    height: 120px;
    object-fit: contain;
}

.download-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.download-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn-large:hover {
    background-color: #d97a1e;
    transform: scale(1.05);
}

/* Installation Steps - Bold impactful design */
.installation-steps {
    margin-top: 4rem;
}

.installation-steps h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: left;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border-left: 5px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-prefix {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.download-section .container {
    text-align: left;
}

.step-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* User Flow Section - Clean Timeline Design */
.user-flow-section {
    padding: 2rem 0 4rem 0;
    background-color: white;
}

.docs-cta-intro {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
}

.user-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    padding-left: 30px;
    position: relative;
}

.user-flow-steps::before {
    content: '';
    position: absolute;
    left: 55px;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background-color: var(--color-secondary);
    opacity: 0.4;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.flow-step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(27, 167, 166, 0.3);
}

.flow-content {
    flex: 1;
    padding-top: 0.75rem;
}

.flow-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.flow-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.flow-image-placeholder {
    width: 200px;
    height: 130px;
    background-color: #f5f5f5;
    border: 2px dashed #bbb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.flow-image {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    margin-left: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.flow-image img:hover {
    transform: scale(1.05);
}

/* Docs Guide Sections - New content areas */
.docs-guide-section {
    padding: 2rem 0;
    background-color: white;
}

.docs-guide-section .docs-subsection {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.docs-guide-section .docs-subsection:first-of-type {
    border-top: none;
    padding-top: 0;
}

.docs-guide-section h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.docs-guide-section h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

/* Docs steps (numbered without circles) */
.docs-steps {
    margin: 1.5rem 0;
}

.docs-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.docs-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.docs-step .icon-inline-lock {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    vertical-align: middle;
    margin-left: 0.25rem;
}

.docs-step p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

/* Docs callout boxes */
.docs-callout {
    background-color: #f0f8f8;
    border-left: 4px solid var(--color-secondary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.docs-callout h4 {
    margin-top: 0;
    color: var(--color-secondary);
}

.docs-callout p:last-child,
.docs-callout ul:last-child {
    margin-bottom: 0;
}

.docs-callout-warning {
    background-color: #fff3e0;
    border-left-color: var(--color-primary);
}

.docs-callout-warning h4 {
    color: var(--color-primary);
}

.docs-callout-critical {
    background-color: #ffebee;
    border-left-color: #c62828;
}

.docs-callout-critical h4 {
    color: #c62828;
}

.docs-callout-privacy {
    background-color: #e8f5e9;
    border-left-color: #2e7d32;
}

.docs-callout-privacy h4 {
    color: #2e7d32;
}

/* Docs tables */
.docs-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.docs-table thead {
    background-color: var(--color-secondary);
    color: white;
}

.docs-table th,
.docs-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.docs-table th {
    font-weight: 600;
}

.docs-table tbody tr:hover {
    background-color: #f9f9f9;
}

.docs-table tbody tr:last-child td {
    border-bottom: none;
}

.docs-table td .icon-action {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 0.25rem;
    color: var(--color-primary);
}

/* Dos and Don'ts */
.docs-dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.docs-do,
.docs-dont {
    padding: 1.5rem;
    border-radius: 8px;
}

.docs-do {
    background-color: #e8f5e9;
    border-left: 4px solid #2e7d32;
}

.docs-do h4 {
    color: #2e7d32;
    margin-top: 0;
}

.docs-dont {
    background-color: #ffebee;
    border-left: 4px solid #c62828;
}

.docs-dont h4 {
    color: #c62828;
    margin-top: 0;
}

.docs-do ul,
.docs-dont ul {
    margin: 0;
    padding-left: 1.25rem;
}

.docs-do li,
.docs-dont li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Chat input box mockup */
.chat-input-box {
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #f9f9f9;
    max-width: 520px;
}

.chat-chips {
    margin-bottom: 0.5rem;
}

.chip {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.35rem;
}

.chip-note,
.thumb-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.chat-thumbnails {
    margin-bottom: 0.75rem;
}

.thumb {
    display: inline-block;
    background-color: #fff3e0;
    color: #e65100;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.chat-divider {
    border-top: 1px solid #ddd;
    margin: 0.75rem 0;
}

.chat-message-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.chat-placeholder {
    color: #999;
    font-style: italic;
}

.chat-send {
    background-color: var(--color-primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.chat-legend {
    display: flex;
    gap: 2rem;
    margin-top: 0.75rem;
    max-width: 520px;
}

.legend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legend-arrow {
    font-size: 1.2rem;
    color: #888;
    line-height: 1;
}

.legend-label {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive chat box */
@media (max-width: 768px) {
    .chat-legend {
        gap: 1rem;
    }
    .legend-label {
        font-size: 0.75rem;
    }
}

/* Chat button guide below the box */
.chat-button-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 520px;
}

.chat-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-btn-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.chat-btn-name {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.chat-btn-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .chat-button-guide {
        grid-template-columns: 1fr;
    }
}

/* Missing helper classes for docs content */
.docs-cards-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.docs-stat-card {
    background-color: #f9f9f9;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-secondary);
}

.docs-stat-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.docs-stat-card h4 .icon-stat {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.docs-stat-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.docs-input-area {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: monospace;
    font-size: 0.9rem;
}

.docs-input-area .input-row {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: white;
    border-radius: 4px;
}

.docs-input-area .input-box {
    border: 1px solid #ddd;
    color: #999;
    font-style: italic;
}

.docs-input-area .input-note {
    color: #888;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.docs-button-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.docs-button-guide .btn-guide-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.docs-button-guide .btn-label {
    font-weight: 600;
    color: var(--color-secondary);
}

.docs-sidebar-diagram {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 500px;
}

.docs-sidebar-diagram .sidebar-area {
    background-color: #f9f9f9;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.docs-sidebar-diagram .sidebar-label {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.docs-sidebar-diagram .sidebar-label .icon-sidebar {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.docs-sidebar-diagram .sidebar-area p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.docs-tip {
    background-color: #fff3e0;
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.docs-tip p {
    margin: 0;
}

.docs-note {
    font-style: italic;
    color: #666;
    margin: 1rem 0;
}

.docs-callout .docs-callout-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.75rem;
}

/* Responsive docs helpers */
@media (max-width: 768px) {
    .docs-cards-small,
    .docs-button-guide,
    .docs-sidebar-diagram {
        grid-template-columns: 1fr;
    }
}

/* PDF Download Section */
.pdf-download-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.pdf-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pdf-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.pdf-icon svg {
    width: 100%;
    height: 100%;
}

.pdf-card h2 {
    font-size: 1.6rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.pdf-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pdf-card .btn-primary {
    display: inline-block;
}

/* Responsive docs */
@media (max-width: 768px) {
    .docs-dos-donts {
        grid-template-columns: 1fr;
    }
    
    .docs-step {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .docs-table th,
    .docs-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Image Lightbox Styles */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .user-flow-steps {
        padding-left: 20px;
    }
    
    .user-flow-steps::before {
        left: 45px;
    }
    
    .flow-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .flow-step {
        gap: 1.5rem;
    }
    
    .flow-image-placeholder,
    .flow-image {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        height: auto;
    }
}

/* FAQ Items - Bold impactful design */
.faq-item {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    border-left: 5px solid var(--color-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-item.active {
    border-left-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-secondary);
    background-color: rgba(27, 167, 166, 0.05);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
    background-color: rgba(240, 136, 33, 0.05);
}

.faq-question .icon-chevron {
    width: 28px;
    height: 28px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .icon-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
}

/* Pricing Plans Container - Three boxes side by side */
.plans-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

/* Individual Plan Card */
.plan-card {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    flex: 1 1 0;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Recommended plan - highlighted */
.plan-card.recommended {
    border: 3px solid var(--color-primary);
    position: relative;
}

.plan-card.recommended:hover {
    transform: translateY(-5px);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.plan-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.description-line {
    margin-bottom: 0.25rem;
}

/* Recommended Badge */
.recommended-badge {
    background-color: var(--color-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Feature List */
.feature-list {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Plan Guarantee - below features, above button */
.plan-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 0.75rem 1rem;
    background-color: rgba(27, 167, 166, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-align: center;
}

.plan-guarantee .icon-shield {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Plan Footer / CTA Button */
.plan-footer {
    margin-top: 0;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: white;
}

.cta-button.primary {
    background-color: var(--color-primary);
    color: white;
}

.cta-button.primary:hover {
    background-color: #d97a1e;
    border-color: #d97a1e;
}

/* Pricing disclaimer banner */
.pricing-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff3e0;
    border-left: 4px solid var(--color-primary);
    color: #d97a1e;
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    margin: 1.5rem auto 0;
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-disclaimer .icon-lock {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.pricing-disclaimer strong {
    font-weight: 600;
}

/* Pricing footer section */
.pricing-footer {
    padding: 2rem 0 3rem 0;
    text-align: left;
}

.pricing-footer p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.pricing-footer-last {
    margin-bottom: 0 !important;
}

/* Pricing Login CTA */
.pricing-login-cta {
    text-align: center;
    padding: 2.5rem 0 5.5rem 0;
    background-color: var(--color-primary);
    color: white;
}

.pricing-login-cta h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.pricing-login-cta .btn-white {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-login-cta .btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Product CTA Section */
.product-cta-section {
    padding: 0.5rem 0 3rem 0;
    background-color: #f9f9f9;
    margin-top: -2rem;
}

.product-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.product-cta-content h2 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.product-cta-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Features Showcase Section */
.features-showcase-section {
    padding: 0 0 2rem 0;
    background-color: white;
    margin-top: 0;
}

.features-showcase-header {
    text-align: left;
    margin-bottom: 2rem;
}

.features-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.features-subtitle-inline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.features-title-main {
    color: var(--color-primary);
}

.features-title-divider {
    color: var(--color-secondary);
    font-weight: 300;
}

.features-title-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.features-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    max-width: 600px;
    margin-top: 0;
}

.features-showcase-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.features-list-vertical {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-vertical {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-number-colored {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    min-width: 60px;
}

.feature-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.features-image-right {
    flex: 0 0 550px;
}

.features-image-right {
    flex: 0 0 320px;
    margin-left: 6rem;
}

.features-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .features-showcase-content {
        flex-direction: column;
    }
    
    .features-list-vertical,
    .features-image-right {
        flex: 0 0 100%;
    }
    
    .plans-container {
        flex-wrap: wrap;
    }
    
    .plan-card {
        min-width: 280px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 0;
}

/* NEW Contact Page Design */
.contact-hero-section {
    padding: 2rem 0 4rem 0;
    background-color: white;
}

.contact-image-bottom {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.contact-image-bottom img {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.contact-hero-content {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.email-card,
.phone-card,
.docs-card,
.delta-chat-card {
    border-top: 5px solid var(--color-primary) !important;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-id {
    display: inline-block;
    color: var(--color-primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    margin: 0.5rem 0;
}

.contact-detail {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Footer Spacer - adds white space before footer */
.footer-spacer {
    height: 4rem;
    background-color: white;
}

.contact-two-columns {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
}

.contact-text-left {
    flex: 0 0 40%;
    color: white;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-email a {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s ease;
}

.contact-email a:hover {
    border-bottom-color: white;
}

.contact-image {
    margin-top: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
    text-align: center;
}

.contact-image img {
    max-width: 95%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
}

.icon-envelope-large,
.icon-phone-large,
.icon-signal-large {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-phone,
.contact-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-phone a,
.contact-signal a {
    color: white;
    text-decoration: none;
}

.contact-phone a:hover,
.contact-signal a:hover {
    text-decoration: underline;
}

.contact-form-right {
    flex: 0 0 55%;
}

.contact-form-large {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-form-large .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-large .form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-large .form-group input,
.contact-form-large .form-group textarea {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.contact-form-large .form-group input:focus,
.contact-form-large .form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.contact-form-large .form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.contact-form-large .submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 0;
}

/* Contact visual section with images */
.contact-visual-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.contact-visual-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-visual-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-visual-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Logo extra spacing */
.logo-extra-spacing {
    margin: 12rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive for contact page */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-two-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-text-left,
    .contact-form-right {
        flex: 0 0 100%;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-images-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-images-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Footer Spacer - adds white space before footer */
.footer-spacer {
    height: 4rem;
    background-color: white;
}

/* Footer Styles */
footer {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 2rem 0;
}

/* ==================== UPDATES PAGE ==================== */

.updates-section {
    padding: 3rem 0;
}

.updates-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.7;
}

/* Timeline layout */
.updates-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.update-entry {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.update-entry::before {
    content: '';
    position: absolute;
    left: calc(-2rem - 5px);
    top: 0.5rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--color-primary);
}

.update-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.update-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.update-badge.feature {
    background-color: rgba(240, 136, 33, 0.12);
    color: var(--color-primary);
}

.update-badge.fix {
    background-color: rgba(100, 116, 139, 0.12);
    color: #475569;
}

.update-badge.security {
    background-color: rgba(220, 38, 38, 0.10);
    color: #b91c1c;
}

.update-badge.model {
    background-color: rgba(27, 167, 166, 0.12);
    color: var(--color-secondary);
}

.update-badge.docs {
    background-color: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.update-badge.pricing {
    background-color: rgba(168, 85, 247, 0.12);
    color: #9333ea;
}

.update-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.update-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.35rem;
}

.update-description {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Empty state */
.updates-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}

.updates-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #ccc;
}

.updates-empty h3 {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.updates-empty p {
    margin: 0;
    font-size: 0.95rem;
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */
/* These only apply to screens smaller than 768px (phones and small tablets) */

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    /* Mobile Navigation - Hamburger Menu */
    header .container {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }
    
    .nav-links a:hover {
        background-color: var(--color-teal-light);
    }
    
    /* Hamburger Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
    }
    
    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background-color: var(--color-secondary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hide search box on mobile, show in menu */
    .header-actions .search-box {
        display: none;
    }
    
    /* Mobile Hero Section - Stack vertically */
    .section .row.align-items-center,
    .image-text .row.align-items-center,
    .text-image .row {
        flex-direction: column;
    }
    
    .section .col-lg-5,
    .section .col-lg-6,
    .image-text .col-lg-5,
    .image-text .col-lg-6,
    .text-image .col-lg-6,
    .text-image .col-lg-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section .offset-lg-1,
    .image-text .offset-lg-1 {
        margin-left: 0;
    }
    
    /* Mobile Images */
    .image img,
    .benefits-image img {
        max-height: 250px;
        margin: 1.5rem auto;
        display: block;
    }
    
    /* Mobile Orange Banner */
    .orange-section-full .text-white-heading {
        font-size: 1.5rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    /* Mobile Pricing Cards - Stack vertically */
    .plans-container {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    .plan-card.recommended {
        transform: none;
        order: -1;
    }
    
    /* Mobile Contact Page */
    .contact-two-columns {
        flex-direction: column;
    }
    
    .contact-orange-bg,
    .contact-form-container {
        width: 100%;
    }
    
    .contact-orange-bg {
        padding: 2rem 1rem;
    }
    
    /* Mobile Download Page */
    .installation-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flow-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile Forms */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile Buttons */
    .cta-button,
    .btn-primary,
    .submit-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .silent-steady-text {
        font-size: 1.8rem;
    }
    
    .unlock-possibilities {
        font-size: 1.6rem;
    }
    
    /* Mobile Padding Adjustments */
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .copyright {
    margin: 0;
}

footer .footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

footer .footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-separator {
    color: var(--color-text-light);
    opacity: 0.7;
    margin: 0 0.4rem;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97a1e;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

/* Full Width Orange Section */
.orange-section-full {
    background-color: var(--color-primary);
    padding: 5rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.orange-section-full .text-white-heading {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    white-space: pre-line;
    text-align: center;
    margin: 0 auto;
}

.orange-section-full .image img {
    border-radius: 8px;
}

/* Content and Image alignment */
.content {
    padding: 1rem 0;
}

/* Page Title */
.page-title {
    color: var(--color-text-light);
    font-size: 3rem;
    margin: 0;
}

/* Page Header Box - Light orange background with dark orange text */
.page-header-box {
    background-color: #fde8d0;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.page-header-box .container {
    display: flex;
    align-items: center;
}

.page-title-colored {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Page Header Box - Teal version (for testing) */
.page-header-box-teal {
    background-color: #d0f0ef;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

.page-header-box-teal .container {
    display: flex;
    align-items: center;
}

.page-title-teal {
    color: var(--color-secondary);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #d97a1e;
}

/* Home diagram wrapper - architectural diagram moved from product */
.home-diagram-wrapper {
    margin: 5rem 0;
}
.home-diagram-wrapper .product-diagram {
    margin: 0 auto;
}

/* Workflow placeholder - ready for new design */
.workflow-wrapper {
    max-width: 100%;
    margin: 2.5rem auto;
    padding-bottom: 1rem;
}

/* ============================================
   WORKFLOW DIAGRAM — Simple 4×4×3 Grid
   ============================================ */

.snake-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 5rem auto 2.5rem auto;
}

.snake-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.snake-box {
    width: 230px;
    height: 180px;
    background-color: #ffffff;
    border: 2px solid #f08821;
    border-radius: 10px;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.snake-box.last {
    background-color: #f08821;
    border-color: #f08821;
    color: #ffffff;
}

.snake-box.last .snake-num,
.snake-box.last .snake-title,
.snake-box.last .snake-desc {
    color: #ffffff;
}

.snake-num {
    font-size: 16px;
    font-weight: 700;
    color: #f08821;
    line-height: 1;
    margin-bottom: 6px;
}

.snake-title {
    font-size: 15px;
    font-weight: 700;
    color: #f08821;
    line-height: 1.25;
    margin-bottom: 6px;
}

.snake-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.35;
    margin: 0;
}

.level-section {
    margin: 4rem 0;
}

.level-section > .container > h2 {
    margin-bottom: 0.5rem;
}

.level-subtitle {
    color: var(--color-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.level-panel {
    border-left: 5px solid var(--color-primary);
    background: #f9f9f9;
    border-radius: 0 16px 16px 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    box-sizing: border-box;
}

.level-panel:last-child {
    margin-bottom: 0;
}

.level-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    background: #fff;
}

.level-title {
    color: var(--color-primary) !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.level-panel h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.level-panel p {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.level-panel strong {
    color: var(--color-primary);
    font-weight: 700;
}

.level-panel pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

.level-divider {
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary) 0,
        var(--color-primary) 8px,
        transparent 8px,
        transparent 14px
    );
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .level-panel {
        padding: 1.5rem;
    }
    
    .level-title {
        font-size: 1.3rem;
    }
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .snake-grid {
        gap: 0;
    }

    .snake-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .snake-box {
        margin: 4px 0;
    }
}

