/* Global Styles */
:root {
    --primary-color: #000000;
    --text-color: #ffffff;
    --accent-color: #f2a85b;
    /* Orange from Logo */
    --accent-hover: #d98e40;
    --secondary-text: #A0AEC0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 40px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a4365 100%);
    min-height: 100vh;
    /* Vaybo Gradient */
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    background-color: white;
    /* Revert: White background */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

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

/* Text Blur Effect */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button,
.get-started-btn,
.hero-btn,
.cuvio-btn {
    filter: blur(0.3px);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 60px;
    /* Increased from default/previous size */
    width: auto;
    margin-right: 0;
}

nav {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

nav a {
    color: #cbd5e0;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    color: white;
}



/* Hero Section */
.hero {
    background-color: #000;
    /* Removed static background image */
    height: 85vh;
    /* Reduced from 100vh to reduce zoom effect */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Spread content and visuals */
    padding: 0 10%;
    position: relative;
    color: white;
    overflow: hidden;
    /* Ensure video doesn't overflow */
}

/* Gradient Overlay - Black on Left */
/* Gradient Overlay Removed */
.hero::after {
    display: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.6);
    /* Increased scale */
    width: 80%;
    /* Base width */
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    /* Transparency 50% */
    filter: blur(10px);
    /* Reduced blur even more */
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    /* Ensure content is above overlay */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    /* Needed for z-index to work */
    text-align: left;
    /* Revert: Align text to left */
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    /* Reduced from 72px (approx 30%) */
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -2px;
    /* Tighter spacing for larger font */
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    /* Reduced from 22px (approx 30%) */
    margin-bottom: 48px;
    color: #e2e8f0;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    /* Ensure readability */
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: var(--accent-hover);
}

.text-highlight {
    color: #4FD1C5;
}

.hero-visuals {
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* Above video */
}

.hero-card {
    position: absolute;
    width: 50%;
    /* Reduced size to 50% of container */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    z-index: 1;
}

.hero-card img {
    width: 100%;
    display: block;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    /* Ensure rounded corners */
}

/* Specific States for Cycle (Simplified) */
.hero-card.active {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, -50%) scale(1);
}

/* Inactive state implicitly has opacity 0 and scale 0.95 for subtle zoom effect */
.hero-card:not(.active) {
    transform: translate(-50%, -50%) scale(0.95);
    pointer-events: none;
}

/* Remove hover scale as it interferes with the cycle */
/* .hero:hover .hero-card rule removed to fix lint */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
        text-align: center;
        position: relative;
        z-index: 10;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visuals {
        width: 100%;
        height: 400px;
        z-index: 1;
        transform: scale(0.9);
        transform-origin: top center;
        margin-top: -40px;
    }

    .hero-video {
        width: 100%;
        right: 0;
        opacity: 0.4;
    }

    .hero::after {
        background: linear-gradient(to bottom, #000 0%, transparent 100%);
    }
}



/* Features Section */
.features-section {
    padding: 100px 10%;
    background-color: #fff;
    text-align: center;
}

.features-header {
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.features-header p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 columns for 2+3 layout */
    gap: 20px;
}

/* 2 Big Cards */
.features-grid .feature-card:nth-child(1),
.features-grid .feature-card:nth-child(2) {
    grid-column: span 3;
    padding: 40px 30px;
    /* Increase padding for bigger feel */
}

.features-grid .feature-card:nth-child(1) h3,
.features-grid .feature-card:nth-child(2) h3 {
    font-size: 24px;
    /* Larger title */
}

.features-grid .feature-card:nth-child(1) p,
.features-grid .feature-card:nth-child(2) p {
    font-size: 16px;
    /* Larger text */
    max-width: 340px;
    /* Allow text to span wider */
}

.features-grid .feature-card:nth-child(1) .feature-icon,
.features-grid .feature-card:nth-child(2) .feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

/* 3 Smaller Cards */
.features-grid .feature-card:nth-child(n+3) {
    grid-column: span 2;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid .feature-card:nth-child(n) {
        grid-column: auto;
        /* Reset spans */
    }

    /* Last item full width on 2-col? Optional, but default auto is fine or span 2 */
    .features-grid .feature-card:last-child {
        grid-column: span 2;
        /* Center last item if odd count */
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.feature-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    /* Slightly smaller radius */
    padding: 24px 20px;
    /* Reduced from 32px 24px */
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-3px);
    /* Subtle lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.feature-icon {
    font-size: 24px;
    /* Reduced from 32px */
    color: var(--accent-color);
    margin-bottom: 20px;
    /* Increased from 16px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    /* Increased from 50px */
    height: 80px;
    /* Increased from 50px */
    border-radius: 50%;
    background-color: #fff;
    /* White background */
    border: 1px solid #e2e8f0;
    /* Thin border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
}

.feature-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 16px;
    /* Reduced from 18px */
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    /* Reduced margin */
}

.feature-card p {
    font-size: 13px;
    /* Reduced from 14px */
    color: #718096;
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    header {
        padding: 15px 20px;
    }

    .hero {
        padding: 0 20px;
    }

    .features-section,
    .verticals-section,
    .architecture-section,
    footer {
        padding: 60px 20px;

    }
}

/* Verticals Section */
/* Verticals Section */
.verticals-section {
    padding: 60px 20px;
    background-color: #ffffff;
    /* Revert: White background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verticals-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
}

.verticals-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    /* Dark Text */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.verticals-header p {
    font-size: 16px;
    color: #718096;
    /* Dark Grey Text */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.verticals-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    /* Slight increase for better spacing */
    background: transparent;
    /* Fix: Remove white background */
    box-shadow: none;
    /* Fix: Remove shadow */
    border: none;
    /* Fix: Remove border */
    position: relative;
    /* min-height removed to let content dictate height */
}

/* Vertical Tabs Styling (Pills) */
.verticals-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 40px 20px;
    flex-wrap: wrap;
}

.vertical-item {
    padding: 12px 24px;
    background: #f7fafc;
    /* Very light grey for pills on white */
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    /* Dark Grey Text */
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.vertical-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    color: #2d3748;
}

.vertical-item.active {
    background: var(--accent-color);
    /* Orange active */
    color: white;
    /* White text on orange */
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.4);
}

.vertical-item span {
    white-space: nowrap;
}


/* Main card container (Background removed for cleaner look, just grid wrapper) */
.verticals-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
    /* Removed border-radius/overflow since we aren't using a card bg anymore */
}

/* Two-column Grid Wrapper */
.verticals-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal width columns */
    gap: 60px;
    align-items: center;
    /* Changed from start to center per user request */
    /* Align to top to prevent centering causing jumps if heights differ */
    width: 100%;
}

/* Left Column: Image */
.verticals-visual {
    /* Reset absolute positioning */
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: visible;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    justify-content: center;
    align-items: flex-start;
}

/* Force Reset for IDs (Fix for overlap issues) */
#vertical-content,
#vertical-text-overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    /* Ensure they respect the grid */
    grid-column: auto !important;
    grid-row: auto !important;
}

.vertical-image-wrapper {
    width: fit-content;
    /* Fix: Shrink to image width to avoid side gaps */
    max-width: 400px !important;
    /* Significantly increased per user feedback "still small" */
    margin: 0 auto;
    height: auto;
    border-radius: 24px;
    /* Reduced radius per user request */
    box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.5);
    overflow: visible;
    display: flex;
    /* Ensure it wraps img tightly */
}

.vertical-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 650px !important;
    /* Relaxed constraint to allow larger size */
    border-radius: 24px;
    /* Match wrapper */
    filter: none;
    /* Removed filter shadow in favor of wrapper box-shadow */
}

/* Right Column: Text */
.verticals-text-column {
    position: relative;
    z-index: 20;
    width: 100%;
}

/* Rich content mod logic (handled by modifying the inner content container) */
.vertical-text-content.rich-content {
    max-width: 100%;
    /* Fill the column */
}

/* Responsive adjustment: Stack on smaller screens */
@media (max-width: 900px) {
    .verticals-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .verticals-text-column {
        order: 2;
        /* Text below image */
    }

    .verticals-visual {
        order: 1;
    }
}

/* Text Column Styling (Clean, Left Border) */
.vertical-text-content {
    background: transparent;
    /* Remove card bg */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 0 0 40px;
    /* Left padding for content */
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-left: 4px solid var(--accent-color);
    /* The Orange Line */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vertical-text-content h3 {
    font-size: 32px;
    /* Larger Title */
    font-weight: 800;
    margin-top: 0;
    /* Align with top of border */
    margin-bottom: 20px;
    color: #1a202c;
    /* Fix: Dark Text */
}

.vertical-text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    /* Fix: Dark Text */
    margin-bottom: 25px;
}

/* Rich Content Styles update for new layout */
.vertical-quote {
    font-style: italic;
    font-size: 18px;
    color: #2d3748;
    /* Fix: Dark Quote */
    margin-bottom: 30px !important;
    border-left: none;
    /* Removed inner border, we have the main one */
    padding-left: 0;
    font-weight: 500;
}

.vertical-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.vertical-feature-item {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    /* Fix: Dark Text */
}

.vertical-feature-item strong {
    color: #2d3748;
    /* Fix: Dark Text */
    font-weight: 700;
    display: block;
    /* Title on own line? or inline? Screenshot shows inline bold: "Title: Desc" */
    margin-bottom: 4px;
    /* Screenshot likely: Title: Desc. Let's keep inline if it was inline, or block if screenshot shows block. Screenshot shows "Title: Desc" inline usually. Let's stick to inline but with bold color. */
}

.vertical-cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
}

.vertical-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .verticals-list {
        flex-wrap: wrap;
    }

    .vertical-text-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        padding: 20px;
        pointer-events: auto;
    }

    .vertical-text-content {
        background: #f8f9fa;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
    }
}

/* Architecture Section */
.architecture-section {
    padding: 80px 10%;
    background-color: white;
}

.arch-diagrams {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.arch-layer {
    max-width: 45%;
    width: 100%;
    margin-bottom: 0;
    z-index: 1;
    transition: transform 0.3s;
}

.arch-layer:first-child {
    z-index: 1;
}

.arch-layer:hover {
    transform: scale(1.02);
    z-index: 10;
}

.arch-layer img {
    width: 100%;
    height: auto;
    display: block;
}

.arch-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.arch-text-col {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.arch-icon {
    margin-bottom: 15px;
}

.arch-text-col h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.arch-text-col p {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
}

nav a:hover {
    color: white;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

/* Vertical Separator */
.lang-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #cbd5e0;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 140px;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    padding: 5px;
}

.lang-menu.show {
    display: flex !important;
}

.lang-menu a {
    margin: 0;
    padding: 10px 15px;
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.lang-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 10%;
    background-color: #1a1a1a;
    /* Dark background */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
}

.comparison-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.comparison-header p {
    font-size: 18px;
    color: #a0aec0;
    line-height: 1.6;
}

.comparison-table-wrapper {
    width: 100%;
    max-width: 1000px;
    overflow-x: auto;
    /* Allow scrolling on small screens */
    background: #2d3748;
    border-radius: 16px;
    padding: 2px;
    /* Border effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a202c;
    border-radius: 14px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #2d3748;
    font-size: 15px;
}

.comparison-table th {
    background-color: #2d3748;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #e2e8f0;
    min-width: 250px;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background-color: rgba(79, 209, 197, 0.1);
    /* Accent color tint */
    color: #4FD1C5;
    /* Brand Green/Azure */
    font-weight: 700;
    border-bottom: 1px solid rgba(79, 209, 197, 0.2);
}

.comparison-table th.highlight {
    color: #4FD1C5;
}

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

.icon-check {
    color: var(--accent-color);
    /* Default to Orange for competitors */
    font-size: 18px;
}

.highlight .icon-check {
    color: currentColor;
    /* Vaybo column (highlight) uses Azure */
    filter: drop-shadow(0 0 5px currentColor);
    /* Glow ONLY for Vaybo column */
}

.icon-cross {
    color: #4a5568;
    /* Muted dark gray */
    font-size: 16px;
    opacity: 0.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 10%;
    background-color: #1a1a1a;
    /* Dark background */
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    /* For the divider */
}

/* Vertical Divider */
.contact-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    /* Full height */
    width: 2px;
    background-color: var(--accent-color);
    /* Brand Orange */
    transform: translateX(-50%);
    opacity: 0.6;
}

/* Left Col: Info */
.contact-info {
    text-align: left;
    color: #fff;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.benefits-list li i {
    color: #4FD1C5;
    /* Azure Green */
    font-size: 20px;
    background: rgba(79, 209, 197, 0.2);
    /* Matching tint */
    padding: 3px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Right Col: Form Card */
.contact-form-wrapper {
    background: transparent;
    /* Removed card bg */
    padding: 40px;
    /* Keep padding for spacing/layout */
    border-radius: 24px;
    box-shadow: none;
    border: none;
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.contact-form label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    /* White text */
    /* Dark text for label inside white card */
}

.contact-form input {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    background: #fff;
    color: #2d3748;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.1);
}

.contact-btn {
    background-color: var(--accent-color);
    /* Orange Accent */
    color: #fff;
    /* White text on orange */
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    width: 100%;
}

.contact-btn:hover {
    background-color: #d99600;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 169, 0, 0.3);
}

.form-disclaimer {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 15px;
    text-align: center;
}


/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide divider on mobile */
    .contact-container::after {
        display: none;
    }

    .contact-info {
        text-align: center;
    }

    .benefits-list {
        align-items: center;
        /* Center list items */
    }
}

.hidden {
    display: none !important;
}

.contact-form button {
    margin-top: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 60px 10%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-col a {
    display: block;
    color: #718096;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .cuvio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    .cuvio-grid,
    .arch-text-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .arch-text-col {
        text-align: center;
    }
}

/* --- Micro-animations --- */

/* 1. Hover Lift */
body.effect-hover-lift .feature-card:hover,
body.effect-hover-lift .cuvio-card:hover,
body.effect-hover-lift .vertical-item:hover {
    transform: translateY(-8px);
}

/* 2. Hover Glow */
body.effect-hover-glow .get-started-btn:hover,
body.effect-hover-glow .hero-btn:hover,
body.effect-hover-glow .cuvio-btn:hover {
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.6);
}

/* 3. Icon Pulse */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

body.effect-icon-pulse .feature-card:hover .icon-wrapper i,
body.effect-icon-pulse .cuvio-card:hover .icon-wrapper i {
    animation: pulse-animation 1s infinite ease-in-out;
}

/* 4. Text Shimmer */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

body.effect-text-shimmer h1,
body.effect-text-shimmer h2 {
    background: linear-gradient(to right, currentColor 0%, #4FD1C5 50%, currentColor 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* 5. Nav Underline */
body.effect-nav-underline nav a {
    position: relative;
}

body.effect-nav-underline nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

body.effect-nav-underline nav a:hover::after {
    width: 100%;
}

/* 6. Scroll Reveal */
body.effect-scroll-reveal .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

body.effect-scroll-reveal .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 7. Card Border Flow */
@keyframes border-flow {
    0% {
        border-color: rgba(79, 209, 197, 0.2);
    }

    50% {
        border-color: rgba(79, 209, 197, 1);
    }

    100% {
        border-color: rgba(79, 209, 197, 0.2);
    }
}

body.effect-card-border-flow .feature-card:hover,
body.effect-card-border-flow .vertical-item.active {
    animation: border-flow 2s infinite;
}

/* 8. Image Float */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

body.effect-image-float .arch-layer img,
body.effect-image-float .vertical-image {
    animation: float 4s ease-in-out infinite;
}

/* 9. List Spotlight */
body.effect-list-spotlight .vertical-item {
    position: relative;
    overflow: hidden;
}

body.effect-list-spotlight .vertical-item::before {
    content: '';
    position: absolute;
    top: var(--y, 0);
    left: var(--x, 0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 209, 197, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

body.effect-list-spotlight .vertical-item:hover::before {
    opacity: 1;
}

/* 10. Click Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

body.effect-click-ripple button,
body.effect-click-ripple a {
    position: relative;
    overflow: hidden;
}

/* Flying Heart Animation */
.floating-heart {
    position: fixed;
    color: var(--accent-color);
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 1s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), -150px) scale(1.5);
        opacity: 0;
    }
}

/* Integration Band */
.integration-band {
    background-color: #000;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.integration-text {
    font-size: 16px;
    color: #a0aec0;
    font-weight: 500;
}

.integration-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.integration-logos i {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.integration-logos i:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.integration-coming-soon {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

@media (max-width: 640px) {
    .integration-band {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}