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

:root {
    --primary-color: #0065ff;
    --primary-dark: #0052cc;
    --primary-light: #2684ff;
    --secondary-color: #0065ff;
    --secondary-dark: #0052cc;
    --accent-color: #0065ff;
    --text-primary: #172b4d;
    --text-secondary: #5e6c84;
    --text-light: #8993a4;
    --bg-primary: #ffffff;
    --bg-secondary: #f4f5f7;
    --bg-dark: #091e42;
    --border-color: #dfe1e6;
    --success-color: #00875a;
    --gradient-1: linear-gradient(135deg, #0065ff 0%, #0052cc 100%);
    --gradient-2: linear-gradient(135deg, #0065ff 0%, #2684ff 100%);
    --gradient-3: linear-gradient(135deg, #0065ff 0%, #0052cc 100%);
    --gradient-primary: linear-gradient(135deg, #0065ff 0%, #0052cc 100%);
    --shadow-sm: 0 1px 2px 0 rgba(9, 30, 66, 0.08);
    --shadow-md: 0 4px 8px -2px rgba(9, 30, 66, 0.12);
    --shadow-lg: 0 8px 16px -4px rgba(9, 30, 66, 0.12);
    --shadow-xl: 0 12px 24px -6px rgba(9, 30, 66, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    overflow: visible;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar .logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    object-position: center;
    transform-origin: center center;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-primary);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-logo-item:hover {
    opacity: 1;
}

/* Solutions Showcase */
.solutions-showcase {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 101, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: var(--primary-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 101, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
    border: none;
}

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

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Identity Widget Section */
.identity-widget-section {
    padding: 2rem 0;
    background: var(--bg-secondary);
}

.identity-widget-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.identity-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    width: 300px;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.card-dot:nth-child(1) {
    background: #ff5f57;
}

.card-dot:nth-child(2) {
    background: #ffbd2e;
}

.card-dot:nth-child(3) {
    background: #28ca42;
}

.card-content {
    text-align: center;
}

.identity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.identity-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.identity-status {
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Carousel */
.hero-carousel {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: carouselFloat 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

@keyframes carouselFloat {
    0%, 100% {
        transform: translateY(-8px);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    }
    50% {
        transform: translateY(5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    }
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.carousel-header span:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.carousel-status {
    display: flex;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
    min-height: 150px;
}

.carousel-card {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.carousel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.carousel-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.carousel-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(22, 104, 220, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Coverage */
.coverage {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.coverage-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.coverage-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.coverage-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.coverage-card h3 {
    margin-bottom: 1rem;
}

.coverage-card ul {
    list-style: none;
    color: var(--text-secondary);
    line-height: 1.8;
}

.coverage-card ul li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Solutions Preview */
.solutions-preview {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.solutions-text > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solutions-list {
    list-style: none;
    margin-bottom: 2rem;
}

.solutions-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.solutions-list li svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.solutions-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-diagram {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.diagram-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(1.20);
    transform-origin: center center;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    padding: 0.5rem;
}

.center-label {
    line-height: 1.2;
}

.diagram-source {
    position: absolute;
    width: 90px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    z-index: 3;
}

.source-1 {
    top: 20px;
    left: 30%;
    transform: translateX(-50%);
}

.source-2 {
    top: 20px;
    right: 30%;
    transform: translateX(50%);
}

.diagram-app {
    position: absolute;
    width: 90px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    font-size: 0.8rem;
    z-index: 3;
}

.app-1 {
    top: 30%;
    left: 10%;
    transform: translateY(-50%);
}

.app-2 {
    top: 30%;
    right: 10%;
    transform: translateY(-50%);
}

.app-3 {
    bottom: 30%;
    left: 10%;
    transform: translateY(50%);
}

.app-4 {
    bottom: 30%;
    right: 10%;
    transform: translateY(50%);
}

.diagram-user {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--border-color);
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.user-1 {
    bottom: 10px;
    left: 25%;
    transform: translateX(-50%);
}

.user-2 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.user-3 {
    bottom: 10px;
    right: 25%;
    transform: translateX(50%);
}

.diagram-line {
    position: absolute;
    background: var(--primary-color);
    height: 2px;
    opacity: 0.4;
    z-index: 1;
}

.line-source-1 {
    top: 70px;
    left: 30%;
    width: 2px;
    height: calc(50% - 120px);
    transform: translateX(-50%);
}

.line-source-2 {
    top: 70px;
    right: 30%;
    width: 2px;
    height: calc(50% - 120px);
    transform: translateX(50%);
}

.line-app-1 {
    top: 30%;
    left: 10%;
    width: calc(50% - 100px);
    height: 2px;
    transform: translateY(-50%) translateX(90px);
}

.line-app-2 {
    top: 30%;
    right: 10%;
    width: calc(50% - 100px);
    height: 2px;
    transform: translateY(-50%) translateX(-90px);
}

.line-app-3 {
    bottom: 30%;
    left: 10%;
    width: calc(50% - 100px);
    height: 2px;
    transform: translateY(50%) translateX(90px);
}

.line-app-4 {
    bottom: 30%;
    right: 10%;
    width: calc(50% - 100px);
    height: 2px;
    transform: translateY(50%) translateX(-90px);
}

.line-user-1 {
    bottom: 60px;
    left: 25%;
    width: 2px;
    height: calc(50% - 120px);
    transform: translateX(-50%);
}

.line-user-2 {
    bottom: 60px;
    left: 50%;
    width: 2px;
    height: calc(50% - 120px);
    transform: translateX(-50%);
}

.line-user-3 {
    bottom: 60px;
    right: 25%;
    width: 2px;
    height: calc(50% - 120px);
    transform: translateX(50%);
}

/* Lifecycle */
.lifecycle {
    padding: 6rem 0;
    background: white;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.lifecycle-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.lifecycle-step {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.08);
    position: absolute;
    top: -20px;
    right: 10px;
}

.lifecycle-card h3 {
    margin-bottom: 0.75rem;
}

.lifecycle-meta {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Playbooks */
.playbooks {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.playbooks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.playbooks-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.playbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.playbook-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.playbook-card h3 {
    margin-bottom: 0.5rem;
}

.playbook-card ul {
    list-style: none;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.playbook-card ul li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.playbook-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-meta span {
    display: block;
    font-weight: 600;
}

.testimonial-meta small {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-option {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
}

.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: white;
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--bg-secondary);
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
}

.contact-info-panel {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    height: fit-content;
}

.contact-info-panel h3 {
    margin-bottom: 1rem;
}

.contact-card {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .solutions-content {
        grid-template-columns: 1fr;
    }

    .solutions-visual {
        height: 300px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .cta-options {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar .logo img {
        height: 100px;
    }

    .logo {
        height: 50px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .trust-logos {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .solution-card {
        padding: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .cta-option {
        padding: 2rem;
    }

    /* Privacy Consent Banner */
    .privacy-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        z-index: 10000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .privacy-banner.show {
        transform: translateY(0);
    }

    .privacy-banner-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .privacy-banner-text {
        flex: 1;
        min-width: 300px;
    }

    .privacy-banner-text p {
        margin: 0;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .privacy-banner-text a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .privacy-banner-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .privacy-banner-btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        font-size: 0.95rem;
    }

    .privacy-banner-btn.accept {
        background: var(--primary-color);
        color: white;
    }

    .privacy-banner-btn.accept:hover {
        background: var(--primary-hover);
    }

    .privacy-banner-btn.decline {
        background: transparent;
        color: var(--text-secondary);
        border: 1px solid var(--border-color);
    }

    .privacy-banner-btn.decline:hover {
        background: var(--bg-secondary);
    }

    @media (max-width: 768px) {
        .privacy-banner-content {
            flex-direction: column;
            align-items: stretch;
        }

        .privacy-banner-buttons {
            width: 100%;
        }

        .privacy-banner-btn {
            flex: 1;
        }
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

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

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

    .playbooks-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animated connecting dots background - Global */
.animated-dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.02) 0%, rgba(0, 82, 204, 0.03) 50%, rgba(38, 132, 255, 0.02) 100%);
}

@media (max-width: 968px) {
    #dotsCanvas {
        opacity: 0.6;
    }
}

