/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1668dc;
    --primary-dark: #0d4ba0;
    --primary-light: #3d8bfd;
    --secondary-color: #7c3aed;
    --secondary-dark: #5b21b6;
    --accent-color: #06b6d4;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-primary: linear-gradient(135deg, #1668dc 0%, #7c3aed 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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.95);
    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-md);
}

.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;
    transform-origin: center center;
}

.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(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.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;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(22, 104, 220, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(22, 104, 220, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.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(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.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 4rem;
    background: white;
}

.coverage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coverage-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.coverage-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.coverage-badges span {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.coverage-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.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: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.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(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-secondary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 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;
    }
}

@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;
    }

    /* 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;
    }
}

