/* Fonts */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitSemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit/fonnts.com-OutfitBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roca';
    src: url('fonts/roca/fonnts.com-Roca-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roca';
    src: url('fonts/roca/roca.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roca';
    src: url('fonts/roca/fonnts.com-Roca-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roca';
    src: url('fonts/roca/fonnts.com-Roca-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roca';
    src: url('fonts/roca/fonnts.com-Roca-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    /* Color Palette */
    --bg-primary: #0a0c10;
    --bg-secondary: #161b22;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --accent-primary: #58a6ff;
    --accent-secondary: #bc8cff;
    --Neutral-50: #EBE0D0;
    --Secondary-800: #A77F1B;
    --gradient-main: linear-gradient(135deg, #58a6ff 0%, #bc8cff 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Footer Colors */
    --footer-bg: #25184b;
    --footer-text-secondary: #a396c8;
    --footer-border: #4f378b;

    /* Enterprise Colors */
    --enterprise-tag: #B8860B;
    --enterprise-badge-bg: #E8D3FFB8;
    --enterprise-badge-border: #7339B3;
    --enterprise-badge-text: #5A4D9C;
    --enterprise-icon-bg: #2D255E;

    /* Typography */
    --font-heading: 'Roca', serif;
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 0;

    /* Dashboard Redesign Colors */
    --dash-lavender: #f3e8ff;
    --dash-purple: #4c3298;
    --dash-white: #ffffff;
    --dash-text: #1a1b3a;
    --dash-text-muted: #64748b;
    --dash-accent: #8b5cf6;
    --dash-teal: #06b6d4;
    --dash-pink: #d946ef;
    --dash-yellow: #eab308;
    --dash-green: #22c55e;
}

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

main section {
    padding: var(--section-padding);
}

section .container {
    padding: 56px 40px;
}

footer .container {
    padding: 56px 40px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: #E2B759;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    z-index: 1000;
    background: linear-gradient(90deg, rgba(250, 248, 255, 0.85) 0%, rgba(242, 237, 253, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(45, 37, 94, 0.12);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(45, 37, 94, 0.04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}

.logo img {
    height: 96px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.mobile-demo-li {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #8A3FFC;
    transform: translateY(-1px);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-demo-header {
    background: linear-gradient(95deg, #2E1B6B 0.01%, #6B2FAF 51.44%, #C0267B 99.99%);
    color: var(--Neutral-50);
    padding: 16px 24px;
    border-radius: 32px;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(48, 28, 128, 0.15);
}

.btn-demo-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 28, 128, 0.25);
}

.btn-demo-header svg {
    transition: transform 0.3s ease;
}

.btn-demo-header:hover svg {
    transform: translate(2px, -2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #111827;
    padding: 8px;
    margin-left: 16px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle.is-active .hamburger-icon {
    display: none !important;
}

.menu-toggle.is-active .close-icon {
    display: block !important;
}

/* Section 1: Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 178px 0 80px 0;
    background: #FDFBFF;
    text-align: center;
    z-index: 10;
}

.hero-ellipse {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(120px);
    pointer-events: none;
}

.hero-ellipse-left {
    width: 700px;
    height: 700px;
    left: -15%;
    bottom: -15%;
    background: rgba(236, 72, 153, 0.4);
    z-index: 5;
}

.hero-ellipse-right {
    width: 600px;
    height: 600px;
    right: -10%;
    top: -10%;
    background: rgba(139, 92, 246, 0.35);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(270deg, rgba(107, 47, 175, 0.77) 0.04%, rgba(192, 38, 123, 0.77) 99.96%);
    padding: 8px 24px;
    border-radius: 28px;
    margin-bottom: 35px;
    box-shadow: 0 0 8.2px 7px rgba(192, 38, 123, 0.40);
    filter: blur(0.45px);
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    display: inline-block;
    flex-shrink: 0;
}

.badge-text {
    color: var(--Neutral-50);
    font-family: var(--font-main);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title-new {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.text-accent {
    background: linear-gradient(90deg, #00D4C8 0%, #6B30AF 50%, #2E1B6B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    display: inline-block;
}

.italic {
    font-style: italic;
    font-family: 'Roca', serif;
}

.hero-subtitle-new {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 750px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-family: var(--font-main);
}

.hero-actions-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn-primary-new {
    background: #5C2D91;
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(92, 45, 145, 0.2);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(92, 45, 145, 0.3);
}

.btn-primary-new svg {
    transition: transform 0.3s ease;
}

.btn-primary-new:hover svg {
    transform: translate(2px, -2px);
}

.btn-secondary-new {
    background: white;
    color: #111827;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #D1D5DB;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

/* Section 2: Dashboard Section */
.dashboard-section {
    background: linear-gradient(180deg, #FDFBFF 0%, #E9EAFB 50%, #FDFBFF 100%);
    position: relative;
    overflow: hidden;
}

.dashboard-container {
    margin: 0 auto;
    padding: 56px 40px;
}

.dashboard-window-outer {
    background-color: var(--dash-purple);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(76, 50, 152, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-header-main {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    background: transparent;
}

.window-controls {
    display: flex;
    gap: 8px;
    width: 120px;
}

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

.control.red {
    background-color: #FF5F56;
}

.control.yellow {
    background-color: #FFBD2E;
}

.control.green {
    background-color: #27C93F;
}

.url-bar {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}

.dashboard-body-new {
    background: var(--dash-white);
    border-radius: 30px;
    display: flex;
    min-height: 700px;
    overflow: hidden;
}

/* Sidebar Styles */
.sidebar-new {
    width: 240px;
    background: var(--dash-lavender);
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--dash-purple);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-weight: 600;
    font-size: 15px;
    color: var(--dash-text);
}

.arrow-icon {
    margin-left: auto;
    opacity: 0.5;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dash-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--dash-text);
}

.nav-item.active {
    background: white;
    color: var(--dash-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-icon {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.nav-icon.dashboard {
    background: var(--dash-purple);
    opacity: 0.8;
}

.nav-icon.sentidocs {
    background: #4c3298;
    opacity: 0.3;
}

.nav-icon.senticam {
    background: #4c3298;
    opacity: 0.3;
}

.sidebar-badge {
    margin-left: auto;
    background: var(--dash-yellow);
    color: var(--dash-text);
    font-size: 11px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    padding: 0;
}

/* Main Content Styles */
.content-new {
    flex: 1;
    padding: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.header-label {
    font-size: 13px;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dash-text);
    font-family: var(--font-main);
}

.header-toggles {
    display: flex;
    gap: 8px;
}

.toggle-pill {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dash-text-muted);
    border: 1px solid #E2E8F0;
    cursor: pointer;
}

.toggle-pill.live {
    background: #f0fdf4;
    color: var(--dash-green);
    border-color: #dcfce7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-pill.live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--dash-green);
    border-radius: 50%;
}

/* Stats Cards */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card-new {
    background: white;
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    padding: 24px 24px 32px;
    box-shadow: 0 15px 35px rgba(76, 50, 152, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card-new:hover {
    transform: translateY(-5px);
}

.stat-card-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.stat-card-new.documents::after {
    background: #f97316;
}

.stat-card-new.camera::after {
    background: var(--dash-teal);
}

.stat-card-new.calls::after {
    background: #eab308;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dash-text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--dash-text);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-change {
    font-size: 13px;
    font-weight: 600;
}

.stat-change.positive {
    color: #f97316;
}

.stat-change.negative {
    color: var(--dash-teal);
}

/* Chart Section */
.chart-section-new {
    background: white;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

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

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dash-text-muted);
    font-weight: 500;
}

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

.dot.sentidocs {
    background: var(--dash-accent);
}

.dot.sentivoice {
    background: var(--dash-pink);
}

.dot.senticam {
    background: var(--dash-teal);
}

.chart-container-new {
    flex: 1;
    position: relative;
    min-height: 150px;
}

.main-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.main-chart path {
    transition: stroke-width 0.3s ease;
}

.main-chart path:hover {
    stroke-width: 4;
}

/* Activity Feed */
.activity-feed-new {
    display: flex;
    flex-direction: column;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #F1F5F9;
}

.activity-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dash-text);
    min-width: 80px;
}

.activity-desc {
    font-size: 14px;
    color: var(--dash-text-muted);
    flex: 1;
}

.activity-time {
    font-size: 13px;
    color: var(--dash-text-muted);
    opacity: 0.6;
}

/* AI Assistant Styles */
.ai-assistant-new {
    width: 320px;
    background: var(--dash-lavender);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-container-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-sender {
    font-size: 13px;
    font-weight: 600;
    color: var(--dash-text-muted);
    margin-bottom: 6px;
}

.chat-message p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dash-text);
}

.ai-sender {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot.ai {
    background: var(--dash-teal);
    width: 6px;
    height: 6px;
}

.ai-response-card {
    background: linear-gradient(135deg, #4c3298 0%, #d946ef 100%);
    border-radius: 24px;
    padding: 24px;
    color: white;
    margin-top: 8px;
}

.ai-response-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.ai-actions {
    display: flex;
    gap: 10px;
}

.ai-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-suggestions-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggestion-card {
    background: white;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dash-text);
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.chat-input-new {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.chat-input-new input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: var(--dash-text);
    font-family: var(--font-main);
}

.send-btn-new {
    width: 32px;
    height: 32px;
    background: var(--dash-purple);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Section 3: Client Strip Section */
.client-strip-section {
    padding: 0;
    background: #F9F9F9;
    overflow: hidden;
}

.client-strip {
    text-align: center;
}

.client-strip-heading {
    font-family: var(--font-main);
    font-size: 14px;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.ticker-content {
    display: inline-flex;
    gap: 60px;
    animation: ticker-scroll 30s linear infinite;
    padding-left: 30px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    font-family: var(--font-main);
}

.client-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dash-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Section 4: Gap Section */
.gap-section {
    background-color: #EEE2FB;
    padding: 0;
    position: relative;
    z-index: 20;
}

.gap-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    margin: 0 auto;
}

.gap-tag {
    display: block;
    color: #B8860B;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: var(--font-main);
}

.gap-title {
    color: #000;
    font-family: var(--font-heading);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    max-width: 650px;
}

.gap-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
}

.gap-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    font-family: var(--font-main);
}

.gap-highlight {
    color: #5C2D91 !important;
    font-weight: 700;
    font-size: 20px !important;
}

/* Section 5: Our Products Section */
.our-products-section {
    background-color: #FFFFFF;
    padding: 0;
    position: relative;
    z-index: 25;
}

.our-products-container {
    margin: 0 auto;
    padding: 56px 40px;
}

.our-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    gap: 40px;
}

.our-products-header-left {
    max-width: 650px;
}

.our-products-tag {
    display: block;
    color: #5C2D91;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.our-products-title {
    color: #000;
    font-family: var(--font-heading);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    max-width: 800px;
    margin-bottom: 0;
}

.our-products-subtitle {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    max-width: 500px;
    font-family: var(--font-main);
}

.our-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product Card Base */
.product-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(92, 45, 145, 0.08);
    border-color: rgba(92, 45, 145, 0.25);
}

/* Product Visuals & CSS Art */
.product-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-card:hover .visual-glow {
    transform: scale(1.2);
    opacity: 0.5;
}

/* 1. SentiDocs Visual Styles */
.visual-sentidocs {
    background: radial-gradient(circle at center, #064e3b 0%, #022c22 100%);
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
}

.abstract-docu-new {
    position: relative;
    width: 120px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layered Document Stack */
.docu-sheet-back {
    position: absolute;
    width: 80px;
    height: 110px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transform: translate(-10px, -10px) rotate(-6deg);
    transition: transform 0.4s ease;
}

.docu-sheet-mid {
    position: absolute;
    width: 80px;
    height: 110px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transform: translate(-5px, -5px) rotate(-3deg);
    transition: transform 0.4s ease;
}

.docu-sheet-front {
    position: relative;
    width: 80px;
    height: 110px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.product-card:hover .docu-sheet-front {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

.product-card:hover .docu-sheet-back {
    transform: translate(-15px, -15px) rotate(-10deg);
}

.product-card:hover .docu-sheet-mid {
    transform: translate(-8px, -8px) rotate(-5deg);
}

.docu-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: background-color 0.3s;
}

.product-card:hover .docu-line {
    background: rgba(16, 185, 129, 0.7);
}

.docu-line.short {
    width: 40%;
}

.docu-line.medium {
    width: 70%;
}

.docu-line.long {
    width: 100%;
}

/* Laser Scan Animation */
.scan-beam {
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.5), transparent);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: beam-move 2.5s infinite linear;
}

@keyframes beam-move {
    0% {
        top: -10px;
    }

    100% {
        top: 120px;
    }
}

/* Futuristic HUD Lens with Diagonal Looping Animation */
.docu-hud-lens {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #10b981;
    background: rgba(16, 185, 129, 0.15);
    bottom: 24px;
    right: 12px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: diagonal-lens-scan 5s ease-in-out infinite;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.product-card:hover .docu-hud-lens {
    border-color: #34d399;
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.65);
}

@keyframes diagonal-lens-scan {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50px, -54px) rotate(180deg) scale(1.1);
    }
}

.hud-circle-inner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px dashed rgba(52, 211, 153, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-dot::after {
    content: '';
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

/* 2. SentiCam Visual Styles */
.visual-senticam {
    background: radial-gradient(circle at center, #0d1b2a 0%, #030712 100%);
}

.matrix-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: center;
}

.abstract-cam-v5 {
    position: relative;
    width: 120px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Camera Dome Lens outer shell */
.camera-dome-shell {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.product-card:hover .camera-dome-shell {
    transform: scale(1.05);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.15);
}

/* Glassmorphic Lens Interface */
.lens-interface-glass {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at center, #0f1c2e 20%, #030712 90%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Idle scan line (lazy state) */
.idle-scanner-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4 50%, transparent);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.7);
    z-index: 5;
    animation: idle-sweep 3s infinite ease-in-out;
    pointer-events: none;
}

@keyframes idle-sweep {
    0%, 100% { top: 0%; opacity: 0.3; }
    50% { top: 100%; opacity: 0.9; }
}

/* Target Bounding Frame (Fade-in on Hover) */
.ai-target-corners {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    transition: all 0.4s ease;
    pointer-events: none;
    opacity: 0.2;
    z-index: 1;
}

.ai-target-corners::before, .ai-target-corners::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #06b6d4;
    border-style: solid;
    transition: all 0.4s ease;
}

.ai-target-corners::before { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.ai-target-corners::after { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.product-card:hover .ai-target-corners {
    opacity: 1;
    transform: scale(1.05);
}

.product-card:hover .ai-target-corners::before { top: -6px; left: -6px; border-color: #22d3ee; }
.product-card:hover .ai-target-corners::after { bottom: -6px; right: -6px; border-color: #22d3ee; }

/* Glowing Holographic AI Reticle (Appears & Spins on Hover) */
.hologram-hud-ring {
    position: absolute;
    width: 68px;
    height: 68px;
    border: 2px dashed rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s ease;
}

.product-card:hover .hologram-hud-ring {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
    transform: rotate(180deg);
}

/* Pulsing Alert core (acts when anomaly detected) */
.hologram-hud-core {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover .hologram-hud-core {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

/* Pulse wave emitting from the camera eye on hover */
.pulse-wave {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1.5px solid #ef4444;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.product-card:hover .pulse-wave {
    animation: alert-ping 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes alert-ping {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Floating status node indicators */
.hud-digital-readout {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(3, 7, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 8px;
    color: #94a3b8;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.6;
    transition: all 0.3s;
}

.product-card:hover .hud-digital-readout {
    opacity: 1;
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.hud-status-node {
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 4px #ef4444;
}

/* 3. SentiVoice Visual Styles */
.visual-sentivoice {
    background: linear-gradient(135deg, #051a0e 0%, #0d3c20 100%);
}

.glow-sentivoice {
    background: #22c55e;
}

.abstract-voice {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-waves {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 80px;
    z-index: 2;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #22c55e, #4ade80);
    border-radius: 4px;
    animation: wave-bounce 1.2s ease-in-out infinite alternate;
}

.wave-bar.bar-1 {
    animation-delay: 0.1s;
    height: 35px;
}

.wave-bar.bar-2 {
    animation-delay: 0.4s;
    height: 55px;
}

.wave-bar.bar-3 {
    animation-delay: 0.2s;
    height: 75px;
}

.wave-bar.bar-4 {
    animation-delay: 0.6s;
    height: 45px;
}

.wave-bar.bar-5 {
    animation-delay: 0.3s;
    height: 60px;
}

.wave-bar.bar-6 {
    animation-delay: 0.5s;
    height: 30px;
}

.voice-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.2);
    animation: ring-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

/* Product Content Styling */
.product-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-badge {
    align-self: flex-start;
    padding: 0;
    margin-bottom: 20px;
    color: #000;
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    background: none;
}

.product-tagline {
    color: #864324;
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

.product-description {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
    font-family: var(--font-main);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.tag-item {
    color: #41207B;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-radius: 24px;
    background: #E8D3FF;
    padding: 4px 16px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.explore-sentidocs {
    color: #047857;
}

.explore-senticam {
    color: #475569;
}

.explore-sentivoice {
    color: #15803d;
}

.btn-explore svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore:hover svg {
    transform: translateX(6px);
}

/* Section 6: Numbers Section */
.numbers-section {
    background-color: #F2ECF9;
    padding: 0;
    position: relative;
    z-index: 26;
    overflow: hidden;
}

.numbers-container {
    margin: 0 auto;
    padding: 56px 40px;
    position: relative;
    z-index: 2;
}

.numbers-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.numbers-tag {
    display: inline-block;
    color: #B8860B;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.numbers-title {
    color: #000;
    font-family: var(--font-heading);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.5px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0px 150px;
}

.number-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    height: 250px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(92, 45, 145, 0.03);
}

.number-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(92, 45, 145, 0.08);
    border-color: rgba(92, 45, 145, 0.15);
}

.number-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: -30px;
    top: -30px;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02), 0 4px 15px rgba(0, 0, 0, 0.04);
}

.circle-sentidocs {
    background-color: #E4DBF9;
}

.circle-senticam {
    background-color: #D2F6F5;
}

.circle-sentivoice {
    background-color: #F3B9D5;
}

.number-number {
    font-family: var(--font-main);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
    display: block;
}

.num-purple {
    color: #633BB3;
}

.num-dark {
    color: #111827;
}

.num-pink {
    color: #D8227E;
}

.number-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.number-description {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    font-family: var(--font-main);
}

.number-subtext {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    font-family: var(--font-main);
}

.numbers-footer {
    text-align: center;
    margin-top: 64px;
}

.numbers-disclosure {
    font-size: 13px;
    color: #4B5563;
    font-family: var(--font-main);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section 7: Why Sentiligent Section */
.why-sentiligent-section {
    background-color: #F2ECF9;
    padding: 0;
    position: relative;
    z-index: 27;
    overflow: hidden;
}

.why-sentiligent-container {
    margin: 0 auto;
    padding: 56px 40px;
}

.why-sentiligent-card {
    background-color: #2E1B6B;
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0px 9px 36.5px 12px #6B2FAF63;
    position: relative;
    overflow: hidden;
}

.why-sentiligent-tag {
    display: block;
    color: #E2B759;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.why-sentiligent-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0%;
    margin-bottom: 56px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
}

/* Custom Scrollbar for responsive table to guarantee visibility */
.table-responsive::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgba(226, 183, 89, 0.45); /* Figma-aligned gold accent */
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(226, 183, 89, 0.7);
}

.why-sentiligent-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.why-sentiligent-table th,
.why-sentiligent-table td {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-main);
    vertical-align: middle;
}

.why-sentiligent-table thead th {
    padding-top: 32px;
    padding-bottom: 24px;
}

.why-sentiligent-table tbody tr:last-child td {
    border-bottom: none;
    padding-bottom: 32px;
}

.why-sentiligent-table th.sentiligent-header {
    color: #E2B759;
    font-size: 18px;
    font-weight: 600;
    width: 30%;
}

.why-sentiligent-table th.vendor-header {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 600;
    width: 30%;
}

.why-sentiligent-table td.feature-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
    width: 40%;
}

.why-sentiligent-table td.sentiligent-cell {
    color: #ECC375;
    font-weight: 600;
    font-size: 16px;
}

.why-sentiligent-table td.vendor-cell {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 16px;
}

.cell-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.icon-check-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #E2B759;
    border-radius: 50%;
    color: #241454;
    flex-shrink: 0;
}

.icon-check-wrapper svg {
    width: 12px;
    height: 12px;
}

.icon-cross-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.icon-cross-wrapper svg {
    width: 13px;
    height: 13px;
    color: black;
}

/* Section 8: Process Section */
.process-section {
    background-color: #F3E8FF;
    padding: 0;
    position: relative;
    z-index: 28;
    overflow: hidden;
}

.process-container {
    margin: 0 auto;
    padding: 56px 40px;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.process-header-left {
    max-width: 650px;
}

.process-tag {
    display: block;
    color: #B8860B;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.process-title {
    color: #000;
    font-family: var(--font-heading);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.5px;
}

.process-cta-btn {
    background: linear-gradient(135deg, #2D1457 0%, #C82276 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(45, 20, 87, 0.2);
    white-space: nowrap;
}

.process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 20, 87, 0.35);
}

.process-cta-btn svg {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
    padding-top: 20px;
}

/* Horizontal connecting dashed line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 2px;
    border-top: 2px dashed rgba(45, 20, 87, 0.25);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background-color: #2D1457;
    color: white;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(45, 20, 87, 0.15);
    font-family: var(--font-main);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number-circle {
    transform: scale(1.12);
    background-color: #C82276;
    box-shadow: 0 8px 20px rgba(200, 34, 118, 0.35);
}

.step-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #5C2D91;
}

.step-desc {
    font-family: var(--font-main);
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.step-duration {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: #4B5563;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Section 9: Enterprise Section */
.enterprise-section {
    padding: 0;
    background-color: #F2ECF9;
    color: #0F172A;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 110px;
    align-items: center;
    margin: 0 auto;
}

.enterprise-tag {
    display: inline-block;
    color: var(--enterprise-tag);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.enterprise-title {
    color: #000;
    font-family: var(--font-heading) !important;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 40px;
}

.enterprise-description {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 60px;
    max-width: 480px;
    line-height: 1.6;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    padding: 10px 24px;
    border-radius: 100px;
    background: var(--enterprise-badge-bg);
    border: 1px solid var(--enterprise-badge-border);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--enterprise-badge-text);
    letter-spacing: 0.5px;
}

.enterprise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    padding: 40px;
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
    width: 32px;
    height: 32px;
    background-color: var(--enterprise-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle svg {
    width: 18px;
    height: 18px;
}

.feature-content h3 {
    font-family: var(--font-main);
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 12px;
}

.feature-content p {
    font-family: var(--font-main);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #47433E;
}

/* Section 10: Get Started Section */
.get-started-section {
    padding: var(--section-padding);
    background-color: #F2ECF9;
}

.get-started-card {
    background: linear-gradient(289deg, #00D4C8 -15.09%, #2E1B6B 96.83%);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #CCC;
}

.get-started-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 423px;
    height: 423px;
    background: rgba(46, 27, 107, 0.45);
    border-radius: 50%;
    z-index: 1;
    box-shadow: -3px 13px 47.8px 18px rgba(0, 0, 0, 0.26);
}

.get-started-content {
    position: relative;
    z-index: 2;
}

.get-started-tag {
    display: block;
    color: #E2B759;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.get-started-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 20px;
}

.get-started-description {
    color: var(--Neutral-50);
    font-family: var(--font-main);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    max-width: 700px;
    margin-bottom: 32px;
}

.get-started-buttons {
    display: flex;
    gap: 20px;
}

.btn-demo {
    background: linear-gradient(95deg, #2E1B6B 0.01%, #6B2FAF 51.44%, #C0267B 99.99%);
    color: var(--Neutral-50);
    padding: 16px 24px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(224, 30, 90, 0.4);
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(224, 30, 90, 0.5);
}

.btn-products {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15.1px 3px rgba(0, 0, 0, 0.11);
    padding: 16px 24px;
    color: #FFF;
    font-family: var(--font-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-products:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Section */
.footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    color: white;
    font-family: 'Outfit', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: var(--footer-text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--footer-text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--footer-text-secondary);
    font-size: 0.95rem;
}

.copyright {
    margin: 0;
}

.footer-support a {
    color: var(--footer-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Universal Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave-bounce {
    0% {
        transform: scaleY(0.4);
    }

    100% {
        transform: scaleY(1.3);
    }
}

@keyframes scan-bounce {

    0%,
    100% {
        top: 20px;
        opacity: 0.1;
    }

    50% {
        top: 200px;
        opacity: 0.8;
    }
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Grouped Media Queries */
@media (max-width: 1023px) {

    /* Global Container Adjustments for Mobile/Tablet Portrait */
    section .container,
    footer .container,
    .dashboard-container {
        padding: 40px 20px !important;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 90px;
        padding-bottom: 0px;
        min-height: auto;
        justify-content: flex-start;
    }

    .hero-section .hero-container {
        padding-bottom: 10px !important;
    }

    .client-strip-section .client-strip-container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .hero-title-new {
        font-size: 1.8rem;
        line-height: 2.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle-new {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-badge {
        max-width: 100%;
        padding: 8px 16px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .badge-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .hero-ellipse {
        display: none;
        /* Hide decorative blurs on mobile/tablet to prevent overflow and improve performance */
    }

    .hero-actions-new {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }

    .btn-primary-new,
    .btn-secondary-new {
        justify-content: center;
    }

    /* Header & Navigation */
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(45, 37, 94, 0.08);
        box-shadow: 0 4px 20px rgba(45, 37, 94, 0.02);
        padding: 10px 0;
        background: #FFFFFF !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .nav {
        padding: 0 16px !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 120px 40px 40px 40px;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 600;
    }

    .mobile-demo-li {
        display: block;
        width: 100%;
        margin-top: 16px;
    }

    .mobile-demo-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 320px;
        padding: 16px 24px !important;
        font-size: 16px !important;
        border-radius: 30px !important;
    }

    .nav-cta .btn-demo-header {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 64px;
    }

    /* Dashboard Section */
    .dashboard-container {
        padding: 40px 20px;
    }

    .dashboard-window-outer {
        border-radius: 24px;
        padding: 8px;
    }

    .dashboard-body-new {
        flex-direction: column;
        min-height: auto;
        width: 100%;
        overflow: hidden;
    }

    .sidebar-new {
        width: 100%;
        padding: 24px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        align-items: center;
    }

    .sidebar-nav {
        flex-direction: row;
        gap: 12px;
    }

    .nav-item {
        white-space: nowrap;
        padding: 8px 12px;
    }

    .sidebar-logo {
        padding: 6px 12px;
    }

    .content-new {
        padding: 24px;
    }

    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ai-assistant-new {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 24px;
    }

    .header-title {
        font-size: 24px;
    }

    .stat-value {
        font-size: 32px;
    }

    .url-bar {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 10px;
    }

    .window-controls {
        width: 60px;
    }

    /* Gap Section */
    .gap-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gap-left {
        width: 100%;
    }

    .gap-right {
        padding-top: 0;
        width: 100%;
    }

    .gap-title {
        font-size: 26px;
        line-height: 32px;
    }

    .gap-right p {
        font-size: 16px;
    }

    .gap-highlight {
        font-size: 18px !important;
    }

    /* Products Section */
    .our-products-section {
        padding: 0;
    }

    .our-products-container {
        padding: 56px 24px;
    }

    .our-products-header {
        display: block;
    }

    .our-products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }

    .our-products-title {
        font-size: 24px;
        line-height: 30px;
    }

    .our-products-subtitle {
        font-size: 16px;
    }

    /* Metrics Section */
    .numbers-section {
        padding: 0;
    }

    .numbers-container {
        padding: 56px 24px;
    }

    .numbers-title {
        font-size: 26px;
        line-height: 32px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
        padding: 0;
    }

    .number-card {
        height: auto;
        min-height: 280px;
        padding: 40px 32px;
    }

    .number-number {
        font-size: 64px;
    }

    /* Difference (Why Sentiligent) Section */
    .why-sentiligent-section {
        padding: 0;
    }

    .why-sentiligent-container {
        padding: 56px 24px;
    }

    .why-sentiligent-card {
        padding: 48px 24px;
        border-radius: 30px;
    }

    .why-sentiligent-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 36px;
    }

    .table-responsive {
        overflow-x: auto;
        margin: 0;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .why-sentiligent-table {
        min-width: 700px;
    }

    .why-sentiligent-table th,
    .why-sentiligent-table td {
        padding: 16px;
    }

    .why-sentiligent-table th.sentiligent-header,
    .why-sentiligent-table th.vendor-header {
        font-size: 15px;
    }

    .why-sentiligent-table td.feature-name {
        font-size: 14px;
    }

    .why-sentiligent-table td.sentiligent-cell,
    .why-sentiligent-table td.vendor-cell {
        font-size: 14px;
    }

    /* Process Section */
    .process-section {
        padding: 0;
    }

    .process-container {
        padding: 56px 24px;
    }

    .process-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 24px;
        line-height: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-steps::before {
        display: none;
    }

    .step-card {
        align-items: center;
        text-align: center;
    }

    /* Enterprise Section */
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .enterprise-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .enterprise-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .enterprise-description {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .compliance-badges {
        justify-content: center;
    }

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

    /* Get Started Section */
    .get-started-card {
        padding: 40px 30px;
        text-align: center;
        flex-direction: column;
    }

    .get-started-card::before {
        display: none;
    }

    .get-started-content {
        max-width: 100%;
    }

    .get-started-title {
        font-size: 24px;
        line-height: 30px;
    }

    .get-started-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .get-started-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-demo,
    .btn-products {
        justify-content: center;
    }

    /* Footer Section */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    /* Enterprise Section */
    .enterprise-title {
        font-size: 32px;
    }

    .feature-card {
        padding: 30px;
    }

    /* Footer Section */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* ==========================================
   Resources & Connect Pages Styles
   ========================================== */
.resources-hero, .connect-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 175px 0 0 0;
    background: #FDFBFF;
    text-align: center;
    z-index: 10;
}

.resources-hero .container, .connect-hero .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.resources-grid-section, .connect-form-section {
    background: linear-gradient(180deg, #FDFBFF 0%, #E9EAFB 50%, #FDFBFF 100%);
    padding: 0 0 80px 0;
}

.resources-grid-section .container, .connect-form-section .container {
    padding-top: 0 !important;
}

/* Resources specific styling */
.resources-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #4B5563;
    border: 1px solid #D1D5DB;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #5C2D91;
    color: white;
    border-color: #5C2D91;
    box-shadow: 0 4px 12px rgba(92, 45, 145, 0.2);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(76, 50, 152, 0.05);
    border: 1px solid #F1F5F9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(76, 50, 152, 0.12);
    border-color: #bc8cff;
}

.resource-image {
    height: 220px;
    background: linear-gradient(135deg, #2E1B6B 0%, #6B2FAF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 16px 0 16px;
    border-radius: 16px;
}

.resource-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 12, 16, 0.4));
}

.resource-image-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--Neutral-50);
    opacity: 0.15;
    user-select: none;
    font-weight: 800;
}

.resource-badge {
    display: inline-block;
    width: max-content;
    background: #EAE5F8;
    color: #5C2D91;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.resource-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-meta {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 12px;
    font-weight: 500;
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.resource-desc {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.resource-link {
    color: #5C2D91;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
    align-self: flex-start;
}

.resource-link:hover {
    gap: 12px;
}

/* Connect page specific styling */
.connect-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.connect-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.connect-tag {
    color: #5C2D91;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.connect-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
}

.connect-desc {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #EAE5F8;
    color: #5C2D91;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.contact-method-desc {
    color: #4B5563;
    font-size: 15px;
}

.contact-method-desc a {
    color: #5C2D91;
    text-decoration: none;
    font-weight: 600;
}

.connect-form-card {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(76, 50, 152, 0.08);
    border: 1px solid #F1F5F9;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.form-input {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    padding: 16px;
    color: #111827;
    font-family: var(--font-main);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5C2D91;
    background: white;
    box-shadow: 0 0 0 4px rgba(92, 45, 145, 0.15);
}

.form-input::placeholder {
    color: #9CA3AF;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(95deg, #2E1B6B 0.01%, #6B2FAF 51.44%, #C0267B 99.99%);
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(48, 28, 128, 0.15);
    margin-top: 12px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 28, 128, 0.25);
}

@media (max-width: 992px) {
    .connect-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 1023px) {
    .resources-hero, .connect-hero {
        padding-top: 90px;
    }

    .connect-form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .resources-grid-section, .connect-form-section {
        padding-top: 30px !important;
    }

    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .resource-image {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}