/* CSS Design System & Variables */
:root {
    --primary: #5f60f7;
    --primary-hover: #4e4fd6;
    --primary-tint: rgba(95, 96, 247, 0.08); /* #5f60f714 */
    --primary-border: rgba(95, 96, 247, 0.12); /* #5f60f71f */
    --text-main: #1f1f1f;
    --text-muted: #5e5e62;
    --text-light: #858489;
    --bg-white: #ffffff;
    --bg-gray: #f7f7f7;
    --red-main: #ff5656;
    --red-tint: #ffeaea;
    
    --font-archivo: 'Archivo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-geist: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Primary Button Theme Variables */
    --gradient-primary-btn: linear-gradient(135deg, #5f60f7 0%, #8b5cf6 100%);
    --gradient-primary-btn-hover: linear-gradient(135deg, #4e4fd6 0%, #7c3aed 100%);
    --color-primary-contrast: #ffffff;
    --shadow-btn-primary: 0 4px 12px rgba(95, 96, 247, 0.15);
    --shadow-btn-primary-hover: 0 6px 18px rgba(95, 96, 247, 0.25);
    --btn-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Local Fonts Setup */
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwRGFWfOw.woff2') format('woff2');
    font-weight: 300;
}
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwTGFWfOw.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwYGFWfOw.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwSGFWfOw.woff2') format('woff2');
    font-weight: 600;
}
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwcGFU.woff2') format('woff2');
    font-weight: 700;
}
@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts.gstatic.com/s/archivo/v25/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxI.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts.gstatic.com/s/archivo/v25/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxK-vA.woff2') format('woff2');
    font-weight: 700;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-geist), sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden; /* Prevent body horizontal overflow */
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-archivo), sans-serif;
    color: var(--text-main);
}

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

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

/* Base Layout Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Badge Pill Utility */
.badge-pill {
    display: inline-block;
    background-color: var(--bg-white);
    border: 1px solid var(--text-light);
    color: var(--text-main);
    font-family: var(--font-geist);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 200px;
    text-align: center;
    width: fit-content;
}

.badge-pill.pill-red {
    background-color: var(--red-tint);
    border-color: var(--red-main);
    color: var(--red-main);
}

.badge-pill.pill-blue {
    background-color: var(--primary-tint);
    border-color: var(--primary);
    color: var(--primary);
}

/* Header & Nav */
header {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-geist);
    font-size: 14px; /* Reduced to 14px */
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

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

.header-cta {
    font-size: 14px !important; /* Set to 14px for header CTA button */
    padding: 8px 18px !important;
}

/* Hamburger Menu Toggle Button styling */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    outline: none;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Dropdown Menu Styling */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    border-top: 1px solid #eeeeee;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    list-style: none;
    width: 100%;
}

.mobile-nav-links a {
    font-family: var(--font-archivo);
    font-size: 26px;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s ease;
}

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

.mobile-menu .btn-book {
    margin-top: 20px;
    width: 100%;
    max-width: 320px;
    padding: 16px 28px !important;
    font-size: 16px !important;
    border-radius: 12px;
}

/* Premium Gradient Buttons */
.btn-book {
    background: var(--gradient-primary-btn);
    color: var(--color-primary-contrast) !important;
    border: 1px solid transparent;
    box-shadow: var(--shadow-btn-primary), var(--btn-highlight);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-geist);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-book:hover {
    background: var(--gradient-primary-btn-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-primary-hover);
}

.btn-hero {
    padding: 12px 24px;
    font-size: 15px;
    margin-top: 10px;
    border-radius: 10px;
}

.btn-cta {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(95, 96, 247, 0.35);
}

/* Hero Section */
.hero {
    padding: 80px 0 0;
    text-align: center;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 62px;
    font-weight: 500;
    line-height: 1.15;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 950px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-family: var(--font-geist);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 850px;
    margin-bottom: 32px;
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000000;
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mesh-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Interactive Dashboard Component Board */
.dashboard-board {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 380px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: width 0.3s ease, max-width 0.3s ease;
}

/* Sliding inner canvas viewport */
.dashboard-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 380px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connector-bg {
    stroke: #e2e8f0;
    stroke-dasharray: 4 4;
    stroke-width: 2px;
    fill: none;
}

.connector-active {
    stroke: #5f60f7;
    stroke-width: 2px;
    fill: none;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

.path-1 {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.path-2 {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.path-3 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
}

.dashboard-board.state-1 .path-1 {
    stroke-dashoffset: 0;
}

.dashboard-board.state-2 .path-1 {
    stroke-dashoffset: 0;
}

.dashboard-board.state-2 .path-2,
.dashboard-board.state-2 .path-3 {
    stroke-dashoffset: 0;
}

.dashboard-board.state-3 .path-1,
.dashboard-board.state-3 .path-2 {
    stroke-dashoffset: 0;
}

.interactive-card {
    position: absolute;
    width: 200px;
    height: 155px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    transition: opacity 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-step-1 { left: 40px; top: 40px; }
.card-step-2 { left: 300px; top: 40px; }
.card-step-3 { left: 560px; top: 40px; }
.card-step-4 { left: 560px; top: 210px; }

/* States styling */
.interactive-card.pending {
    opacity: 0;
    pointer-events: none;
}

.interactive-card.active {
    opacity: 1;
    border-color: #5f60f7;
    box-shadow: 0 4px 20px rgba(95, 96, 247, 0.12);
}

.interactive-card.completed {
    opacity: 1;
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.card-hdr {
    padding: 6px 12px;
    font-family: var(--font-archivo);
    font-size: 13px;
    font-weight: 700;
    color: #1f1f1f;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.card-body-rows {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-row {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
    font-family: var(--font-geist);
    font-size: 11px;
}

.card-body-row:last-child {
    border-bottom: none;
}

.card-body-row span {
    padding: 5px 8px;
    flex: 1;
}

.cell-id {
    font-weight: 700;
    border-right: 1px solid #f1f5f9;
    color: #1f1f1f;
}

.cell-time {
    color: #5e5e62;
    text-align: right;
}

.cell-status {
    border-right: 1px solid #f1f5f9;
    font-weight: 600;
}

.status-inprogress {
    color: #eab308;
}

.status-completed {
    color: #10b981;
}

.cell-assignee {
    color: #5e5e62;
    text-align: right;
}

.footer-transition {
    padding: 4px 8px;
    color: #858489;
    text-align: center;
    font-size: 10px;
}

.card-ftr {
    padding: 6px 12px 10px;
}

.btn-card-action {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-family: var(--font-geist);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-card-action:hover {
    background-color: var(--primary-hover);
}

/* Industries Section */
.industries {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.industries-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eeeeee;
    padding: 32px 50px;
    border-radius: 12px;
    background-color: var(--bg-white);
}

.industries-title {
    font-family: var(--font-geist);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    max-width: 250px;
    line-height: 1.3;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.industries-list li {
    font-family: var(--font-geist);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Common Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 24px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-family: var(--font-geist);
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    line-height: 1.5;
}

.section-subtitle.text-left {
    text-align: left;
    max-width: 100%;
}

/* Platform Blocks Grid with Scroll Entrance & Hover Animations */
.platform-blocks {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.block-card {
    background-color: var(--primary-tint);
    border: 1px solid var(--primary-border);
    border-radius: 12px;
    height: 368px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}

.platform-blocks.visible .block-card {
    opacity: 1;
    transform: translateY(0);
}

.platform-blocks.visible .blocks-row:nth-child(1) .block-card:nth-child(1) { transition-delay: 0.1s; }
.platform-blocks.visible .blocks-row:nth-child(1) .block-card:nth-child(2) { transition-delay: 0.25s; }
.platform-blocks.visible .blocks-row:nth-child(2) .block-card:nth-child(1) { transition-delay: 0.4s; }
.platform-blocks.visible .blocks-row:nth-child(2) .block-card:nth-child(2) { transition-delay: 0.55s; }

.block-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(95, 96, 247, 0.35);
    box-shadow: 0 20px 40px rgba(95, 96, 247, 0.08);
}

.blocks-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.blocks-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.block-card.narrow {
    width: 394px;
    flex-shrink: 0;
}

.block-card.wide {
    flex-grow: 1;
}

.card-text {
    max-width: 350px;
    position: relative;
    z-index: 10;
}

.card-title {
    font-family: var(--font-archivo);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-main);
}

.card-desc {
    font-family: var(--font-geist);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.card-graphic {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.graphic-workflow {
    bottom: -15px;
    left: -20px;
    width: 466px;
    height: 174px;
    max-width: 120%;
}

.graphic-workflow svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-card:hover .graphic-workflow svg {
    transform: scale(1.05) rotate(0.5deg);
}

.graphic-rule {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 286px;
    height: 286px;
    max-width: 50%;
}

.graphic-rule svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-card:hover .graphic-rule svg {
    transform: scale(1.05) rotate(-1.5deg);
}

.graphic-policy {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 286px;
    height: 286px;
    max-width: 50%;
}

.graphic-policy svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-card:hover .graphic-policy svg {
    transform: scale(1.05) translateY(-4px);
}

.graphic-attribute {
    bottom: -20px;
    right: -20px;
    width: 237px;
    height: 237px;
    max-width: 60%;
}

.graphic-attribute svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-card:hover .graphic-attribute svg {
    transform: scale(1.06) translateY(-4px);
}

.card-graphic svg {
    width: 100%;
    height: 100%;
}

/* Why Teams Switch Section */
.why-switch {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.comparison-col {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comparison-header {
    display: flex;
    justify-content: flex-start;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.item-icon svg {
    width: 100%;
    height: 100%;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-family: var(--font-geist);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.item-desc {
    font-family: var(--font-geist);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.steps-container {
    position: relative;
    width: 1200px;
    height: 410px;
    margin: 0 auto;
}

.step-card {
    position: absolute;
    width: 312px;
    background-color: var(--bg-white);
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.step-num-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #454599 100%);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-geist);
    font-size: 18px;
    font-weight: 700;
}

.step-title {
    font-family: var(--font-geist);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.step-desc {
    font-family: var(--font-geist);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Absolute positions for steps */
.step-1 { left: 0; top: 0; }
.step-2 { left: 419px; top: 0; }
.step-3 { left: 838px; top: 0; }
.step-4 { left: 838px; top: 218px; }
.step-5 { left: 419px; top: 218px; }
.step-6 { left: 0; top: 218px; }

/* Connecting Arrows positioning and Drawing Animations */
.arrow {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.arrow-h {
    width: 106px;
    height: 27px;
}

.arrow-1-2 { left: 313px; top: 76px; clip-path: inset(0 100% 0 0); }
.arrow-2-3 { left: 732px; top: 76px; clip-path: inset(0 100% 0 0); }
.arrow-4-5 { left: 732px; top: 294px; clip-path: inset(0 0 0 100%); }
.arrow-5-6 { left: 313px; top: 294px; clip-path: inset(0 0 0 100%); }

.arrow-v-right {
    left: 1152px;
    top: 87px;
    width: 48px;
    height: 222px;
    clip-path: inset(0 0 100% 0);
}

.arrow svg {
    width: 100%;
    height: 100%;
}

/* Sequential transition rules for animated step arrows */
.steps-container.animated .arrow-1-2 {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease-in-out;
    transition-delay: 0.3s;
}
.steps-container.animated .arrow-2-3 {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease-in-out;
    transition-delay: 0.9s;
}
.steps-container.animated .arrow-3-4 {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.7s ease-in-out;
    transition-delay: 1.5s;
}
.steps-container.animated .arrow-4-5 {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease-in-out;
    transition-delay: 2.3s;
}
.steps-container.animated .arrow-5-6 {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease-in-out;
    transition-delay: 2.9s;
}

/* The Differentiator Section */
.differentiator {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.differentiator-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.differentiator-content {
    flex: 1;
    max-width: 670px;
}

.differentiator-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-geist);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}

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

.differentiator-image-wrapper {
    width: 409px;
    height: 409px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.differentiator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section Styling */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid #eeeeee;
}

.contact-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
}

.contact-title {
    font-family: var(--font-archivo);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-family: var(--font-geist);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-geist);
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.5;
}

a.info-value {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

a.info-value:hover {
    color: var(--primary-hover);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-circle {
    width: 32px;
    height: 32px;
    background-color: #1f1f1f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.contact-form-container {
    flex: 1.2;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.form-group label {
    font-family: var(--font-geist);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-geist);
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(95, 96, 247, 0.05);
}

.btn-send-message {
    background: var(--gradient-primary-btn);
    color: var(--color-primary-contrast);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 16px 0;
    font-family: var(--font-geist);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-btn-primary), var(--btn-highlight);
}

.btn-send-message:hover {
    background: var(--gradient-primary-btn-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-primary-hover);
}

/* Pricing Section Styling */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-toggle {
    background-color: #e2e8f0;
    padding: 4px;
    border-radius: 99px;
    display: flex;
    position: relative;
    width: 280px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.pricing-toggle-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    font-family: var(--font-geist);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.pricing-toggle-btn.active {
    color: var(--text-main);
}

.pricing-toggle-btn .save-badge {
    background-color: var(--primary-tint);
    color: var(--primary);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 700;
}

.pricing-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: #ffffff;
    border-radius: 99px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle.yearly-active .pricing-toggle-slider {
    transform: translateX(100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(95, 96, 247, 0.08);
    overflow: hidden;
    padding-top: 64px;
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(95, 96, 247, 0.15);
}

.featured-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e0e7ff;
    color: var(--primary);
    font-family: var(--font-geist);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.plan-name {
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    font-family: var(--font-archivo);
}

.price-currency {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
}

.price-amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    transition: opacity 0.15s ease;
}

.price-period {
    font-family: var(--font-geist);
    font-size: 16px;
    color: var(--text-light);
    margin-left: 4px;
}

.plan-subtitle {
    font-family: var(--font-geist);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 42px;
}

.btn-pricing {
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
    font-family: var(--font-geist);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 32px;
}

.btn-pricing.secondary {
    background-color: var(--primary-tint);
    color: var(--primary);
}

.btn-pricing.secondary:hover {
    background-color: rgba(95, 96, 247, 0.15);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #5f60f7 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(95, 96, 247, 0.15);
}

.btn-pricing.primary:hover {
    background: linear-gradient(135deg, #4e4fd6 0%, #7c3aed 100%);
    box-shadow: 0 6px 18px rgba(95, 96, 247, 0.25);
}

.plan-features-title {
    font-family: var(--font-geist);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-geist);
    font-size: 14px;
    color: var(--text-main);
}

.feature-check-icon {
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 2px;
    flex-shrink: 0;
}

/* Bottom CTA Banner Section */
.bottom-cta {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.cta-banner {
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/framerusercontent.com/images/pZGZdGyBHjOFbwWqVnvsmIQCVXA.png');
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    transition: background-position 0.1s ease-out;
}

.cta-title {
    font-family: var(--font-archivo);
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    max-width: 600px;
    letter-spacing: -0.5px;
}

.btn-cta {
    font-size: 16px;
    padding: 14px 28px;
    box-shadow: 0 4px 20px rgba(95, 96, 247, 0.35);
}

/* Footer Section */
footer {
    background-color: var(--bg-gray);
    padding: 80px 0 40px;
    border-top: 1px solid #eeeeee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col.brand {
    max-width: 350px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.footer-brand-desc {
    font-family: var(--font-geist);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-title {
    font-family: var(--font-geist);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-geist);
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    cursor: pointer;
}

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

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
}

.footer-copy {
    font-family: var(--font-geist);
    font-size: 14px;
    color: var(--text-light);
}

/* Modern Backdrop Modal Overlay styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-title {
    font-family: var(--font-archivo);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 20px;
}

.modal-body {
    font-family: var(--font-geist);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.modal-body h4 {
    font-family: var(--font-geist);
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modal-body p {
    margin-bottom: 16px;
}

/* Responsive Design Media Queries */

/* Responsive sliding viewport system for mobile/tablet */
@media (max-width: 900px) {
    /* Hide desktop menu elements and show Hamburger */
    .nav-links {
        display: none !important;
    }
    .header-cta {
        display: none !important;
    }
    .hamburger-btn {
        display: flex !important;
    }

    .dashboard-board {
        transform: translate(-50%, -50%);
        width: 92%;
        max-width: 320px;
        height: 240px;
        border-radius: 12px;
    }
    .dashboard-canvas {
        width: 1050px !important;
        height: 240px;
    }
    
    /* Layout cards in a straight horizontal line on tablet */
    .card-step-1 { left: 40px; top: 20px; }
    .card-step-2 { left: 300px; top: 20px; }
    .card-step-3 { left: 560px; top: 20px; }
    .card-step-4 { left: 820px; top: 20px; }
    
    .interactive-card {
        width: 180px;
        height: 155px;
        opacity: 0.15 !important;
        transition: opacity 0.5s ease, box-shadow 0.3s ease;
    }
    .interactive-card.active {
        opacity: 1 !important;
        box-shadow: 0 10px 30px rgba(95, 96, 247, 0.25);
    }
    .card-step-4 {
        height: 155px;
    }
    
    .connector-bg {
        display: none !important;
    }
    
    .dashboard-svg {
        display: block !important;
    }
    .connector-active {
        stroke-width: 2px;
    }
    
    /* Straight horizontal arrow transitions on tablet */
    #path-1 { d: path("M 220,97 H 300") !important; }
    #path-2 { d: path("M 480,97 H 560") !important; }
    #path-3 { d: path("M 740,97 H 820") !important; }

    .hero-showcase {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .dashboard-board {
        max-width: 290px;
        height: 210px;
    }
    .dashboard-canvas {
        width: 900px !important;
        height: 210px;
    }
    
    /* Layout cards in a straight horizontal line on mobile */
    .card-step-1 { left: 30px; top: 15px; }
    .card-step-2 { left: 250px; top: 15px; }
    .card-step-3 { left: 470px; top: 15px; }
    .card-step-4 { left: 690px; top: 15px; }
    
    .interactive-card {
        width: 160px;
        height: 155px;
    }
    .card-step-4 {
        height: 155px;
        top: 15px;
    }
    
    /* Straight horizontal arrow transitions on mobile */
    #path-1 { d: path("M 190,92 H 250") !important; }
    #path-2 { d: path("M 410,92 H 470") !important; }
    #path-3 { d: path("M 630,92 H 690") !important; }

    .hero-showcase {
        height: 270px;
    }
}

/* Tablet Layout */
@media (max-width: 1200px) {
    .nav-container, .container, .footer-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .blocks-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .block-card.narrow, .block-card.wide {
        width: 100%;
    }
    
    .differentiator-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        text-align: center;
    }
    
    .differentiator-content {
        max-width: 100%;
    }
    
    .differentiator-image-wrapper {
        width: 100%;
        max-width: 409px;
        height: 320px;
    }
    
    /* Steps mobile layout - STACKED STRAIGHT VERTICALLY (STRICT OVERRIDES FOR OFFSETS) */
    .steps-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .steps-container .step-card {
        position: relative !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    /* Downward Chevron Arrow pseudo elements for stacked mobile steps */
    .steps-container .step-card:not(.step-6)::after {
        content: '';
        position: absolute;
        bottom: -28px;
        left: 50%;
        width: 12px;
        height: 12px;
        border-right: 3px solid var(--primary);
        border-bottom: 3px solid var(--primary);
        transform: translateX(-50%) rotate(45deg);
        z-index: 20;
    }
    
    .arrow {
        display: none !important;
    }
    
    /* Pricing Grid tablet scaling */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Contact Box Tablet/Mobile Override */
    .contact-box {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 40px !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .contact-info, .contact-form-container {
        width: 100% !important;
        flex: none !important;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .nav-container, .container, .footer-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .industries-banner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 24px;
    }
    
    .industries-list {
        gap: 15px 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .comparison-col {
        padding: 24px;
    }
    
    .cta-banner {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

/* Mobile Screen Layout */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .block-card {
        padding: 24px;
        height: auto;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .card-text {
        margin-bottom: 80px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-graphic {
        transform: none !important;
        top: auto !important;
    }
    
    .graphic-workflow {
        width: 140px !important;
        height: 60px !important;
        right: 10px !important;
        bottom: 10px !important;
        left: auto !important;
    }
    
    .graphic-rule {
        width: 80px !important;
        height: 80px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
    
    .graphic-policy {
        width: 80px !important;
        height: 80px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
    
    .graphic-attribute {
        width: 80px !important;
        height: 80px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
    
    .block-card:hover .graphic-workflow svg,
    .block-card:hover .graphic-rule svg,
    .block-card:hover .graphic-policy svg,
    .block-card:hover .graphic-attribute svg {
        transform: none !important;
    }
    
    .differentiator-features {
        grid-template-columns: 1fr;
    }
    
    .differentiator-image-wrapper {
        height: 250px;
    }
    
    .cta-banner {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    .plan-name {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .price-amount {
        font-size: 48px;
    }
    .price-currency {
        font-size: 36px;
    }

    /* Mobile Contact Box Scaling */
    .contact-box {
        padding: 30px 20px !important;
        border-radius: 16px !important;
        max-width: 100% !important;
    }
    .contact-title {
        font-size: 30px !important;
    }
}

/* ==========================================================================
   COOKIE CONSENT BANNER & SETTINGS FLOATING TRIGGER
   ========================================================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 420px;
    max-width: calc(100vw - 48px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(95, 96, 247, 0.15);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(31, 31, 31, 0.12);
    padding: 24px;
    z-index: 10000;
    font-family: var(--font-geist);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-consent-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 24px;
    color: var(--primary);
}

.cookie-title {
    font-family: var(--font-archivo);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

/* Cookie preferences checklist */
.cookie-preferences {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-preference-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    background: rgba(95, 96, 247, 0.03);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(95, 96, 247, 0.05);
}

.pref-label-container {
    display: flex;
    flex-direction: column;
}

.pref-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.pref-desc {
    font-size: 11px;
    color: var(--text-light);
}

/* Custom Switch Toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .slider {
    background-color: var(--primary);
}

.cookie-switch input:disabled + .slider {
    background-color: #eee;
    cursor: not-allowed;
}

.cookie-switch input:checked + .slider:before {
    transform: translateX(16px);
}

/* Banner Buttons */
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.cookie-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    flex-grow: 1;
    text-align: center;
}

.cookie-btn.accept {
    background: var(--gradient-primary-btn);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--gradient-primary-btn-hover);
    box-shadow: 0 4px 12px rgba(95, 96, 247, 0.2);
}

.cookie-btn.reject {
    background: #f1f1f2;
    color: var(--text-muted);
}

.cookie-btn.reject:hover {
    background: #e4e4e6;
}

.cookie-btn.preferences-toggle {
    background: transparent;
    border: 1px solid rgba(95, 96, 247, 0.3);
    color: var(--primary);
    width: 100%;
}

.cookie-btn.preferences-toggle:hover {
    background: var(--primary-tint);
}

/* Floating Settings Trigger */
.cookie-consent-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border: 1px solid rgba(95, 96, 247, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(31, 31, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0);
    opacity: 0;
}

.cookie-consent-trigger.visible {
    transform: scale(1);
    opacity: 1;
}

.cookie-consent-trigger:hover {
    background: var(--primary-tint);
    transform: scale(1.1) rotate(20deg);
}

.cookie-consent-trigger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Cookie Banner */
@media (max-width: 480px) {
    .cookie-consent-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        padding: 20px;
        transform: translateY(100%);
    }
    .cookie-consent-trigger {
        bottom: 16px;
        left: 16px;
    }
}


/* ==========================================================================
   SUBPAGE GENERAL HERO & STRUCTURES
   ========================================================================== */
.subpage-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, rgba(95, 96, 247, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    border-bottom: 1px solid #f0f0f2;
}

.subpage-hero .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.subpage-hero .badge-pill {
    margin-bottom: 8px;
}

.subpage-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.subpage-subtitle {
    font-family: var(--font-geist);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.subpage-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Capabilities Detail Section */
.capabilities-detail-section {
    padding: 80px 0;
}

.capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.capability-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.capability-block:nth-child(even) {
    direction: rtl;
}

.capability-block:nth-child(even) .capability-text {
    direction: ltr;
}

.capability-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.capability-text .badge-pill {
    padding: 4px 12px;
    font-size: 12px;
}

.capability-title {
    font-family: var(--font-archivo);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.capability-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.capability-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.capability-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-main);
}

.capability-feature-item svg {
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--primary);
}

.capability-graphic {
    background: #fafafb;
    border: 1px solid rgba(95, 96, 247, 0.08);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.01), 0 8px 24px rgba(31,31,31,0.02);
    min-height: 320px;
    width: 100%;
}

/* UI mockups for subpage graphics using CSS styling */
.mockup-canvas {
    background: var(--bg-white);
    border: 1px solid rgba(95, 96, 247, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(31,31,31,0.05);
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-node {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

.mockup-node.start { border-left: 4px solid #10b981; }
.mockup-node.action { border-left: 4px solid var(--primary); }
.mockup-node.split { border-left: 4px solid #f59e0b; }
.mockup-node.approval { border-left: 4px solid #ec4899; }
.mockup-node.end { border-left: 4px solid #ef4444; }

.mockup-node-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.mockup-node-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-node-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.mockup-node-detail {
    font-size: 11px;
    color: var(--text-light);
}

.mockup-connector-line {
    width: 2px;
    height: 20px;
    background: rgba(95, 96, 247, 0.2);
    margin: -14px auto 0;
    position: relative;
}

.mockup-connector-line::after {
    content: "▼";
    position: absolute;
    bottom: -6px;
    left: -4px;
    font-size: 8px;
    color: rgba(95, 96, 247, 0.3);
}

/* ==========================================================================
   USE CASES SECTION
   ========================================================================== */
.use-cases-section {
    background: var(--bg-gray);
    padding: 80px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    background: var(--bg-white);
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(95, 96, 247, 0.06);
    border-color: rgba(95, 96, 247, 0.2);
}

.use-case-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.use-case-title {
    font-family: var(--font-archivo);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.use-case-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   INTEGRATIONS / TECH SPECS
   ========================================================================== */
.tech-specs-section {
    padding: 80px 0;
    border-bottom: 1px solid #f0f0f2;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    display: flex;
    gap: 16px;
}

.tech-num {
    width: 28px;
    height: 28px;
    background: var(--primary-tint);
    border: 1px solid var(--primary-border);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tech-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.tech-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.code-terminal {
    background: #1f1f2e;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #181824;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

.terminal-body {
    padding: 20px;
    overflow-x: auto;
}

.terminal-body pre {
    margin: 0;
    color: #e5e5e6;
    font-size: 13px;
    line-height: 1.6;
}

.syntax-keyword { color: #f472b6; }
.syntax-string { color: #34d399; }
.syntax-number { color: #fbbf24; }
.syntax-comment { color: #9ca3af; }


/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fafafb;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: rgba(95, 96, 247, 0.25);
    background: var(--bg-white);
    box-shadow: 0 4px 16px rgba(95, 96, 247, 0.04);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-archivo);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    gap: 20px;
}

.faq-icon-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-muted);
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 28px 22px;
    font-family: var(--font-geist);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}


/* ==========================================================================
   LEGAL DOCUMENT LAYOUT STYLING
   ========================================================================== */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: var(--font-geist);
}

.legal-title-section {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 24px;
    margin-bottom: 40px;
}

.legal-title-section h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-light);
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
    line-height: 1.75;
    font-size: 16px;
    color: var(--text-muted);
}

.legal-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 8px;
}

.legal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 8px;
}

.legal-body p strong {
    color: var(--text-main);
}

.legal-body ul, .legal-body ol {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-body li {
    font-size: 15px;
}

.legal-body li strong {
    color: var(--text-main);
}

.legal-table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.legal-table th, .legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eeeeee;
}

.legal-table th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--text-main);
}

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


/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS
   ========================================================================== */
@media (max-width: 900px) {
    .subpage-title {
        font-size: 38px;
    }
    
    .capability-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .capability-block:nth-child(even) {
        direction: ltr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

