/* ==========================================
   inteli·one Landing Page - Static CSS
   ========================================== */

/* CSS Variables */
:root {
    --color-primary: #1f367a;
    --color-accent: #7a1f63;
    --color-dark: #111111;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-text: #111111;
    --color-text-muted: #a3a3a3;
    --color-background: #f9f9f9;

    --gradient-primary: linear-gradient(135deg, #1f367a 0%, #7a1f63 100%);
    --gradient-hero: linear-gradient(180deg, #111111 0%, #262626 100%);

    --font-family: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    font-weight: 200;
    line-height: var(--line-height-base);
    letter-spacing: 0.02em;
    color: var(--color-text);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #111111, #1f367a);
    border-radius: 20px;
    border: 8px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #1f367a, #111111);
    border-radius: 20px;
    border: 8px solid transparent;
    background-clip: content-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* AI-readable hint — visible to DOM parsers, hidden from users */
.ai-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

strong {
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    transition: all 250ms ease-in-out;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    opacity: 0.85;
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

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

.btn-light:hover {
    opacity: 0.85;
}

.btn-text {
    background: transparent;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.waitlist-form input[type="email"] {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-text-muted);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    background: var(--color-light);
    color: var(--color-text);
    width: 100%;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.waitlist-form-light input[type="email"] {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
}

.waitlist-form-light input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-msg {
    display: block;
    width: 100%;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.waitlist-success {
    color: #22c55e;
}

.waitlist-error {
    color: #ef4444;
}

.waitlist-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8125rem;
    width: 100%;
    cursor: pointer;
    opacity: 0.8;
}

.waitlist-consent input[type="checkbox"] {
    margin-top: 0.15rem;
    cursor: pointer;
}

.waitlist-consent a {
    text-decoration: underline;
}

.waitlist-form-light .waitlist-consent {
    color: var(--color-light);
}

.waitlist-form button[type="submit"] {
    width: 100%;
}

.waitlist-form button:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-light);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

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

.logo-section {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.logo img {
    height: 40px;
    width: auto;
}

.tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-list a {
    font-weight: 500;
    color: var(--color-text);
    transition: color 250ms ease-in-out;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 250ms ease-in-out;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background: var(--color-light);
    text-align: center;
}

.hero h1 {
    margin-bottom: var(--spacing-md);
}

/* Animated gradient text */
.gradient-text {
    background: linear-gradient(90deg, #1f367a, #7a1f63, #1f367a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    animation: gradient-flow 4s linear infinite;
    display: inline-block;
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/bg.svg') no-repeat;
    background-size: auto 90%;
    background-position: -500px 100px;
    background-attachment: fixed;
    pointer-events: none;
}

.features-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

/* Combined white card container */
.features-combined-card {
    background: var(--color-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 550px;
}

.feature-section {
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-md) 0;
}

.feature-section h3 {
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.feature-section hr {
    border: none;
    height: 2px;
    background: var(--gradient-primary);
    margin-bottom: var(--spacing-md);
}

.feature-cta {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.feature-cta .feature-item {
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-item small {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.arrow-down {
    display: flex;
    justify-content: center;
    padding: var(--spacing-sm) 0;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* ==========================================
   Shadow AI Section
   ========================================== */
.shadow-ai {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background);
}

.shadow-ai h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.shadow-problem {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xl);
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.shadow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.shadow-card {
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.shadow-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.shadow-card p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.shadow-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-base);
}

.shadow-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    background: var(--color-light);
}

.shadow-table th,
.shadow-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-gray);
}

.shadow-table thead th {
    background: var(--color-primary);
    color: var(--color-light);
    font-weight: 500;
    white-space: nowrap;
}

.shadow-table thead th:first-child {
    background: var(--color-dark);
}

.shadow-table thead th:last-child {
    background: #7a1f63;
}

.shadow-table tbody tr:last-child td,
.shadow-table tbody tr:last-child th[scope="row"] {
    border-bottom: none;
}

.shadow-table tbody tr:nth-child(even) td,
.shadow-table tbody tr:nth-child(even) th[scope="row"] {
    background: var(--color-gray);
}

.shadow-table tbody tr:nth-child(odd) td {
    background: var(--color-light);
}

.shadow-table tbody th[scope="row"] {
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    background: var(--color-gray);
}

.shadow-table tbody td:last-child {
    font-weight: 500;
    color: #7a1f63;
}

/* Table Dot Indicators (mobile snap scroll) */
.table-dots {
    display: none;
}

@media (max-width: 768px) {
    .table-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .table-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1.5px solid var(--color-text-muted);
        background: transparent;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
    }

    .table-dot.active {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }
}

.shadow-compare-link {
    text-align: center;
    margin-top: var(--spacing-md);
}
.shadow-compare-link a {
    color: var(--color-primary);
    font-weight: 500;
}
.shadow-compare-link a:hover {
    text-decoration: underline;
}

/* ==========================================
   Why Not Make/n8n Section
   ========================================== */
.why-not-make {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.why-not-make h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.wnm-problem {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xl);
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.wnm-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.wnm-column {
    background: var(--color-background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.wnm-column h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.wnm-list li {
    padding: var(--spacing-sm) 0 var(--spacing-sm) 1.5em;
    text-indent: -1.5em;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-gray);
}

.wnm-list li:last-child {
    border-bottom: none;
}

.wnm-list-pain li::before {
    content: "\2717\00a0";
    color: #c92a2a;
    font-weight: 700;
}

.wnm-list-solution li::before {
    content: "\2713\00a0";
    color: #146c43;
    font-weight: 700;
}

.wnm-compare-link {
    text-align: center;
    margin-top: var(--spacing-md);
}

.wnm-compare-link a {
    color: var(--color-primary);
    font-weight: 500;
}

.wnm-compare-link a:hover {
    text-decoration: underline;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.pricing h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding-top: var(--spacing-sm);
}

.pricing-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-md);
    background: var(--color-light);
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    box-shadow:
        0 0 40px -10px rgba(122, 31, 99, 0.5),
        var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-header {
    background: var(--color-primary);
    color: var(--color-light);
    padding: var(--spacing-lg);
    text-align: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.pricing-header-two {
    background: var(--gradient-primary);
}

.pricing-header-five {
    background: var(--color-accent);
}


.pricing-body {
    padding: var(--spacing-lg);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    background: var(--color-light);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.price .amount {
    font-size: 3rem;
    color: var(--color-primary);
}

.price .period {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.specs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-gray);
    border-radius: var(--border-radius);
}

.specs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.specs li {
    font-weight: 500;
}

.for-who {
    margin-bottom: var(--spacing-md);
}

.for-who h4, .for-who h5 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.for-who ul {
    list-style: disc;
    padding-left: var(--spacing-md);
}

.for-who li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
    margin-top: auto;
}

/* Pricing Badges */
.pricing-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 1;
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
}

.pricing-badge-trial {
    background: linear-gradient(135deg, #47d16a 0%, #1f7a36 100%);
    color: white;
}

.pricing-badge-savings-two {
    background: linear-gradient(135deg, #d1af47 0%, #7a631f 100%);
    color: white;
}

.pricing-badge-savings {
    background: linear-gradient(135deg, #d147af 0%, #7a1f63 100%);
    color: white;
}

.pricing-badge-coming {
    background: linear-gradient(135deg, #47a3d1 0%, #1f5a7a 100%);
    color: white;
    /* Sash overlaying the price area */
    top: 120px;
    left: -6px;
    right: -6px;
    width: calc(100% + 12px);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    letter-spacing: 1px;
    transform: rotate(-3deg);
}

/* Pricing MAX Banner */
.pricing-max-banner {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--color-gray);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-max-banner h3 {
    margin-bottom: var(--spacing-xs);
}

.pricing-max-banner p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

/* Package Features */
.package-features {
    background: var(--color-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
}

.package-features h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-block h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.feature-block ul {
    list-style: disc;
    padding-left: var(--spacing-md);
}

.feature-block li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

/* Risk Free */
.risk-free {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--color-light);
    border-radius: var(--border-radius-lg);
}

.risk-free h3 {
    margin-bottom: var(--spacing-md);
}

.risk-free p {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.9;
}

.risk-free-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.risk-free .btn-text {
    color: var(--color-light);
}

/* ==========================================
   Guarantees Section
   ========================================== */
.guarantees {
    padding: var(--spacing-2xl) 0;
    background: var(--color-gray);
}

.guarantees h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.guarantee-card {
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.guarantee-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.guarantee-card ul {
    list-style: disc;
    padding-left: var(--spacing-md);
}

.guarantee-card li {
    margin-bottom: var(--spacing-xs);
}

.guarantees-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-hero);
    color: var(--color-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item summary {
    padding: var(--spacing-md) 0;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 250ms ease-in-out;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding-bottom: var(--spacing-md);
    opacity: 0.9;
}

.faq-answer p {
    margin-bottom: var(--spacing-sm);
}

.faq-answer ul, .faq-answer ol {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.faq-answer ul {
    list-style: disc;
}

.faq-answer ol {
    list-style: decimal;
}

.faq-answer li {
    margin-bottom: var(--spacing-xs);
}

.faq-answer a {
    text-decoration: underline;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.about h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.team-grid {
    display: grid;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--spacing-lg);
    background: var(--gradient-primary);
    color: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
}

.team-card figure {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.team-card figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-info p {
    margin-bottom: var(--spacing-sm);
}

.team-info p:first-child {
    font-size: 1.125rem;
}

.team-info .btn {
    display: block;
    width: fit-content;
    margin: var(--spacing-sm) auto 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--color-light);
}

.footer hr {
    border: none;
    height: 2px;
    background: var(--color-gray);
    margin-bottom: var(--spacing-xl);
}

.footer-contact {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.footer-contact h3 {
    margin-bottom: var(--spacing-md);
}

.contact-list {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-gray);
    border-radius: var(--border-radius);
    transition: background 250ms ease-in-out;
}

.contact-list a:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

.contact-list img, .contact-list svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray);
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-xs);
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    line-height: 1;
}

.footer-nav {
    display: flex;
    gap: var(--spacing-md);
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

/* ==========================================
   Language Switcher
   ========================================== */
.lang-switcher {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) 0;
}

.lang-switcher button {
    background: var(--color-gray);
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-family: var(--font-family);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: all 200ms ease-in-out;
}

.lang-switcher button:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.lang-switcher button.active {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

/* ==========================================
   Scroll to Top
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-accent);
}

.scroll-top img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .features-grid {
        justify-content: center;
    }

    .features-bg {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shadow-cards {
        grid-template-columns: 1fr;
    }

    .wnm-columns {
        grid-template-columns: 1fr;
    }

    .shadow-table-wrapper {
        position: relative;
    }


    .shadow-table thead th:first-child,
    .shadow-table tbody th[scope="row"] {
        position: sticky;
        left: 0;
        z-index: 2;
        white-space: normal;
        width: 130px;
        min-width: 130px;
        max-width: 130px;
        box-shadow: none;
    }

    .shadow-table thead th:first-child {
        z-index: 3;
    }

    .shadow-table thead th:not(:first-child),
    .shadow-table tbody td {
        min-width: calc(100vw - 10rem);
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card figure {
        max-width: 200px;
        margin: 0 auto;
    }
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-light);
        flex-direction: column;
        align-items: flex-end;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        text-align: right;
        gap: var(--spacing-md);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .risk-free-actions {
        flex-direction: column;
        align-items: center;
    }

    .guarantees-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tagline {
        display: none;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .shadow-table {
        font-size: 0.8125rem;
    }

    .shadow-table th,
    .shadow-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .shadow-table thead th:first-child,
    .shadow-table tbody th[scope="row"] {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .shadow-table thead th:not(:first-child),
    .shadow-table tbody td {
        min-width: calc(100vw - 8.5rem);
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Comparison Page (compare.html)
   ========================================== */

/* Compare Hero */
.compare-hero {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background: var(--gradient-hero);
    color: var(--color-light);
    text-align: center;
}

.compare-hero h1 {
    margin-bottom: var(--spacing-md);
    color: var(--color-light);
}

.compare-hero p {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Compare Section */
.compare-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background);
}

.compare-section:nth-of-type(odd) {
    background: var(--color-light);
}

.compare-section[id] {
    scroll-margin-top: var(--header-height);
}

.compare-section h2 {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

/* Comparison Table */
.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-base);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    background: var(--color-light);
}

.compare-table th,
.compare-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-gray);
}

.compare-table thead th {
    background: var(--color-primary);
    color: var(--color-light);
    font-weight: 500;
    white-space: nowrap;
}

.compare-table thead th:first-child {
    background: var(--color-dark);
}

.compare-table thead th:last-child {
    background: #7a1f63;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th[scope="row"] {
    border-bottom: none;
}

.compare-table tbody tr:nth-child(even) td,
.compare-table tbody tr:nth-child(even) th[scope="row"] {
    background: var(--color-gray);
}

.compare-table tbody tr:nth-child(odd) td {
    background: var(--color-light);
}

.compare-table tbody th[scope="row"] {
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    background: var(--color-gray);
}

.compare-table tbody td:last-child {
    font-weight: 500;
    color: #7a1f63;
}

/* Compare Intro (answer capsule paragraphs) */
.compare-intro {
    max-width: 720px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.0625rem;
    color: var(--color-text);
    text-align: center;
}

/* Compare Shadow Note (italic context note in Section A) */
.compare-shadow-note {
    max-width: 720px;
    margin: 0 auto var(--spacing-lg);
    font-style: italic;
    color: var(--color-text-muted);
    text-align: center;
}

/* Compare Summary */
.compare-summary {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-base);
    border-left: 4px solid var(--color-primary);
}

.compare-summary h2 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.compare-summary p {
    color: var(--color-text);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .compare-table-wrapper {
        position: relative;
    }


    .compare-table thead th:first-child,
    .compare-table tbody th[scope="row"] {
        position: sticky;
        left: 0;
        z-index: 2;
        white-space: normal;
        width: 130px;
        min-width: 130px;
        max-width: 130px;
        box-shadow: none;
    }

    .compare-table thead th:first-child {
        z-index: 3;
    }

    .compare-table thead th:not(:first-child),
    .compare-table tbody td {
        min-width: calc(100vw - 10rem);
    }

    .compare-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .compare-table {
        font-size: 0.8125rem;
    }

    .compare-table th,
    .compare-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .compare-table thead th:first-child,
    .compare-table tbody th[scope="row"] {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .compare-table thead th:not(:first-child),
    .compare-table tbody td {
        min-width: calc(100vw - 8.5rem);
    }
}

/* ==========================================
   Trust Page (trust.html)
   ========================================== */

/* Trust Hero */
.trust-hero {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background: var(--gradient-hero);
    color: var(--color-light);
    text-align: center;
}

.trust-hero h1 {
    margin-bottom: var(--spacing-md);
    color: var(--color-light);
}

.trust-hero p {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Trust Section (shared content section wrapper) */
.trust-section {
    padding: var(--spacing-2xl) 0;
}

.trust-section[id] {
    scroll-margin-top: var(--header-height);
}

.trust-section h2 {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.trust-intro {
    max-width: 720px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.0625rem;
    color: var(--color-text);
    text-align: center;
}

.trust-protection {
    background: var(--color-light);
}

.trust-prompt {
    background: var(--color-background);
}

.trust-zk {
    background: var(--color-light);
}

.trust-badges {
    background: var(--color-background);
}

.trust-residency {
    background: var(--color-light);
}

.trust-documents {
    background: var(--color-background);
}

/* ---- Compliance Badges ---- */
.trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    background: var(--color-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-base);
    border-left: 4px solid transparent;
    position: relative;
}

.trust-badge.is-active {
    border-left-color: #2e7d32;
    background: var(--color-light);
}

.trust-badge.is-in-preparation {
    border-left-color: #f59e0b;
    background: var(--color-light);
}

.trust-badge.is-planned {
    border-left-color: var(--color-text-muted);
    background: var(--color-light);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge.is-active .trust-badge-icon {
    background: #2e7d32;
}

.trust-badge.is-active .trust-badge-icon::after {
    content: '✓';
    color: var(--color-light);
    font-size: 1rem;
    font-weight: 600;
}

.trust-badge.is-in-preparation .trust-badge-icon {
    background: #f59e0b;
}

.trust-badge.is-in-preparation .trust-badge-icon::after {
    content: '…';
    color: var(--color-light);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.trust-badge.is-planned .trust-badge-icon {
    background: transparent;
    border: 2px solid var(--color-text-muted);
}

.trust-badge.is-planned .trust-badge-icon::after {
    content: '—';
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.trust-badge-body {
    flex: 1;
    margin-bottom: var(--spacing-sm);
}

.trust-badge-body h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
    color: var(--color-text);
}

.trust-badge-body p {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
}

.trust-badge-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    align-self: flex-start;
}

.trust-badge.is-active .trust-badge-status {
    background: #e8f5e9;
    color: #2e7d32;
}

.trust-badge.is-in-preparation .trust-badge-status {
    background: #fffbeb;
    color: #b45309;
}

.trust-badge.is-planned .trust-badge-status {
    background: var(--color-gray);
    color: #666666;
}

/* ---- Question Section Cards ---- */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.trust-protection .trust-cards {
    grid-template-columns: repeat(3, 1fr);
}

.trust-card {
    background: var(--color-gray);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.trust-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 1.125rem;
}

.trust-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* ---- Document Links ---- */
.trust-doc-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 720px;
    margin: 0 auto;
}

.trust-doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: var(--shadow-base);
}

.trust-doc-body h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    color: var(--color-text);
}

.trust-doc-body p {
    font-size: 0.875rem;
    color: #666666;
}

/* ---- Data Residency ---- */
.trust-residency-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.trust-residency-text {
    flex: 1;
}

.trust-residency-text p {
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.trust-residency-list {
    list-style: disc;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.trust-residency-list li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.trust-residency-contact {
    font-size: 0.9375rem;
}

.trust-residency-contact a {
    color: var(--color-primary);
    text-decoration: underline;
}

.trust-eu-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.trust-eu-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-eu-label {
    font-size: 0.75rem;
    color: #666666;
    text-align: center;
}

/* Trust Page Responsive */
@media (max-width: 768px) {
    .trust-badge-grid {
        grid-template-columns: 1fr;
    }

    .trust-cards,
    .trust-protection .trust-cards {
        grid-template-columns: 1fr;
    }

    .trust-residency-content {
        flex-direction: column;
    }

    .trust-eu-indicator {
        order: -1;
    }

    .trust-doc-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-doc-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .trust-badge {
        padding: var(--spacing-md);
    }

    .trust-card {
        padding: var(--spacing-md);
    }
}

/* Story 2.22: Disabled CTA state when plan has no capacity */
.pricing-card .btn.is-disabled,
.pricing-max-banner .btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
